| $#! | |
| __construct | |
| A | |
| addClassName, DLSupport | |
| AddCustomField, DLCustomField | |
| addErrorLog, DLSupport | |
| addEvents, DLSupportJS.Tab | |
| AddField, DLForm | |
| AddPage, DLCleanAdmin | |
| addParameter, DLSupport.Form | |
| addTab, DLSupportJS.Tab | |
| AddTab, DLTab | |
| AESDecryptCtr, DLEncryption_Three | |
| AESEncryptCtr, DLEncryption_Three | |
| AlertError, DLSupportJS. | |
| AutoExecute, DLSupport | |
| B | |
| BuildGroupByClause, DLDatabase | |
| BuildJoinOnClause, DLDatabase | |
| BuildOrderByClause, DLDatabase | |
| BuildSelectClause, DLDatabase | |
| BuildTableClause, DLDatabase | |
| BuildWhereClause, DLDatabase | |
| C | |
| Captcha, DLSupport | |
| CaptchaRemove, DLSupport | |
| CaptchaValidate, DLSupport | |
| checboxSelectAllToggle, DLSupport | |
| childElements, DLSupport | |
| Cipher, DLEncryption_Three | |
| CleanExit, DLSupport | |
| cloneArray, DLSupport | |
| combineArray, DLSupport | |
| CompareVersions, DLSupport | |
| ConvertBytes, DLSupport | |
| CreateParameters, DLSupport | |
| CreateTable, DLDatabase | |
| curry, DLSupport | |
| D | |
| Decrypt | |
| defaultValues, DLSupport | |
| delayFunction, DLSupport | |
| DeleteData, DLDatabase | |
| disableSubmitFields, DLSupport.Form | |
| DropTable, DLDatabase | |
| E | |
| enableSubmitFields, DLSupport.Form | |
| Encrypt | |
| Execute, DLDatabase | |
| ExecuteCommand, DLSupport | |
| F | |
| Factory, DLCustomField | |
| fieldCount, DLSupport.Form |
Create a new clean admin site.
public function __construct()
Create a new instance of DLDatabase.
private function __construct( $host, $username, $password, $database )
Create a new instance of DLEncryption.
protected function __construct()
Create a new instance of DLForm.
public function __construct()
Create a new instance of DLSupport.
public function __construct()
Create a new instance of DLTab.
public function __construct( $tab_wrapper, $content_wrapper )
Add the given class name ot the given DOM element.
addClassName: function( obj, class_name )
Add a custom field into the database.
public function AddCustomField( $name, $type, $required, $id = NULL, $options = array() )
Add a message to the error log.
addErrorLog: function( method, parameters, message )
Add events to the given tab.
addEvents: function( tab )
Add a form field.
public function AddField( $name, $type, $attributes = array(), $options = array() )
Add a new page to the clean admin site.
public function AddPage( $url, $title )
Add the given element into the given parameters object based on some pre-set rules.
addParameter: function( parameters, element, is_array )
Add in a new tab with the given ID.
addTab: function( id, name, data )
Add a new tab to the list of tabs.
public function AddTab( $id, $name, $data, $options = array() )
Decrypt a text encrypted by AES in counter mode of operation.
private function AESDecryptCtr( $ciphertext, $password, $nBits )
Encrypt a text using AES encryption in Counter mode of operation ~ see http://csrc.nist.gov/publications/nistpubs/800-38a/sp800-38a.pdf
private function AESEncryptCtr( $plaintext, $password, $nBits )
Alert an error message.
AlertError: function( type )
Create the necessary SQL query and execute the command.
public static function AutoExecute( $table, $parameters, $type, $where = '' )
Build the GROUP BY clause.
public static function BuildGroupByClause( $data )
Build the JOIN clause.
public static function BuildJoinOnClause( $data, $join = 'AND' )
Build the ORDER BY clause from an array.
public static function BuildOrderByClause( $data )
Build the SELECT clause from an array.
public static function BuildSelectClause( $data )
Build the table clause.
public static function BuildTableClause( $tables )
Build the WHERE clause from an array.
public static function BuildWhereClause( $data, $join = 'AND' )
Generate a new captcha image.
public static function Captcha( $hours = 2 )
Remove images created for captcha purposes that is older than the given number of hours.
public static function CaptchaRemove( $hours )
See if the user has entered the correct value for the captcha generated by the method Captcha.
public static function CaptchaValidate( $hours = 2 )
Retrieves an array of all direct child DOM elements of the given element.
childElements: function( parent )
Encrypt ‘input’ with Rijndael algorithm.
private function Cipher( $input, $w )
Clear all the currently opened output buffer then terminate execution with the given message.
public static function CleanExit( $message )
Create a copy of the given array.
cloneArray: function( data )
Create an associative array (object) by using the first given array as the keys and the second given array as the value.
combineArray: function( keys, values )
See if the installed version of the given module is less than the given version.
public static function CompareVersions( $module, $version, & $validate_failed )
Convert the given bytes to the specified type.
public static function ConvertBytes( $bytes, $type )
Create the appropriate parameters array to be send to the function call_user_func_array.
public static function CreateParameters( $structures, $data )
Create a new table in the database.
public function CreateTable( $table, $columns, $options = array() )
Currify the given function.
curry: function( func, scope )
Decrypt the given data using the given key.
abstract public function Decrypt( $key, $data )
Decrypt the given data using the given key.
public function Decrypt( $key, $data )
Decrypt the given data using the given key.
public function Decrypt( $key, $data )
Decrypt the given data using the given key.
public function Decrypt( $key, $data )
Decrypt the given data using the given key.
public static function Decrypt( $key, $data )
Using the given base values object, copy values from the source object if they have the same property name.
defaultValues: function( source, base )
Delay the execution of the given function by the given number of seconds.
delayFunction: function( func, delay )
Delete data from the database.
public function DeleteData( $table, $where = '', $options = array() )
Disable all of the submit fields of the given form.
disableSubmitFields: function( form )
Drop the given table from the database.
public function DropTable( $table )
Enable all of the submit fields for the given form.
enableSubmitFields: function( form )
Encrypt the given data using the given key.
abstract public function Encrypt( $key, $data )
Encrypt the given data using the given key.
public function Encrypt( $key, $data )
Encrypt the given data using the given key.
public function Encrypt( $key, $data )
Encrypt the given data using the given key.
public function Encrypt( $key, $data )
Encrypt the given data using the given key.
public static function Encrypt( $key, $data, $algorithm = FALSE )
Execute all of the currently stored SQLs.
public function Execute()
Execute the given list of commands.
public static function ExecuteCommand( $dir, $commands )
Get an instance of a sub class of this class.
public static function Factory( $subclass )
Retrieve an object with its property names being all the named fields of the given form and its value being how many fields have that name.
fieldCount: function( form )