Full index

Package indexes


a b c d e f g h i l m n o p q r s t u v w _
a
top
$allowUserOrderBy
Whether to allow the user to specify by which column the records should be ordered.
$app
RSDTable::$app in RSDTable.php
An instance of the generated Application Child Class
$auth
RSDApplication::$auth in RSDApplication.php
An instance of PEAR::Auth.
$authors
RSDEngineDBTable::$authors in RSDEngineDBTable.php
The authors, each stored as one array element. Gets set inside the constructor method.
$authors
RSDEngineDB::$authors in RSDEngineDB.php
The authors, each stored as one array element. Gets set inside the constructor method.
addElement
RSArrayUtil::addElement() in RSArrayUtil.php
Returns the array passed as first argument with the element passed as second argument added.
addElements
RSArrayUtil::addElements() in RSArrayUtil.php
Returns the array passed as first argument with the elements contained in the array passed as second argument added.
addLiveUserArea
RSDLiveUserApplication::addLiveUserArea() in RSDLiveUserApplication.php
Adds a LiveUser Area and Area Admins.
addLiveUserAreaAdmin
Adds an LiveUser area admin.
addLiveUserGroup
RSDLiveUserApplication::addLiveUserGroup() in RSDLiveUserApplication.php
Adds a LiveUser group and users to that group.
addLiveUserRight
RSDLiveUserApplication::addLiveUserRight() in RSDLiveUserApplication.php
Adds a LiveUser Right including users and groups that have this right.
addLiveUserUser
RSDLiveUserApplication::addLiveUserUser() in RSDLiveUserApplication.php
Adds a new user in the auth and the perm container.
addLiveUserUserToGroup
addMethod
RSDEngineDBTable::addMethod() in RSDEngineDBTable.php
Adds an instance of RSDEngineMethod to $this->methods.
addTable
RSDApplication::addTable() in RSDApplication.php
This method adds the table object passed as argument to the array $this->_tables.
allTrue
RSArrayUtil::allTrue() in RSArrayUtil.php
Returns true if all elements of the array passed as argument evaluate true.
Auth_Container_RSDB
An extended container for PEAR::Auth based on Auth_Container_DB.
b
top
$body
RSDEngineMethod::$body in RSDEngineDBTable.php
bytesToKiloBytes
Returns the first argument divided by 1024 with a precision specified by the second argument. If the second argument is not present the default of 1 is assumed.
c
top
$className
RSDEngineClass::$className in RSDEngineClass.php
The name of the class to generate. Gets optionally set inside the constructor method.
$code
RSDEngineClass::$code in RSDEngineClass.php
The code of the class to generate. Gets optionally set inside the constructor method.
$code
RSDEngineFile::$code in RSDEngineFile.php
The code of the file to create. Gets set inside the constructor method.
$code
RSDEngineFunction::$code in RSDEngineFunction.php
The body of the function to generate. Gets optionally set inside the constructor method.
$columnName
$columnName
RSDEngineLiveUserRight::$columnName in RSDEngineDBTable.php
The name of the column that stores the rightId. This property is only used if $this->type is 'column' or 'table.column'.
$columnName
$columnName
$columnPrefix
RSDEngineDBTable::$columnPrefix in RSDEngineDBTable.php
The prefix all columns of this table. Often f_. Providing a column prefix makes the generated code more readable because the prefix can be remove where appropriate. Set in the construtor method.
$columnPrefix
RSDEngineColumn::$columnPrefix in RSDEngineDBTable.php
The prefix of this column name. Often f_. Providing a column prefix makes the generated code more readable because the prefix can be remove where appropriate.
$columnPrefix
RSDEngineDB::$columnPrefix in RSDEngineDB.php
The column prefix used for all columns in $this->sql. Often f_. Providing a column prefix makes the generated code more readable because the prefix can be remove where appropriate. Set in the construtor method.
$columns
RSDEngineDBTable::$columns in RSDEngineDBTable.php
An array that holds all RSDEngineColumn objects for this table. New columns are added by calling the method _addColumn.
$condition
RSDEngineLiveUserRight::$condition in RSDEngineDBTable.php
The PHP code to execute to get a boolean value that indicates if the user is allowed to perform this operation or not.
$condition
$condition
$condition
$config
RSDEngineFunction::$config in RSDEngineFunction.php
An associative array containing all configuration options. Gets set inside the constructor method.
$config
RSDEngine::$config in RSDEngine.php
An associative array containing the configuration information. Each entry is represented by a key-value pair. The key is the name of the configuration option while the value is its value (!).
$config
RSDEngineFile::$config in RSDEngineFile.php
An associative array containing all configuration options. Gets set inside the constructor method.
$config
RSDEngineClass::$config in RSDEngineClass.php
An associative array containing all configuration options. Gets set inside the constructor method.
$config
RSDEngineDB::$config in RSDEngineDB.php
An associative array containing all configuration options. Gets set inside the constructor method.
$config
EVSVersion::$config in EVSVersion.php
Stores the configuration information from config.ini, README, AUTHORS, RELEASE, INSTALL, FAQ and ddl.sql.
$contents
RSDEngineDBTable::$contents in RSDEngineDBTable.php
The SQL DDL for this table. Gets set inside the construtor method.
$copyright
RSDEngineDB::$copyright in RSDEngineDB.php
The copyright information. This string must not contain newlines. Gets set inside the constructor method.
$copyright
RSDEngineDBTable::$copyright in RSDEngineDBTable.php
The copyright information. This string must not contain newlines. Gets set inside the constructor method.
callLiveUserAuthAdminMethod
Calls a method of the LiveUser auth admin class with the specified arguments.
callLiveUserPermAdminMethod
Calls a method of the LiveUser perm admin class with the specified arguments.
canInsert
RSDTable::canInsert() in RSDTable.php
Returns whether the currently logged in user has the permission to perform an insert operation.
catch
RSErrorManager::catch() in RSErrorManager.php
Saves the error passed as argument on the error stack.
catch
RSDEngineErrorManager::catch() in RSDEngineErrorManager.php
Hands every error to onFatalError.
checkUniqueConstraints
Must be overwritten. Should return true if no unique constraints would be violated by using the array of assignments passed as argument for a INSERT or a UPDATE operation. Otherwise false should be returned.
createProject.php
createProject.php in createProject.php
columnExists
RSDEngineDBTable::columnExists() in RSDEngineDBTable.php
Returns true if a column with such a name exists, otherwise false is returned.
compare
RSArrayComparator::compare() in RSArrayUtil.php
Returns 0 if both arrays contain the same elements.
compare
Returns 0 if the two arguments are equal (===), otherwise -1.
compare
Returns 0 if both objects implement the method toString and the return values of both methods is equal (==). Otherwise -1 is returned.
compare
RSComparator::compare() in RSArrayUtil.php
Returns 0 if objects passed as first and second argument are equal. They have to implement the method hashCode.
copyDirectory
Copies a directory including all subdirectories and files.
copySkel
RSDEngine::copySkel() in RSDEngine.php
count
RSDTable::count() in RSDTable.php
Returns an integer representing the number of records that matched the conditions passed as first argument.
countElement
RSArrayUtil::countElement() in RSArrayUtil.php
Returns the number of occurrences of a value in an array.
countErrors
RSErrorManager::countErrors() in RSErrorManager.php
Returns the number of occurred errors that match the conditions passed as agrument.
countErrorsByProperty
Returns the number of occured errors that were related to the property passed as argument.
countLiveUserAreaAdminsByAreaId
Returns the number of users that are admin of a certain area.
countLiveUserGroupsByRightId
Returns the number of users that have a certain right.
countLiveUserUsersByGroupId
countLiveUserUsersByRightId
Returns the number of users that have a certain right.
createKeyMethods
RSDEngineDBTable::createKeyMethods() in RSDEngineDBTable.php
Creates all methods that depend an a column that is a primary or a foreign key.
createProject
Creates a new project and returns a new EVSProject.
createSelectIncludingMethod
Creates a selectIncluding* method.
createVersion
EVSProject::createVersion() in EVSProject.php
Create a directory for the new version and returns a new EVSVersion for it.
creditCard
RSValidation::creditCard() in RSValidation.php
Returns true if the passed argument is valid credit card number.
d
top
$db
RSDApplication::$db in RSDApplication.php
An instance of PEAR::DB
$db
RSDTable::$db in RSDTable.php
An instance of PEAR::DB
$defaultInsertValue
RSDEngineColumn::$defaultInsertValue in RSDEngineDBTable.php
If non-empty this value is used in the generated insert method. Is set in the construtor method.
$defaults
EVS::$defaults in EVS.php
An associative array holding the default values for new projects.
$defaultUpdateValue
RSDEngineColumn::$defaultUpdateValue in RSDEngineDBTable.php
If non-empty this value is used in the generated update method. Is set in the construtor method.
$definition
RSDEngineLiveUserRight::$definition in RSDEngineDBTable.php
The definition of this LiveUser right as table option.
$definition
RSDEngineColumn::$definition in RSDEngineDBTable.php
The sql definition of this column. Gets set inside the constructor.
$dir
RSDEngine::$dir in RSDEngine.php
The directory to which the geraration output should be saved. Gets set inside the constructor method.
$dir
RSDEngineFile::$dir in RSDEngineFile.php
The directory to which to write the file.
$doNotInsert
RSDEngineColumn::$doNotInsert in RSDEngineDBTable.php
Whether no input filed should be generated for this column in the create template. Is set in the construtor method.
$doNotSelect
RSDEngineColumn::$doNotSelect in RSDEngineDBTable.php
Whether this columns should not be selected (displayed via a template). Is set in the construtor method.
$doNotUpdate
RSDEngineColumn::$doNotUpdate in RSDEngineDBTable.php
Whether no input filed should be generated for this column in the update template. Is set in the construtor method.
downloadProject.php
downloadProject.php in downloadProject.php
downloadVersion.php
downloadVersion.php in downloadVersion.php
delete
RSDTable::delete() in RSDTable.php
Deletes records from this table.
e
top
$editLiveUserAreaOptions
If this property contains any elements the LiveUser area stored in this column by ID is made editable through a generated template and controller.
$editLiveUserGroupOptions
If this property contains any elements the LiveUser group stored in this column by ID is made editable through a generated template and controller.
$editLiveUserRightOptions
If this property contains any elements the LiveUser right stored in this column by ID is made editable through a generated template and controller.
$errorManager
RSDApplication::$errorManager in RSDApplication.php
An instance of RSErrorManager (or a child class).
$evs
EVSVersion::$evs in EVSVersion.php
An instance of EVS. Gets set inside the costructor method.
$evs
EVSProject::$evs in EVSProject.php
An instance of EVS. Gets set inside the costructor method.
EVSProject.php
EVSProject.php in EVSProject.php
EVSVersion.php
EVSVersion.php in EVSVersion.php
EVS.php
EVS.php in EVS.php
endsWith
RSValidation::endsWith() in RSValidation.php
Returns true if the string passed as first argument ends with the string passed as second argument. Otherwise false is returned.
errorsOccurred
RSErrorManager::errorsOccurred() in RSErrorManager.php
Returns true if errors occurred that match the conditions passed as argument.
errorsOccurredOnProperty
Returns true if any errors occured on the property $property.
EVS
EVS::EVS() in EVS.php
Constructor method.
EVS
EVS in EVS.php
Implements the creation and management of different EVSProjects.
EVSProject
EVSProject::EVSProject() in EVSProject.php
Construtor method.
EVSProject
EVSProject in EVSProject.php
Implements the management of different EVSVersions.
EVSVersion
EVSVersion in EVSVersion.php
Implements the possibility of updating a version and creating releases from it.
EVSVersion
EVSVersion::EVSVersion() in EVSVersion.php
Constructor method that sets most of the properties.
EVS_NO_VERSIONING
To be passed to some methods of classes of the EVS project if you do not wish versioning to be applied.
exist
RSDTable::exist() in RSDTable.php
Whether records that matched the conditions passed as first argument exist.
f
top
$filename
RSDEngineFile::$filename in RSDEngineFile.php
The name of the file to create. Gets set inside the constructor method.
$footer
RSDEngineFileOption::$footer in RSDEngineDBTable.php
Whether to include a footer file.
$foreignKeyTarget
RSDEngineColumn::$foreignKeyTarget in RSDEngineDBTable.php
Where this column that is defined as a foreign key references to. If this column is not a foreign key this property is ignored.
$from
RSDEngineRelation::$from in RSDEngineDBTable.php
$fromColumn
RSDEngineRelation::$fromColumn in RSDEngineDBTable.php
$fromTable
RSDEngineRelation::$fromTable in RSDEngineDBTable.php
$functionName
RSDEngineFunction::$functionName in RSDEngineFunction.php
The name of the function to generate. Gets optionally set inside the constructor method.
factory
factory
factory
fetchData
Get user information from database. RSDB appends ' AND $activatedcol=1' to the query.
g
top
generate
RSDEngine::generate() in RSDEngine.php
Triggers the generation.
generateActivateGroupMethod
generateActivateGroupMethodName
generateAddAdminToAreaMethod
generateAddAdminToAreaMethodName
generateAddUserToGroupMethod
generateAddUserToGroupMethodName
generateCanActivateGroupMethodName
generateCanAddAdminToAreaMethodName
generateCanAddUserToGroupMethodName
generateCanDeactivateGroupMethodName
generateCanGrantRightToGroupMethodName
generateCanGrantRightToUserMethodName
generateCanRemoveAdminFromAreaMethodName
generateCanRemoveUserFromGroupMethodName
generateCanRevokeRightFromGroupMethodName
generateCanRevokeRightFromUserMethodName
generateCanUpdateAreaNameAndCommentMethodName
generateCanUpdateGroupNameAndCommentMethodName
generateCanUpdateLiveUserAreaMethods
generateCanUpdateLiveUserGroupMethods
generateCanUpdateLiveUserRightMethods
generateDeactivateGroupMethod
generateDeactivateGroupMethodName
generateGetNextMethod
Generates and Returns the getNext* method for this column.
generateGetNextMethodName
Returns the name of the getNext* method for this column.
generateGetStoredMethod
generateGetStoredMethodName
Returns the name of the getStored* method for this column.
generateGrantRightToGroupMethodName
generateGrantRightToUserMethodName
generateIsValidMethod
Generates and Returns the isValid* method for this column.
generateIsValidMethodName
Returns the name of the isValid* method for this column.
generateRemoveAdminFromAreaMethod
generateRemoveAdminFromAreaMethodName
generateRemoveStoredMethod
generateRemoveStoredMethodName
Returns the name of the removeStored* method for this column.
generateRemoveUserFromGroupMethod
generateRemoveUserFromGroupMethodName
generateRevokeRightFromGroupMethodName
generateRevokeRightFromUserMethodName
generateStoreUploadedMethod
generateStoreUploadedMethodName
Returns the name of the storeUploaded* method for this column.
generateUpdateAreaNameAndCommentMethod
generateUpdateAreaNameAndCommentMethodName
generateUpdateGroupNameAndCommentMethod
generateUpdateGroupNameAndCommentMethodName
generateUpdateLiveUserRightMethods
Generates the methods for granting a right to/revoking it from a user/group.
generateWhereClause
Returns a WHERE clause generated from the array passed as argument.
get
RSDTable::get() in RSDTable.php
Returns an associative Array with all records from the specified select matching the conditions passed as first arguement.
getAll
RSDTable::getAll() in RSDTable.php
Fetch all the rows returned from a query.
getAllCombinations
Returns all possible combinations of the elements of an array.
getAuthUserId
RSDLiveUserApplication::getAuthUserId() in RSDLiveUserApplication.php
getBaseClassName
RSDEngineSmartyClass::getBaseClassName() in RSDEngineSmartyClass.php
getChangelog
EVSVersion::getChangelog() in EVSVersion.php
Returns a string containing the ChangeLog for this version.
getChildClassCode
Returns the code for the child class.
getChildClassInstanceName
Returns a reasonalbe name for an instance created from the child class.
getChildClassName
RSDEngineDBApplicationBaseClass::getChildClassName() in RSDEngineDBApplicationBaseClass.php
Returns the child class name.
getChildClassName
Returns the name of generated child class.
getClasses
RSDEngineDB::getClasses() in RSDEngineDB.php
Generates and returns the base and the child class for each table defined in $this->sql.
getClassName
RSDEngineErrorManagerClass::getClassName() in RSDEngineErrorManagerClass.php
Returns the class name.
getClassName
RSDEngineSmartyBaseClass::getClassName() in RSDEngineSmartyBaseClass.php
Returns the class name.
getClassName
RSDEngineDBApplicationBaseClass::getClassName() in RSDEngineDBApplicationBaseClass.php
Returns the class name.
getClassName
RSDEngineDBTable::getClassName() in RSDEngineDBTable.php
Returns the name of generated class.
getClassName
RSDEngineSmartyClass::getClassName() in RSDEngineSmartyClass.php
Returns the class name.
getClassName
RSDEngineClass::getClassName() in RSDEngineClass.php
Returns the class name.
getClassName
RSDEngineDBApplicationClass::getClassName() in RSDEngineDBApplicationClass.php
Returns the class name.
getCode
RSDEngineDBApplicationConfigFile::getCode() in RSDEngineDBApplicationConfigFile.php
Returns the code for the configuratin file.
getCode
RSDEngineDBApplicationIndexFile::getCode() in RSDEngineDBApplicationIndexFile.php
Returns the code for the file index.php.
getCode
RSDEngineDBControllerFileGet::getCode() in RSDEngineDBControllerFileGet.php
Returns the code for the controller file for selecting records from a table.
getCode
RSDEngineDBApplicationClass::getCode() in RSDEngineDBApplicationClass.php
Returns the code for this class.
getCode
RSDEngineDBTemplateFileDelete::getCode() in RSDEngineDBTemplateFileDelete.php
Returns the code for the template file for deleting records from a table.
getCode
RSDEngineDBTable::getCode() in RSDEngineDBTable.php
Returns the code for the base class.
getCode
RSDEngineDBApplicationInitFile::getCode() in RSDEngineDBApplicationInitFile.php
Returns the code for the configuratin file of the application (for a database backended application).
getCode
RSDEngineDBApplicationPublicInitFile::getCode() in RSDEngineDBApplicationPublicInitFile.php
Returns the code of the public initialization file.
getCode
RSDEngineDBTemplateFileUpdateArea::getCode() in RSDEngineDBTemplateFileUpdateArea.php
Returns the code for the template file for updating a LiveUser area.
getCode
RSDEngineDBApplicationPrivateInitFile::getCode() in RSDEngineDBApplicationPrivateInitFile.php
Returns the code of the private initialization file of the application.
getCode
RSDEngineDBTemplateFileUpdate::getCode() in RSDEngineDBTemplateFileUpdate.php
Returns the code for the template file for updating records in a table.
getCode
RSDEngineDBApplicationBaseClass::getCode() in RSDEngineDBApplicationBaseClass.php
Returns the code for this class.
getCode
RSDEngineTemplateFileHeader::getCode() in RSDEngineTemplateFileHeader.php
Returns the code for the header template file.
getCode
RSDEngineControllerFileFooter::getCode() in RSDEngineControllerFileFooter.php
Returns the code for the file that is included by the template file footer.tpl (created by RSDEngineTemplateFileFooter).
getCode
RSDEngineClass::getCode() in RSDEngineClass.php
Returns the code for this class.
getCode
RSDEngineTemplateFilePermissionDenied::getCode() in RSDEngineTemplateFilePermissionDenied.php
Returns the code for the template file for informig the user about a denied permission.
getCode
RSDEngineDBTemplateFileSearch::getCode() in RSDEngineDBTemplateFileSearch.php
Returns the code for the template file for searching records in a table.
getCode
RSDEngineControllerFileHeader::getCode() in RSDEngineControllerFileHeader.php
Returns the code for the file that is included by the template file header.tpl (created by RSDEngineTemplateFileHeader).
getCode
RSDEngineDBTemplateFileSearchRecord::getCode() in RSDEngineDBTemplateFileSearchRecord.php
Returns the code for smarty template file to be included by the get-template to display the records.
getCode
RSDEngineDBControllerFileGetOne::getCode() in RSDEngineDBControllerFileGetOne.php
Returns the code for the controller file for selecting one record from a table.
getCode
RSDEngineDBControllerFileSearch::getCode() in RSDEngineDBControllerFileSearch.php
Returns the code for the controller file for searching records in a table.
getCode
RSDEngineDBTemplateFileGetRecord::getCode() in RSDEngineDBTemplateFileGetRecord.php
Returns the code for smarty template file to be included by the get-template to display the records.
getCode
RSDEngineTemplateFilePaging::getCode() in RSDEngineTemplateFilePaging.php
Returns the code for the template file for the paging feature.
getCode
RSDEngineDBTemplateFileGetOne::getCode() in RSDEngineDBTemplateFileGetOne.php
Returns the code for the template file for selecting a single record from a table.
getCode
RSDEngineDBApplicationLogoutFile::getCode() in RSDEngineDBApplicationLogoutFile.php
Returns the code for the file logut.php.
getCode
RSDEngineDBControllerFileCreate::getCode() in RSDEngineDBControllerFileCreate.php
Returns the code for the controller file for inserting records into a table.
getCode
RSDEngineFunction::getCode() in RSDEngineFunction.php
Returns the code for this function.
getCode
RSDEngineDBControllerFileUpdateGroup::getCode() in RSDEngineDBControllerFileUpdateGroup.php
Returns the code for the controller file for updating a LiveUser group.
getCode
RSDEngineMethod::getCode() in RSDEngineDBTable.php
Returns the code of this method.
getCode
RSDEngineErrorManagerClass::getCode() in RSDEngineErrorManagerClass.php
Returns the code for this class.
getCode
RSDEngineDBTemplateFileCreate::getCode() in RSDEngineDBTemplateFileCreate.php
Returns the code for the template file for inserting records into a table.
getCode
RSDEngineDBControllerFileUpdateArea::getCode() in RSDEngineDBControllerFileUpdateArea.php
Returns the code for the controller file for updating a LiveUser area.
getCode
RSDEngineTemplateFileFatalError::getCode() in RSDEngineTemplateFileFatalError.php
Returns the code for the template file for viewing an occurred error.
getCode
RSDEngineSmartyClass::getCode() in RSDEngineSmartyClass.php
Returns the code for this class.
getCode
RSDEngineDBControllerFileUpdate::getCode() in RSDEngineDBControllerFileUpdate.php
Returns the code for the controller file for inserting records into a table.
getCode
RSDEngineSmartyBaseClass::getCode() in RSDEngineSmartyBaseClass.php
Returns the code for this class.
getCode
RSDEngineDBControllerFileGetStored::getCode() in RSDEngineDBControllerFileGetStored.php
Returns the code for the controller file for viewing the contents of the one column of a singel record of a table.
getCode
RSDEngineTemplateFileFooter::getCode() in RSDEngineTemplateFileFooter.php
Returns the code for the footer template file.
getCode
RSDEngineFile::getCode() in RSDEngineFile.php
Returns the code for this file.
getCode
RSDEngineDBTemplateFileGet::getCode() in RSDEngineDBTemplateFileGet.php
Returns the code for the template file for selecting all records from a table.
getCode
RSDEngineDBControllerFileDelete::getCode() in RSDEngineDBControllerFileDelete.php
Returns the code for the controller file for deleting records from a table.
getCode
RSDEngineDBControllerFileUpdateRight::getCode() in RSDEngineDBControllerFileUpdateRight.php
Returns the code for the controller file for updating a LiveUser right.
getCode
RSDEngineDBTemplateFileUpdateGroup::getCode() in RSDEngineDBTemplateFileUpdateGroup.php
Returns the code for the template file for updating a LiveUser group.
getCode
RSDEngineDBTemplateFileUpdateRight::getCode() in RSDEngineDBTemplateFileUpdateRight.php
Returns the code for the template file for updating a LiveUser right.
getColumn
RSDEngineDBTable::getColumn() in RSDEngineDBTable.php
Returns the column named $columnName or an instance of RSError on failure.
getColumnNameForPartialMethodName
Returns the column name suitable for including it in a method name.
getColumnNameForVariableName
Returns the column name suitable for use as an identifyer name.
getColumnNameWithoutPrefix
Returns the column name without the prifix.
getColumnValue
Returns the value of what ever was specified as column value.
getControllerCreateFilename
Returns the filename of the controller that creates a record.
getControllerCreateFilename
Returns the filename of the controller that creates a record.
getControllerCreateFilename
Returns the filename of the controller that creates a record.
getControllerCreateFilename
Returns the filename of the controller that creates a record.
getControllerDeleteFilename
Returns the filename of the controller that deletes a record.
getControllerDeleteFilename
Returns the filename of the controller that deletes a record.
getControllerDeleteFilename
Returns the filename of the controller that deletes a record.
getControllerDeleteFilename
Returns the filename of the controller that deletes a record.
getControllerFilename
RSDEngineDBTemplateFileGet::getControllerFilename() in RSDEngineDBTemplateFileGet.php
Returns the filename of the corresponding controller.
getControllerFilename
RSDEngineDBTemplateFileDelete::getControllerFilename() in RSDEngineDBTemplateFileDelete.php
Returns the filename of the corresponding controller.
getControllerFilename
RSDEngineDBTemplateFileCreate::getControllerFilename() in RSDEngineDBTemplateFileCreate.php
Returns the filename of the corresponding controller.
getControllerFilename
RSDEngineDBTemplateFileGetOne::getControllerFilename() in RSDEngineDBTemplateFileGetOne.php
Returns the filename of the corresponding controller.
getControllerFilename
RSDEngineDBTemplateFileGetRecord::getControllerFilename() in RSDEngineDBTemplateFileGetRecord.php
Returns the filename of the corresponding controller.
getControllerFilename
RSDEngineDBTemplateFileSearchRecord::getControllerFilename() in RSDEngineDBTemplateFileSearchRecord.php
Returns the filename of the corresponding controller.
getControllerFilename
RSDEngineDBTemplateFileUpdateRight::getControllerFilename() in RSDEngineDBTemplateFileUpdateRight.php
Returns the filename of the corresponding controller.
getControllerFilename
RSDEngineDBTemplateFileUpdateGroup::getControllerFilename() in RSDEngineDBTemplateFileUpdateGroup.php
Returns the filename of the corresponding controller.
getControllerFilename
RSDEngineDBTemplateFileSearch::getControllerFilename() in RSDEngineDBTemplateFileSearch.php
Returns the filename of the corresponding controller.
getControllerFilename
RSDEngineDBTemplateFileUpdateArea::getControllerFilename() in RSDEngineDBTemplateFileUpdateArea.php
Returns the filename of the corresponding controller.
getControllerFilename
RSDEngineDBTemplateFileUpdate::getControllerFilename() in RSDEngineDBTemplateFileUpdate.php
Returns the filename of the corresponding controller.
getControllerFiles
getControllerGetFilename
RSDEngineDBControllerFileUpdateGroup::getControllerGetFilename() in RSDEngineDBControllerFileUpdateGroup.php
Returns the filename of the get controller.
getControllerGetFilename
Returns the filename of the controller that displays multiple records.
getControllerGetFilename
RSDEngineDBControllerFileUpdateArea::getControllerGetFilename() in RSDEngineDBControllerFileUpdateArea.php
Returns the filename of the get controller.
getControllerGetFilename
Returns the filename of the controller that displays multiple records.
getControllerGetFilename
Returns the filename of the controller that displays multiple records.
getControllerGetFilename
RSDEngineDBControllerFileUpdateRight::getControllerGetFilename() in RSDEngineDBControllerFileUpdateRight.php
Returns the filename of the get controller.
getControllerGetOneFilename
Returns the filename of the controller that displays just one record.
getControllerGetOneFilename
Returns the filename of the controller that displays just one record.
getControllerGetOneFilename
Returns the filename of the controller that displays just one record.
getControllerGetOneFilename
Returns the filename of the controller that displays just one record.
getControllerGetStorageFilename
Returns the filename of the getStorage* controller for a specific record.
getControllerGetStorageFilename
Returns the filename of the getStorage* controller for a specific record.
getControllerGetStorageFilename
Returns the filename of the getStorage* controller for a specific record.
getControllerGetStorageFilename
Returns the filename of the getStorage* controller for a specific record.
getControllerUpdateAreaFilename
Returns the filename of the controller that updates a LiveUser area.
getControllerUpdateAreaFilename
Returns the filename of the controller that updates a LiveUser area.
getControllerUpdateAreaFilename
Returns the filename of the controller that updates a LiveUser area.
getControllerUpdateAreaFilename
Returns the filename of the controller that updates a LiveUser area.
getControllerUpdateFilename
Returns the filename of the controller that updates a record.
getControllerUpdateFilename
Returns the filename of the controller that updates a record.
getControllerUpdateFilename
Returns the filename of the controller that updates a record.
getControllerUpdateFilename
Returns the filename of the controller that updates a record.
getControllerUpdateGroupFilename
Returns the filename of the controller that updates a LiveUser group.
getControllerUpdateGroupFilename
Returns the filename of the controller that updates a LiveUser group.
getControllerUpdateGroupFilename
Returns the filename of the controller that updates a LiveUser group.
getControllerUpdateGroupFilename
Returns the filename of the controller that updates a LiveUser group.
getControllerUpdateRightFilename
Returns the filename of the controller that updates a LiveUser right.
getControllerUpdateRightFilename
Returns the filename of the controller that updates a LiveUser right.
getControllerUpdateRightFilename
Returns the filename of the controller that updates a LiveUser right.
getControllerUpdateRightFilename
Returns the filename of the controller that updates a LiveUser right.
getCurrentOperation
Returns the name of the current/default operation.
getDeleteByPrimaryKeyMethodName
Returns the name of the method that can be used to delete records by the primary key from this table.
getElementsFromMultiDimArrayByKey
Returns an array containing all elements from the multidimensional array that where referenced by a key equal to $key.
getError
Returns the error stored in $this->_error or if no error occurred false.
getErrors
RSErrorManager::getErrors() in RSErrorManager.php
Returns an Array containing all errors from the error stack that match the specified conditions.
getFileContents
Returns the contents of the file $filename or an instance of RSError if fopen failed.
getFilename
RSDEngineDBApplicationPrivateInitFile::getFilename() in RSDEngineDBApplicationPrivateInitFile.php
Returns the name of the private initialization file.
getFilename
RSDEngineDBApplicationPublicInitFile::getFilename() in RSDEngineDBApplicationPublicInitFile.php
Returns the name of the public initialization file.
getFilename
RSDEngineDBTemplateFileUpdateArea::getFilename() in RSDEngineDBTemplateFileUpdateArea.php
Returns the filename.
getFilename
RSDEngineDBTemplateFileUpdate::getFilename() in RSDEngineDBTemplateFileUpdate.php
Returns the filename.
getFilename
RSDEngineDBTemplateFileSearchRecord::getFilename() in RSDEngineDBTemplateFileSearchRecord.php
Returns the filename.
getFilename
RSDEngineDBApplicationConfigFile::getFilename() in RSDEngineDBApplicationConfigFile.php
Returns the name of the configuration file of the application class.
getFilename
RSDEngineDBApplicationIndexFile::getFilename() in RSDEngineDBApplicationIndexFile.php
Returns the filename of this index file.
getFilename
RSDEngineDBControllerFileCreate::getFilename() in RSDEngineDBControllerFileCreate.php
Returns the filename.
getFilename
RSDEngineDBApplicationInitFile::getFilename() in RSDEngineDBApplicationInitFile.php
Returns the name of the initialization file of the application class.
getFilename
RSDEngineDBApplicationLogoutFile::getFilename() in RSDEngineDBApplicationLogoutFile.php
Returns the filename of this logout file.
getFilename
RSDEngineDBControllerFileUpdateGroup::getFilename() in RSDEngineDBControllerFileUpdateGroup.php
Returns the filename.
getFilename
RSDEngineDBControllerFileGetOne::getFilename() in RSDEngineDBControllerFileGetOne.php
Returns the filename.
getFilename
RSDEngineTemplateFileFooter::getFilename() in RSDEngineTemplateFileFooter.php
getFilename
RSDEngineTemplateFileFatalError::getFilename() in RSDEngineTemplateFileFatalError.php
getFilename
RSDEngineTemplateFileHeader::getFilename() in RSDEngineTemplateFileHeader.php
getFilename
RSDEngineTemplateFilePaging::getFilename() in RSDEngineTemplateFilePaging.php
getFilename
RSDEngineTemplateFilePermissionDenied::getFilename() in RSDEngineTemplateFilePermissionDenied.php
getFilename
RSDEngineDBControllerFileGet::getFilename() in RSDEngineDBControllerFileGet.php
Returns the filename.
getFilename
RSDEngineDBControllerFileGetStored::getFilename() in RSDEngineDBControllerFileGetStored.php
Returns the filename.
getFilename
RSDEngineDBControllerFileSearch::getFilename() in RSDEngineDBControllerFileSearch.php
Returns the filename.
getFilename
RSDEngineDBTemplateFileUpdateRight::getFilename() in RSDEngineDBTemplateFileUpdateRight.php
Returns the filename.
getFilename
RSDEngineDBControllerFileUpdateRight::getFilename() in RSDEngineDBControllerFileUpdateRight.php
Returns the filename.
getFilename
RSDEngineControllerFileHeader::getFilename() in RSDEngineControllerFileHeader.php
getFilename
RSDEngineFile::getFilename() in RSDEngineFile.php
Returns the filename.
getFilename
RSDEngineDBControllerFileUpdate::getFilename() in RSDEngineDBControllerFileUpdate.php
Returns the filename.
getFilename
RSDEngineDBControllerFileUpdateArea::getFilename() in RSDEngineDBControllerFileUpdateArea.php
Returns the filename.
getFilename
RSDEngineDBTemplateFileCreate::getFilename() in RSDEngineDBTemplateFileCreate.php
Returns the filename.
getFilename
RSDEngineDBTemplateFileUpdateGroup::getFilename() in RSDEngineDBTemplateFileUpdateGroup.php
Returns the filename.
getFilename
RSDEngineDBTemplateFileGetRecord::getFilename() in RSDEngineDBTemplateFileGetRecord.php
Returns the filename.
getFilename
RSDEngineControllerFileFooter::getFilename() in RSDEngineControllerFileFooter.php
getFilename
RSDEngineDBTemplateFileGetOne::getFilename() in RSDEngineDBTemplateFileGetOne.php
Returns the filename.
getFilename
RSDEngineDBTemplateFileGet::getFilename() in RSDEngineDBTemplateFileGet.php
Returns the filename.
getFilename
RSDEngineDBTemplateFileDelete::getFilename() in RSDEngineDBTemplateFileDelete.php
Returns the filename.
getFilename
RSDEngineDBTemplateFileSearch::getFilename() in RSDEngineDBTemplateFileSearch.php
Returns the filename.
getFilename
RSDEngineDBControllerFileDelete::getFilename() in RSDEngineDBControllerFileDelete.php
Returns the filename.
getFileOptionProperty
getForeignKeyTarget
Returns the value of the property foreignKeyTarget.
getFunctionName
RSDEngineFunction::getFunctionName() in RSDEngineFunction.php
Returns the function name.
getFunctions
RSDEngineDB::getFunctions() in RSDEngineDB.php
Returns the functions generated by RSDEngineDB in an associative array.
getGetByPrimaryKeyMethodName
Returns the name of the method that can be used to retrive records by the primary key from this table.
getHTMLInputTag
RSDEngineColumn::getHTMLInputTag() in RSDEngineDBTable.php
getInstanceName
RSDEngineErrorManagerClass::getInstanceName() in RSDEngineErrorManagerClass.php
Returns the name for an instance created from this class.
getInstanceName
RSDEngineSmartyClass::getInstanceName() in RSDEngineSmartyClass.php
Returns the name for an instance created from this class.
getInstanceName
RSDEngineSmartyBaseClass::getInstanceName() in RSDEngineSmartyBaseClass.php
Returns the name for an instance created from this class.
getInstanceName
RSDEngineDBApplicationBaseClass::getInstanceName() in RSDEngineDBApplicationBaseClass.php
Returns the name for an instance created from this class.
getInstanceName
RSDEngineDBTable::getInstanceName() in RSDEngineDBTable.php
Returns the name for identifyer that holds a newly created instance of the created class.
getInstanceName
RSDEngineDBApplicationClass::getInstanceName() in RSDEngineDBApplicationClass.php
Returns the name for an instance created from this class.
getInstanceName
RSDEngineClass::getInstanceName() in RSDEngineClass.php
Returns the instance name.
getIsValidFileOptions
Returns the validation options for this column if it was defined as isValid:file.
getIsValidMethodName
Returns the name of the method that checks if a value is valid for the column supplied as argument.
getLabelColumn
Returns an sql statement that can be used in a select query to retrieve a literal representation of this record.
getLatestCurrentDevelopmentVersion
Returns the latest current development version.
getLatestCurrentStableVersion
Returns the latest current stable version.
getLatestCurrentVersion
Returns the latest current version.
getLatestDevelopmentRelease
Returns the latest development release.
getLatestPatchlevelVersion
Returns the latest patchlevel version in the branch "$major.$minor".
getLatestStableRelease
Returns the latest stable release.
getLiveUserAreaAdminsByAreaId
Returns all users that are admin of a certain area.
getLiveUserAreaAdminsByNegativeAreaId
Returns all users that are not admin of a certain area.
getLiveUserAreaById
RSDLiveUserApplication::getLiveUserAreaById() in RSDLiveUserApplication.php
getLiveUserGroupById
getLiveUserGroupsByNegativeRightId
Returns all groups that do not have a certain right.
getLiveUserGroupsByRightId
Returns all groups that have a certain right.
getLiveUserOptions
RSDLiveUserApplication::getLiveUserOptions() in RSDLiveUserApplication.php
Returns the property _liveUserOptions.
getLiveUserUsersByGroupid
Returns all users that are member of a certain group.
getLiveUserUsersByNegativeGroupId
Returns all users that are not admin of a certain area.
getLiveUserUsersByNegativeRightId
Returns all users that personally do not have a certain right.
getLiveUserUsersByRightId
Returns all users that personally have a certain right.
getObject
RSError::getObject() in RSError.php
Returns the value of the field object.
getOne
RSDTable::getOne() in RSDTable.php
Returns just one field of one record from this table.
getOperation
Returns the value of the field operation.
getPage
RSDTable::getPage() in RSDTable.php
getPrepareString
Returns $this->_prepareString.
getPreviousVersion
Reads and returns the version number of the previous release from the file VERSION_ROOT/PREVIOUS_RELEASE.
getPrimaryKeyColumn
Returns the first column defined as primary key
getProject
Returns a new instance of EVSProject.
getProjectSkel
Returns an absolute path to the skel (skeleton) where all files for a new project are stored.
getProperty
RSError::getProperty() in RSError.php
Returns the value of the field property.
getRecordFilename
RSDEngineDBTemplateFileSearch::getRecordFilename() in RSDEngineDBTemplateFileSearch.php
Returns the name of the file for displaying the records.
getRecordFilename
RSDEngineDBTemplateFileGet::getRecordFilename() in RSDEngineDBTemplateFileGet.php
Returns the name of the file for displaying the records.
getRoot
EVS::getRoot() in EVS.php
Returns the root of the EVS directory structure.
getRow
RSDTable::getRow() in RSDTable.php
Returns just one record from this table.
getSelectMethodColumns
Returns all columns that are returned from the method selectIncludingAll.
getSequenceNameForVariableName
Returns the sequence name suitable for use as an identifyer name.
getSmartyHTMLOptionsArray
Returns an array for use with a SMARTY {html_options} statement.
getTable
RSDEngineDB::getTable() in RSDEngineDB.php
Returns the table named $tableName or an instance of RSError on failure.
getTable
RSDApplication::getTable() in RSDApplication.php
getTableNameForVariableName
Returns the name of this table for use as a variable name.
getTableNameWithoutPrefix
Returns the name of this table without the prefix.
getTemplateFilename
RSDEngineDBControllerFileDelete::getTemplateFilename() in RSDEngineDBControllerFileDelete.php
Returns the filename of the corresponding template.
getTemplateFilename
RSDEngineDBControllerFileCreate::getTemplateFilename() in RSDEngineDBControllerFileCreate.php
Returns the filename of the corresponding template.
getTemplateFilename
RSDEngineDBControllerFileSearch::getTemplateFilename() in RSDEngineDBControllerFileSearch.php
Returns the filename of the corresponding template.
getTemplateFilename
RSDEngineDBControllerFileGet::getTemplateFilename() in RSDEngineDBControllerFileGet.php
Returns the filename of the corresponding template.
getTemplateFilename
RSDEngineDBControllerFileUpdateRight::getTemplateFilename() in RSDEngineDBControllerFileUpdateRight.php
Returns the filename of the corresponding template.
getTemplateFilename
RSDEngineDBControllerFileUpdate::getTemplateFilename() in RSDEngineDBControllerFileUpdate.php
Returns the filename of the corresponding template.
getTemplateFilename
RSDEngineDBControllerFileUpdateGroup::getTemplateFilename() in RSDEngineDBControllerFileUpdateGroup.php
Returns the filename of the corresponding template.
getTemplateFilename
RSDEngineDBControllerFileUpdateArea::getTemplateFilename() in RSDEngineDBControllerFileUpdateArea.php
Returns the filename of the corresponding template.
getTemplateFilename
RSDEngineDBControllerFileGetOne::getTemplateFilename() in RSDEngineDBControllerFileGetOne.php
Returns the filename of the corresponding template.
getTemplateFiles
Returns an associative array containing instances of child classes of RSDEngineFile.
getUpdateByPrimaryKeyMethodName
Returns the name of the method that can be used to update records by the primary key in this table.
getUserId
RSDLiveUserApplication::getUserId() in RSDLiveUserApplication.php
getValue
Returns $this->_value.
getVersion
EVSProject::getVersion() in EVSProject.php
Returns the version specified by the version number passed as argument.
getVersionSkel
Returns an absolute path to the skel (skeleton) where all files for a version are stored.
getVersionWebApplicationSkel
Returns an absolute path to the skel (skeleton) where all files for a version that was defined as an web application are stored.
getWritePopup
getWritePopup() in createProject.php
This is just a little helper function that build an HTML popup for selecting the appropriate writing method.
grantLiveUserGroupRight
grantLiveUserUserRight
h
top
$header
RSDEngineFileOption::$header in RSDEngineDBTable.php
Whether to include a header file.
hasElement
RSArrayUtil::hasElement() in RSArrayUtil.php
Returns true if the the array passed as first argument contains the element passed as second argument.
hasElements
RSArrayUtil::hasElements() in RSArrayUtil.php
Returns true if the the array passed as first argument contains all elements of the array passed as second argument.
i
top
$ignore
RSDEngineDBTable::$ignore in RSDEngineDBTable.php
Whether to ignore this table. Is set inside the method _parse.
$indent
RSDEngineMethod::$indent in RSDEngineDBTable.php
$inputType
RSDEngineColumn::$inputType in RSDEngineDBTable.php
The input type for this column. Is set in the construtor method.
$inputTypeData
RSDEngineColumn::$inputTypeData in RSDEngineDBTable.php
The the input type data (e.g. the options for a select box) for this column. Is set in the construtor method.
$instanceName
RSDEngineClass::$instanceName in RSDEngineClass.php
The instance name of the class to generate. Gets optionally set inside the constructor method.
$isCurrentVersion
Whether it is current version or a release. See the tutorial for details. Gets set inside the costructor method.
$isDevelopmentVersion
Whether it is a current development version or not. See the tutorial for details. Gets set inside the costructor method.
$isForeignKey
RSDEngineColumn::$isForeignKey in RSDEngineDBTable.php
If this column is a foreign key.
$isLatestCurrentDevelopmentVersion
Whether it is the latest current development version. See the tutorial for details. Gets set in the method init.
$isLatestCurrentVersion
Whether it is the latest current version. See the tutorial for details. Gets set in the method init.
$isLatestDevelopmentRelease
Whether it is the latest development release. See the tutorial for details. Gets set in the method init.
$isLatestStableRelease
Whether it is the latest stable release. See the tutorial for details. Gets set in the method init.
$isPrimaryKey
RSDEngineColumn::$isPrimaryKey in RSDEngineDBTable.php
If this column is a primary key.
$isRelease
EVSVersion::$isRelease in EVSVersion.php
Whether it is a release or a current version. See the tutorial for details. Gets set inside the costructor method.
$isStableVersion
Whether it is a current stable version or not. See the tutorial for details. Gets set inside the costructor method.
$isUndefinedKey
RSDEngineColumn::$isUndefinedKey in RSDEngineDBTable.php
If this column is an undefined key.
$isValid
RSDEngineColumn::$isValid in RSDEngineDBTable.php
The isValid defintion of this column. Is set in the construtor method.
index.php
index.php in index.php
index.php
index.php in index.php
index.php
index.php in index.php
index.php
index.php in index.php
index.php
index.php in index.php
index.php
index.php in index.php
index.php
index.php in index.php
index.php
index.php in index.php
index.php
index.php in index.php
init.php
init.php in init.php
index.php
index.php in index.php
init
EVSVersion::init() in EVSVersion.php
Sets the properties isLatestCurrentVersion, isLatestCurrentDevelopmentVersion, isLatestDevelopmentRelease, isLatestStableRelease.
insert
RSDTable::insert() in RSDTable.php
Inserts a record into the table.
isAdmin
RSDLiveUserApplication::isAdmin() in RSDLiveUserApplication.php
isAlpha
RSValidation::isAlpha() in RSValidation.php
Returns true if the passed string contains only alpha characters.
isAlphanumeric
RSValidation::isAlphanumeric() in RSValidation.php
Returns true if the passed string contains only alpha-numeric characters.
isAlphanumericIncludingUnderscore
Returns true if the passed string contains only alpha-numeric characters and underscores (_)
isAnyKey
RSDEngineColumn::isAnyKey() in RSDEngineDBTable.php
Returns true if this column is a primary, foreign or undefined key.
isCleanText
RSValidation::isCleanText() in RSValidation.php
Returns true if the passed string contains only alphanumeric characters of the Western alphabets
isDate
RSValidation::isDate() in RSValidation.php
Validate date and times. The default format is YYYY-MM-DD.
isDateTime
RSValidation::isDateTime() in RSValidation.php
This method is just like RSValidation::isDate but with a default format of YYYY-MM-DD HH:MM:SS.
isEmail
RSValidation::isEmail() in RSValidation.php
Returns true if the passed string is formatted as a valid e-mail adress.
isFloat
RSValidation::isFloat() in RSValidation.php
Returns true if the first argument is a float.
isInGroup
RSDLiveUserApplication::isInGroup() in RSDLiveUserApplication.php
isInt
RSValidation::isInt() in RSValidation.php
Returns true if the first argument is a number of a numeric string and has the maximum and/or minumum size as specified by the second and third argument.
isLiveUserAreaAdmin
RSDLiveUserApplication::isLiveUserAreaAdmin() in RSDLiveUserApplication.php
Whether the current user is admin of the given area.
isNumeric
RSValidation::isNumeric() in RSValidation.php
Returns true if the passed argument is a number or a numeric string.
isRSError
RSErrorManager::isRSError() in RSErrorManager.php
Returns true if the passed object is an instance of RSError.
isString
RSValidation::isString() in RSValidation.php
An alias for isStringExt.
isStringExt
RSValidation::isStringExt() in RSValidation.php
Returns true if the first argument is a string (http://www.php.net/is_string) and has a minimum and/or maximum length.
isTime
RSValidation::isTime() in RSValidation.php
This method is just like RSValidation::isDate but with a default format of HH:MM:SS.
isTimestamp
RSValidation::isTimestamp() in RSValidation.php
This method is just like RSValidation::isDate but with a default format of YYYYMMDDHHMMSS.
isValidColumnValue
Returns true if the value passed as second argument is valid for the column passed as first argument.
isValidDatabaseObjectName
Returns true if the passed string is valid database object name.
isValidForeignKey
Returns true if such a primary key exists in the specified table otherwise a new PEAR_Error.
l
top
$latestCurrentDevelopmentVersion
The latest current development version. Is set inside the constructor method.
$latestCurrentStableVersion
The latest current stable version. Is set inside the constructor method.
$latestCurrentVersion
The latest current version. Is set inside the constructor method.
$latestDevelopmentRelease
The latest development release. Is set in the constructor.
$latestStableRelease
The latest stable release. Is set inside the constructor method.
$leftOperand
$leftOperand
$leftOperand
$liveUser
RSDLiveUserApplication::$liveUser in RSDLiveUserApplication.php
An instance of PEAR::LiveUser.
lastIndexOf
RSStringUtil::lastIndexOf() in RSStringUtil.php
Returns the index of the last occurrence of the string passed as second argument in the string passed as first argument.
limit
RSStringUtil::limit() in RSStringUtil.php
Returns the first argument limited to as many characters as specified by the second argument.
loadConfig
RSDEngine::loadConfig() in RSDEngine.php
Loads the configuration information of this version into the associative array $this->config.
loadConfig
EVSVersion::loadConfig() in EVSVersion.php
Loads the configuration information of this version into the associative array $this->config.
loadProjects
Loads all projects as instances of EVSProject into $this->projects.
logInfo
RSDEngine::logInfo() in RSDEngine.php
Logs the info message passed as argument.
logWarn
RSDEngine::logWarn() in RSDEngine.php
Logs the warning message passed as argument.
m
top
$major
EVSVersion::$major in EVSVersion.php
The major version number. Gets set inside the costructor method.
$methodComments
RSDEngineMethod::$methodComments in RSDEngineDBTable.php
$methods
RSDEngineDBTable::$methods in RSDEngineDBTable.php
An array that holds the RSDEngineMethod objects for the class to generate. New methods are added by calling addMethod.
$minor
EVSVersion::$minor in EVSVersion.php
The minor version number. Gets set inside the costructor method.
MagicQuotesUtil.php
MagicQuotesUtil.php in MagicQuotesUtil.php
MagicQuotesUtil
MagicQuotesUtil in MagicQuotesUtil.php
A Utility Class for handling MagicQuotes.
makeMajorRelease
Makes a new major release based on this version.
makeMinorRelease
Makes a new minor release based on this version.
makePatchlevelRelease
Makes a new minor release based on this version.
n
top
$name
EVSProject::$name in EVSProject.php
The project name. Is set inside the constructor method.
$name
RSDTable::$name in RSDTable.php
The name of the table.
$name
RSDEngineMethod::$name in RSDEngineDBTable.php
$name
RSDEngineDBTable::$name in RSDEngineDBTable.php
The name of the table.
$name
RSDEngineColumn::$name in RSDEngineDBTable.php
The name of this column. Is set in the construtor method.
$nextMajor
EVSVersion::$nextMajor in EVSVersion.php
The next major version number. Gets set inside the costructor method.
$nextMajorReleaseNumber
The complete version number of the next major release. Gets set inside the costructor method.
$nextMinor
EVSVersion::$nextMinor in EVSVersion.php
The next minor version number. Gets set inside the costructor method.
$nextMinorReleaseNumber
The complete version number of the next minor release. Gets set inside the costructor method.
$nextPatchlevel
EVSVersion::$nextPatchlevel in EVSVersion.php
The next patchlevel version number. Gets set inside the costructor method.
$nextPatchlevelReleaseNumber
The complete version number of the next patchlevel release. Gets set inside the costructor method.
o
top
$object
RSError::$object in RSError.php
The name of the object to which the error is related.
$operation
RSDEngineLiveUserRight::$operation in RSDEngineDBTable.php
The name of the operation this right is required for. Possible values are 'select', 'insert', 'update', 'delete' and 'undefined'.
$operation
The name of the operation.
$operation
The name of the operation.
$operation
The name of the operation.
$operation
RSError::$operation in RSError.php
The name of the operation to which the error is related.
$orderBy
RSDEngineFileOption::$orderBy in RSDEngineDBTable.php
The SQL expression by which the records should be ordered.
$overwriteExisting
RSDEngineDBTemplateFileSearchRecord::$overwriteExisting in RSDEngineDBTemplateFileSearchRecord.php
Whether to overwrite an existing file.
$overwriteExisting
RSDEngineDBTemplateFileUpdate::$overwriteExisting in RSDEngineDBTemplateFileUpdate.php
Whether to overwrite an existing file.
$overwriteExisting
RSDEngineDBTemplateFileSearch::$overwriteExisting in RSDEngineDBTemplateFileSearch.php
Whether to overwrite an existing file.
$overwriteExisting
RSDEngineDBTemplateFileGetOne::$overwriteExisting in RSDEngineDBTemplateFileGetOne.php
Whether to overwrite an existing file.
$overwriteExisting
RSDEngineDBTemplateFileGetRecord::$overwriteExisting in RSDEngineDBTemplateFileGetRecord.php
Whether to overwrite an existing file.
$overwriteExisting
RSDEngineDBTemplateFileUpdateArea::$overwriteExisting in RSDEngineDBTemplateFileUpdateArea.php
Whether to overwrite an existing file.
$overwriteExisting
RSDEngineDBTemplateFileUpdateRight::$overwriteExisting in RSDEngineDBTemplateFileUpdateRight.php
Whether to overwrite an existing file.
$overwriteExisting
RSDEngineTemplateFileFooter::$overwriteExisting in RSDEngineTemplateFileFooter.php
Whether to overwrite an existing file.
$overwriteExisting
RSDEngineTemplateFileHeader::$overwriteExisting in RSDEngineTemplateFileHeader.php
Whether to overwrite an existing file.
$overwriteExisting
RSDEngineTemplateFilePaging::$overwriteExisting in RSDEngineTemplateFilePaging.php
Whether to overwrite an existing file.
$overwriteExisting
RSDEngineTemplateFilePermissionDenied::$overwriteExisting in RSDEngineTemplateFilePermissionDenied.php
Whether to overwrite an existing file.
$overwriteExisting
RSDEngineTemplateFileFatalError::$overwriteExisting in RSDEngineTemplateFileFatalError.php
Whether to overwrite an existing file.
$overwriteExisting
RSDEngineSmartyClass::$overwriteExisting in RSDEngineSmartyClass.php
Whether to overwrite an existing file. The default for this class is not to do so!
$overwriteExisting
RSDEngineDBTemplateFileGet::$overwriteExisting in RSDEngineDBTemplateFileGet.php
Whether to overwrite an existing file.
$overwriteExisting
RSDEngineErrorManagerClass::$overwriteExisting in RSDEngineErrorManagerClass.php
Whether to overwrite an existing file. The default for this class is not to do so!
$overwriteExisting
Whether to overwrite an existing file.
$overwriteExisting
RSDEngineSmartyBaseClass::$overwriteExisting in RSDEngineSmartyBaseClass.php
Whether to overwrite an existing file. The default for this class is to do so!
$overwriteExisting
RSDEngineDBTemplateFileUpdateGroup::$overwriteExisting in RSDEngineDBTemplateFileUpdateGroup.php
Whether to overwrite an existing file.
$overwriteExisting
RSDEngineDBTemplateFileDelete::$overwriteExisting in RSDEngineDBTemplateFileDelete.php
Whether to overwrite an existing file.
$overwriteExisting
RSDEngineDBApplicationPublicInitFile::$overwriteExisting in RSDEngineDBApplicationPublicInitFile.php
Whether to overwrite an existing file. The default for this class is not to do so!
$overwriteExisting
RSDEngineDBControllerFileCreate::$overwriteExisting in RSDEngineDBControllerFileCreate.php
Whether to overwrite an existing file.
$overwriteExisting
RSDEngineDBControllerFileDelete::$overwriteExisting in RSDEngineDBControllerFileDelete.php
Whether to overwrite an existing file.
$overwriteExisting
Whether to overwrite an existing class file.
$overwriteExisting
RSDEngineDBApplicationPrivateInitFile::$overwriteExisting in RSDEngineDBApplicationPrivateInitFile.php
Whether to overwrite an existing file. The default for this class is not to do so!
$overwriteExisting
RSDEngineDBApplicationInitFile::$overwriteExisting in RSDEngineDBApplicationInitFile.php
Whether to overwrite an existing file.
$overwriteExisting
RSDEngineControllerFileFooter::$overwriteExisting in RSDEngineControllerFileFooter.php
Whether to overwrite an existing file.
$overwriteExisting
RSDEngineControllerFileHeader::$overwriteExisting in RSDEngineControllerFileHeader.php
Whether to overwrite an existing file.
$overwriteExisting
RSDEngineDBApplicationClass::$overwriteExisting in RSDEngineDBApplicationClass.php
Whether to overwrite an existing file. The default for this class is not to do so!
$overwriteExisting
RSDEngineDBControllerFileGetOne::$overwriteExisting in RSDEngineDBControllerFileGetOne.php
Whether to overwrite an existing file.
$overwriteExisting
RSDEngineDBControllerFileGet::$overwriteExisting in RSDEngineDBControllerFileGet.php
Whether to overwrite an existing file.
$overwriteExisting
RSDEngineDBControllerFileGetStored::$overwriteExisting in RSDEngineDBControllerFileGetStored.php
Whether to overwrite an existing file.
$overwriteExisting
RSDEngineDBControllerFileUpdateRight::$overwriteExisting in RSDEngineDBControllerFileUpdateRight.php
Whether to overwrite an existing file.
$overwriteExisting
RSDEngineDBTemplateFileCreate::$overwriteExisting in RSDEngineDBTemplateFileCreate.php
Whether to overwrite an existing file.
$overwriteExisting
RSDEngineDBControllerFileUpdateArea::$overwriteExisting in RSDEngineDBControllerFileUpdateArea.php
Whether to overwrite an existing file.
$overwriteExisting
RSDEngineDBControllerFileUpdateGroup::$overwriteExisting in RSDEngineDBControllerFileUpdateGroup.php
Whether to overwrite an existing file.
$overwriteExisting
RSDEngineDBControllerFileUpdate::$overwriteExisting in RSDEngineDBControllerFileUpdate.php
Whether to overwrite an existing file.
$overwriteExisting
RSDEngineDBControllerFileSearch::$overwriteExisting in RSDEngineDBControllerFileSearch.php
Whether to overwrite an existing file.
onDBError
RSErrorManager::onDBError() in RSErrorManager.php
Handle the occurence of DB errors.
onFatalError
RSErrorManager::onFatalError() in RSErrorManager.php
Handle the occurence of fatal errors.
onFatalError
RSDEngineErrorManager::onFatalError() in RSDEngineErrorManager.php
RSErrorManager:onFatalError is overwritten to customize the reaction on fatal errors.
onPermissionDenied
Handle the occurence of permission-denied errors.
overwrite
RSDEngineFileOption::overwrite() in RSDEngineDBTable.php
Updates all properties in with the values of the associative array passed as argument if the values are not null.
p
top
$paging
RSDEngineFileOption::$paging in RSDEngineDBTable.php
Whether to implement a paging feature
$parameters
RSDEngineMethod::$parameters in RSDEngineDBTable.php
$patchlevel
EVSVersion::$patchlevel in EVSVersion.php
The patchlevel version number. Gets set inside the costructor method.
$phpCode
$phpCode
RSDEngineLiveUserRight::$phpCode in RSDEngineDBTable.php
The PHP code to execute to get the rightId. This property is only used if $this->type is 'PHP_CODE'.
$phpCode
$phpCode
$preventWriting
RSDEngineClass::$preventWriting in RSDEngineClass.php
Whether to prevent writing this file.
$preventWriting
RSDEngineFile::$preventWriting in RSDEngineFile.php
Whether to prevent writing this file.
$project
EVSVersion::$project in EVSVersion.php
An instance of EVSProject. Gets set inside the costructor method.
$projectDirectory
The absolute path to the directory where the version is stored. Gets set inside the costructor method.
$projectDirectory
The absolute path to the directory where the project is stored. Gets set inside the costructor method.
$projectName
RSDEngineDB::$projectName in RSDEngineDB.php
The project name. Gets set inside the constructor method.
$projectName
RSDEngineDBTable::$projectName in RSDEngineDBTable.php
The project name. Gets set inside the constructor method.
$projects
EVS::$projects in EVS.php
Holds all projects as instances of EVSProject. Gets filled by loadProjects.
$property
RSError::$property in RSError.php
The name of the property to which the error is related.
$public
RSDEngineFileOption::$public in RSDEngineDBTable.php
Whether this file (controller) is public (or private).
phpDocumentorInterface.php
phpDocumentorInterface.php in phpDocumentorInterface.php
phpDocumentorInterface.php
phpDocumentorInterface.php in phpDocumentorInterface.php
phpdoc.php
phpdoc.php in phpdoc.php
parseLiveUserOptions
This method will parse all editLiveUserRight, editLiveUserGroup and editLiveUserGroupOptions.
parseTableOptions
Parses the table options saved in $this->tableOptions.
PHPDOCUMENTOR_DEFAULT_PACKAGE_NAME
Default Package Name:
PHPDOCUMENTOR_DIRECTORIES_TO_PARSE
Directory to parse:
PHPDOCUMENTOR_FILES_TO_IGNORE
Files to ignore:
PHPDOCUMENTOR_FILES_TO_PARSE
Files to parse.
PHPDOCUMENTOR_JAVADOC_COMPLIANT
JavaDoc-compliant Description:
PHPDOCUMENTOR_OUTPUT_FORMAT
Output Information:
PHPDOCUMENTOR_PACKAGES_TO_PARSE
Packages to parse:
PHPDOCUMENTOR_PARSE_PRIVATE
parse @access private
PHPDOCUMENTOR_TARGET
PHPDOCUMENTOR_TARGET in settings.php
The PHPDocumentor target.
PHPDOCUMENTOR_TITLE
PHPDOCUMENTOR_TITLE in settings.php
Generated Documentation Title:
prepareSelectIncludingMethod
Does some preparation for the method createSelectIncludingMethod.
projectExists
Returns true if the project exists.
PROJECT_NAME
PROJECT_NAME in settings.php
The project name.
q
top
$query
RSDEngineLiveUserRight::$query in RSDEngineDBTable.php
The SQL code to pass to the method $this->db->getOne to get the rightId. This property is only used if $this->type is 'SQL_QUERY'.
$query
$query
$query
r
top
$recordCondition
The PHP code to execute for every record to get a boolean value that indicates if the user is allowed to perform this operation on the specific record or not.
$recordsPerPage
RSDEngineFileOption::$recordsPerPage in RSDEngineDBTable.php
The number of records to display per page. This property is only relavant if $this->paging is set to true.
$relatedClasses
RSDEngineFile::$relatedClasses in RSDEngineFile.php
An associative array containing related files. A class that extends RSDEngineFile and overwrites the method getCode might need this to communicate with other classes that are created. Gets set inside the method setRelatedClasses.
$relatedFiles
RSDEngineFile::$relatedFiles in RSDEngineFile.php
An associative array containing related files. A class that extends RSDEngineFile and overwrites the method getCode might need this to communicate with other files that are created. Gets set inside the method setRelatedFiles.
$relatedFunctions
An associative array containing related files. A class that extends RSDEngineFile and overwrites the method getCode might need this to communicate with other functions that are created. Gets set inside the method setRelatedFunctions.
$relations
RSDEngineDBTable::$relations in RSDEngineDBTable.php
An array of all RSDRelation objects having this table as starting point. New relations are added by calling the method _addRelation.
$relations
RSDEngineDB::$relations in RSDEngineDB.php
An array containing instances of RSDEngineRelation.
$relationToSelectIncludingTable
The relation to the table (class) that contains the selectIncludingMethod.
$releases
EVSProject::$releases in EVSProject.php
An array containing all releases of the project as instances of EVSVersion (sorted by release number).
$rightOperand
$rightOperand
$rightOperand
$rsdEngineColumn
The column for which this option was set.
$rsdEngineColumn
The column for which this option was set.
$rsdEngineColumn
The column for which this option was set.
$rsdEngineDB
RSDEngineDBTable::$rsdEngineDB in RSDEngineDBTable.php
Holds a handle to the RSDEngineDB instance that created this instance.
$rsdEngineDBTable
The RSDEngineDBTable instance that created this instance.
$rsdEngineDBTable
RSDEngineRelation::$rsdEngineDBTable in RSDEngineDBTable.php
The RSDEngineDBTable instance that created this instance.
$rsdEngineDBTable
The RSDEngineDBTable instance that created this instance.
$rsdEngineDBTable
The RSDEngineDBTable instance that created this instance.
$rsdEngineDBTable
RSDEngineColumn::$rsdEngineDBTable in RSDEngineDBTable.php
The RSDEngineDBTable instance that created this instance.
RSDB.php
RSDB.php in RSDB.php
RSArrayUtil.php
RSArrayUtil.php in RSArrayUtil.php
RSDApplication.php
RSDApplication.php in RSDApplication.php
RSDEngineClass.php
RSDEngineClass.php in RSDEngineClass.php
RSDEngineControllerFileFooter.php
RSDEngineControllerFileFooter.php in RSDEngineControllerFileFooter.php
RSDEngineControllerFileHeader.php
RSDEngineControllerFileHeader.php in RSDEngineControllerFileHeader.php
RSDEngineControllerFile.php
RSDEngineControllerFile.php in RSDEngineControllerFile.php
RSDEngineDBApplicationBaseClass.php
RSDEngineDBApplicationBaseClass.php in RSDEngineDBApplicationBaseClass.php
RSDEngineDBApplicationClass.php
RSDEngineDBApplicationClass.php in RSDEngineDBApplicationClass.php
RSDEngineDBApplicationConfigFile.php
RSDEngineDBApplicationConfigFile.php in RSDEngineDBApplicationConfigFile.php
RSDEngineDBApplicationIndexFile.php
RSDEngineDBApplicationIndexFile.php in RSDEngineDBApplicationIndexFile.php
RSDEngineDBApplicationInitFile.php
RSDEngineDBApplicationInitFile.php in RSDEngineDBApplicationInitFile.php
RSDEngineDBApplicationLogoutFile.php
RSDEngineDBApplicationLogoutFile.php in RSDEngineDBApplicationLogoutFile.php
RSDEngineDBApplicationPrivateInitFile.php
RSDEngineDBApplicationPrivateInitFile.php in RSDEngineDBApplicationPrivateInitFile.php
RSDEngineDBApplicationPublicInitFile.php
RSDEngineDBApplicationPublicInitFile.php in RSDEngineDBApplicationPublicInitFile.php
RSDEngineDBControllerFileCreate.php
RSDEngineDBControllerFileCreate.php in RSDEngineDBControllerFileCreate.php
RSDEngineDBControllerFileDelete.php
RSDEngineDBControllerFileDelete.php in RSDEngineDBControllerFileDelete.php
RSDEngineDBControllerFileGetOne.php
RSDEngineDBControllerFileGetOne.php in RSDEngineDBControllerFileGetOne.php
RSDEngineDBControllerFileGetStored.php
RSDEngineDBControllerFileGetStored.php in RSDEngineDBControllerFileGetStored.php
RSDEngineDBControllerFileGet.php
RSDEngineDBControllerFileGet.php in RSDEngineDBControllerFileGet.php
RSDEngineDBControllerFileSearch.php
RSDEngineDBControllerFileSearch.php in RSDEngineDBControllerFileSearch.php
RSDEngineDBControllerFileUpdateArea.php
RSDEngineDBControllerFileUpdateArea.php in RSDEngineDBControllerFileUpdateArea.php
RSDEngineDBControllerFileUpdateGroup.php
RSDEngineDBControllerFileUpdateGroup.php in RSDEngineDBControllerFileUpdateGroup.php
RSDEngineDBControllerFileUpdateRight.php
RSDEngineDBControllerFileUpdateRight.php in RSDEngineDBControllerFileUpdateRight.php
RSDEngineDBControllerFileUpdate.php
RSDEngineDBControllerFileUpdate.php in RSDEngineDBControllerFileUpdate.php
RSDEngineDBTable.php
RSDEngineDBTable.php in RSDEngineDBTable.php
RSDEngineDBTemplateFileCreate.php
RSDEngineDBTemplateFileCreate.php in RSDEngineDBTemplateFileCreate.php
RSDEngineDBTemplateFileDelete.php
RSDEngineDBTemplateFileDelete.php in RSDEngineDBTemplateFileDelete.php
RSDEngineDBTemplateFileGetOne.php
RSDEngineDBTemplateFileGetOne.php in RSDEngineDBTemplateFileGetOne.php
RSDEngineDBTemplateFileGetRecord.php
RSDEngineDBTemplateFileGetRecord.php in RSDEngineDBTemplateFileGetRecord.php
RSDEngineDBTemplateFileGet.php
RSDEngineDBTemplateFileGet.php in RSDEngineDBTemplateFileGet.php
RSDEngineDBTemplateFileSearchRecord.php
RSDEngineDBTemplateFileSearchRecord.php in RSDEngineDBTemplateFileSearchRecord.php
RSDEngineDBTemplateFileSearch.php
RSDEngineDBTemplateFileSearch.php in RSDEngineDBTemplateFileSearch.php
RSDEngineDBTemplateFileUpdateArea.php
RSDEngineDBTemplateFileUpdateArea.php in RSDEngineDBTemplateFileUpdateArea.php
RSDEngineDBTemplateFileUpdateGroup.php
RSDEngineDBTemplateFileUpdateGroup.php in RSDEngineDBTemplateFileUpdateGroup.php
RSDEngineDBTemplateFileUpdateRight.php
RSDEngineDBTemplateFileUpdateRight.php in RSDEngineDBTemplateFileUpdateRight.php
RSDEngineDBTemplateFileUpdate.php
RSDEngineDBTemplateFileUpdate.php in RSDEngineDBTemplateFileUpdate.php
RSDEngineDB.php
RSDEngineDB.php in RSDEngineDB.php
RSDEngineErrorManagerClass.php
RSDEngineErrorManagerClass.php in RSDEngineErrorManagerClass.php
RSDEngineErrorManager.php
RSDEngineErrorManager.php in RSDEngineErrorManager.php
RSDEngineFile.php
RSDEngineFile.php in RSDEngineFile.php
RSDEngineFunction.php
RSDEngineFunction.php in RSDEngineFunction.php
RSDEngineSmartyBaseClass.php
RSDEngineSmartyBaseClass.php in RSDEngineSmartyBaseClass.php
RSDEngineSmartyClass.php
RSDEngineSmartyClass.php in RSDEngineSmartyClass.php
RSDEngineTemplateFileFatalError.php
RSDEngineTemplateFileFatalError.php in RSDEngineTemplateFileFatalError.php
RSDEngineTemplateFileFooter.php
RSDEngineTemplateFileFooter.php in RSDEngineTemplateFileFooter.php
RSDEngineTemplateFileHeader.php
RSDEngineTemplateFileHeader.php in RSDEngineTemplateFileHeader.php
RSDEngineTemplateFilePaging.php
RSDEngineTemplateFilePaging.php in RSDEngineTemplateFilePaging.php
RSDEngineTemplateFilePermissionDenied.php
RSDEngineTemplateFilePermissionDenied.php in RSDEngineTemplateFilePermissionDenied.php
RSDEngineTemplateFile.php
RSDEngineTemplateFile.php in RSDEngineTemplateFile.php
RSDEngine.php
RSDEngine.php in RSDEngine.php
RSDLiveUserApplication.php
RSDLiveUserApplication.php in RSDLiveUserApplication.php
RSDTable.php
RSDTable.php in RSDTable.php
RSErrorCodes.php
RSErrorCodes.php in RSErrorCodes.php
RSErrorManager.php
RSErrorManager.php in RSErrorManager.php
RSError.php
RSError.php in RSError.php
RSIO.php
RSIO.php in RSIO.php
RSStringUtil.php
RSStringUtil.php in RSStringUtil.php
RSValidation.php
RSValidation.php in RSValidation.php
releaseProject.php
releaseProject.php in releaseProject.php
runUnitTest.php
runUnitTest.php in runUnitTest.php
rsdConfig.php
rsdConfig.php in rsdConfig.php
rsdInit.php
rsdInit.php in rsdInit.php
releaseProject.php
releaseProject.php in releaseProject.php
runUnitTest.php
runUnitTest.php in runUnitTest.php
raiseRSError
RSErrorManager::raiseRSError() in RSErrorManager.php
This method is a wrapper for PEAR::raiseError. It returns an instance of the class RSError.
recordArrayToSmartyHTMLOptionsArray
Transforms an array of records to an array for use with a SMARTY {html_options} statement.
removeDuplicates
Removes all duplicates from an array.
removeLeadingString
Returns the string passed as argument with the leading dollar sign ($) removed removed.
removeLiveUserAreaAdmin
Removes an LiveUser area admin.
removeLiveUserUser
RSDLiveUserApplication::removeLiveUserUser() in RSDLiveUserApplication.php
Removes a user from the auth and the perm container.
removeLiveUserUserFromGroup
removeTrailingString
Returns the string passed as argument with the trailing slash removed.
replaceInAllFilenames
Renames all files and directories in $path recursively by doing a string replacement.
replaceInFilename
Renames a file by doing a string replacement.
reportError
RSErrorManager::reportError() in RSErrorManager.php
Report the occurence of an error.
reset
RSErrorManager::reset() in RSErrorManager.php
Removes all errors from the error stack and sets a new default operation.
revokeLiveUserGroupRight
revokeLiveUserUserRight
RSArrayComparator
Constructor method that initializes the private field _subComparator.
RSArrayComparator
RSArrayComparator in RSArrayUtil.php
A comparator for arrays.
RSArrayUtil
RSArrayUtil in RSArrayUtil.php
A Utility Class for Simple and Advanced Arrays Operations.
RSARRAYUTIL_IGNORE_ORDER
RSARRAYUTIL_IGNORE_ORDER in RSArrayUtil.php
The comparator class RSArrayComparator accepts a constructor argument that defines if it should ignore the order of the elements. RSArrayUtil::getAllCombinations does the same - but in contrast to RSArrayComparator ignoring the order is the default.
RSARRAYUTIL_LAZY_COMPARISONS
RSARRAYUTIL_LAZY_COMPARISONS in RSArrayUtil.php
Some methods accept an argument to change the comparison operator. Pass this constant to force 'lazy' comparison using '=='.
RSARRAYUTIL_RESPECT_ORDER
RSARRAYUTIL_RESPECT_ORDER in RSArrayUtil.php
The comparator class RSArrayComparator accepts a constructor argument that defines if it should ignore the order of the elements. RSArrayUtil::getAllCombinations does the same - but in contrast to RSArrayComparator ignoring the order is the default.
RSARRAYUTIL_STRICT_COMPARISONS
Some methods accept an argument to change the comparison operator. Pass this constant to force strict comparison using '==='.
RSComparator
RSComparator in RSArrayUtil.php
Base class for all implementations of comparators.
RSDApplication
RSDApplication::RSDApplication() in RSDApplication.php
The constructor initializes the field db and errorManager.
RSDApplication
RSDApplication in RSDApplication.php
RSDApplication is the base class for any application class.
RSDColumnValue
RSDColumnValue in RSDTable.php
This class can be used to express a value to be used in a SQL statement.
RSDColumnValue
The constructor method.
RSDEngine
RSDEngine::RSDEngine() in RSDEngine.php
Construtor method.
RSDEngine
RSDEngine in RSDEngine.php
Rapid and Secure Development Engine - generates classes for accessing the database schema provided by the developer.
RSDEngineClass
RSDEngineClass::RSDEngineClass() in RSDEngineClass.php
Constructor that does the initialization.
RSDEngineClass
RSDEngineClass in RSDEngineClass.php
Helper class for generating a class.
RSDEngineColumn
RSDEngineColumn in RSDEngineDBTable.php
Holds all information for one column of an RSDEngineDBTable.
RSDEngineColumn
RSDEngineColumn::RSDEngineColumn() in RSDEngineDBTable.php
The constructor that initializes this instance.
RSDEngineControllerFile
Constructor that does the initialization.
RSDEngineControllerFile
RSDEngineControllerFile in RSDEngineControllerFile.php
Helper class for creating template files.
RSDEngineControllerFileFooter
RSDEngineControllerFileFooter in RSDEngineControllerFileFooter.php
The generated file is included by the template file footer.tpl (created by RSDEngineTemplateFileFooter).
RSDEngineControllerFileHeader
RSDEngineControllerFileHeader in RSDEngineControllerFileHeader.php
The generated file is included by the template file header.tpl (created by RSDEngineTemplateFileHeader).
RSDEngineDB
RSDEngineDB::RSDEngineDB() in RSDEngineDB.php
Initializes this instance.
RSDEngineDB
RSDEngineDB in RSDEngineDB.php
This class provides the power of creating classes that simplify the acccess of database tables.
RSDEngineDBApplicationBaseClass
RSDEngineDBApplicationBaseClass in RSDEngineDBApplicationBaseClass.php
Generates the application base class (the main class) for database backended applications.
RSDEngineDBApplicationClass
RSDEngineDBApplicationClass in RSDEngineDBApplicationClass.php
Generates the Application class (the main class) for database backended applications.
RSDEngineDBApplicationConfigFile
RSDEngineDBApplicationConfigFile in RSDEngineDBApplicationConfigFile.php
Generates the configuration file for database backended applications.
RSDEngineDBApplicationIndexFile
RSDEngineDBApplicationIndexFile in RSDEngineDBApplicationIndexFile.php
Generates a file called index.php to be put in the code directory.
RSDEngineDBApplicationInitFile
RSDEngineDBApplicationInitFile in RSDEngineDBApplicationInitFile.php
Generates the init file.
RSDEngineDBApplicationLogoutFile
RSDEngineDBApplicationLogoutFile in RSDEngineDBApplicationLogoutFile.php
Generates a file called logout.php to be put in the code directory.
RSDEngineDBApplicationPrivateInitFile
RSDEngineDBApplicationPrivateInitFile in RSDEngineDBApplicationPrivateInitFile.php
Generates the private init file.
RSDEngineDBApplicationPublicInitFile
RSDEngineDBApplicationPublicInitFile in RSDEngineDBApplicationPublicInitFile.php
Generates the public init file.
RSDEngineDBControllerFileCreate
RSDEngineDBControllerFileCreate in RSDEngineDBControllerFileCreate.php
Generates the controller file for inserting records into a table.
RSDEngineDBControllerFileDelete
RSDEngineDBControllerFileDelete in RSDEngineDBControllerFileDelete.php
Generates the controller file for deleting records from a table.
RSDEngineDBControllerFileGet
RSDEngineDBControllerFileGet in RSDEngineDBControllerFileGet.php
Generates the controller file for selecting records from a table.
RSDEngineDBControllerFileGetOne
RSDEngineDBControllerFileGetOne in RSDEngineDBControllerFileGetOne.php
Generates the controller file for selecting one record from a table.
RSDEngineDBControllerFileGetStored
RSDEngineDBControllerFileGetStored in RSDEngineDBControllerFileGetStored.php
Generates the controller file for selecting one record from a table.
RSDEngineDBControllerFileSearch
RSDEngineDBControllerFileSearch in RSDEngineDBControllerFileSearch.php
Generates the controller file for searching records in a table.
RSDEngineDBControllerFileUpdate
RSDEngineDBControllerFileUpdate in RSDEngineDBControllerFileUpdate.php
Generates the controller file for inserting records into a table.
RSDEngineDBControllerFileUpdateArea
RSDEngineDBControllerFileUpdateArea in RSDEngineDBControllerFileUpdateArea.php
Generates the controller file for updating a LiveUser area.
RSDEngineDBControllerFileUpdateGroup
RSDEngineDBControllerFileUpdateGroup in RSDEngineDBControllerFileUpdateGroup.php
Generates the controller file for updating a LiveUser group.
RSDEngineDBControllerFileUpdateRight
RSDEngineDBControllerFileUpdateRight in RSDEngineDBControllerFileUpdateRight.php
Generates the controller file for updating a LiveUser right.
RSDEngineDBTable
RSDEngineDBTable in RSDEngineDBTable.php
Creates a class for accassing a database table.
RSDEngineDBTable
RSDEngineDBTable::RSDEngineDBTable() in RSDEngineDBTable.php
Constructor that initializes this instance and calls parse.
RSDEngineDBTemplateFileCreate
RSDEngineDBTemplateFileCreate in RSDEngineDBTemplateFileCreate.php
Generates the smarty template file for inserting records into a table.
RSDEngineDBTemplateFileDelete
RSDEngineDBTemplateFileDelete in RSDEngineDBTemplateFileDelete.php
Generates the smarty template file for deleting records from a table.
RSDEngineDBTemplateFileGet
RSDEngineDBTemplateFileGet in RSDEngineDBTemplateFileGet.php
Generates the smarty template file for selecting all records from a table.
RSDEngineDBTemplateFileGetOne
RSDEngineDBTemplateFileGetOne in RSDEngineDBTemplateFileGetOne.php
Generates the smarty template file for selecting a single record from a table.
RSDEngineDBTemplateFileGetRecord
RSDEngineDBTemplateFileGetRecord in RSDEngineDBTemplateFileGetRecord.php
Generates the smarty template file to be included by the get-template to display the records.
RSDEngineDBTemplateFileSearch
RSDEngineDBTemplateFileSearch in RSDEngineDBTemplateFileSearch.php
Generates the smarty template file for searching records from in table.
RSDEngineDBTemplateFileSearchRecord
RSDEngineDBTemplateFileSearchRecord in RSDEngineDBTemplateFileSearchRecord.php
Generates the smarty template file to be included by the search-template to display the records.
RSDEngineDBTemplateFileUpdate
RSDEngineDBTemplateFileUpdate in RSDEngineDBTemplateFileUpdate.php
Generates the smarty template file for updating records in a table.
RSDEngineDBTemplateFileUpdateArea
RSDEngineDBTemplateFileUpdateArea in RSDEngineDBTemplateFileUpdateArea.php
Generates the smarty template file for updating a LiveUser area.
RSDEngineDBTemplateFileUpdateGroup
RSDEngineDBTemplateFileUpdateGroup in RSDEngineDBTemplateFileUpdateGroup.php
Generates the smarty template file for updating a LiveUser group.
RSDEngineDBTemplateFileUpdateRight
RSDEngineDBTemplateFileUpdateRight in RSDEngineDBTemplateFileUpdateRight.php
Generates the smarty template file for updating a LiveUser right.
RSDEngineEditLiveUserAreaOption
RSDEngineEditLiveUserAreaOption in RSDEngineDBTable.php
An instance of this class is created for every editLiveUserArea option.
RSDEngineEditLiveUserAreaOption
RSDEngineEditLiveUserGroupOption
RSDEngineEditLiveUserGroupOption
RSDEngineEditLiveUserGroupOption in RSDEngineDBTable.php
An instance of this class is created for every editLiveUserGroup option.
RSDEngineEditLiveUserRightOption
RSDEngineEditLiveUserRightOption
RSDEngineEditLiveUserRightOption in RSDEngineDBTable.php
An instance of this class is created for every editLiveUserRight option.
RSDEngineErrorManager
RSDEngineErrorManager in RSDEngineErrorManager.php
RSDEngineErrorManager implements an error management for the RSDEngine.
RSDEngineErrorManager
Calls the parent constructor.
RSDEngineErrorManagerClass
RSDEngineErrorManagerClass in RSDEngineErrorManagerClass.php
Generates the Application class (the main class) for database backended applications.
RSDEngineFile
RSDEngineFile in RSDEngineFile.php
Helper class for creating source files.
RSDEngineFile
RSDEngineFile::RSDEngineFile() in RSDEngineFile.php
Constructor that does the initialization.
RSDEngineFileOption
The constructor method.
RSDEngineFileOption
RSDEngineFileOption in RSDEngineDBTable.php
This class represents a file table option that is used to define settings for individual files.
RSDEngineFunction
RSDEngineFunction in RSDEngineFunction.php
Helper class for generating a function.
RSDEngineFunction
Constructor that does the initialization.
RSDEngineLiveUserRight
The constructor method.
RSDEngineLiveUserRight
RSDEngineLiveUserRight in RSDEngineDBTable.php
This class represents a LiveUser table option that is used to define the rights the current user must have to perform certain operations.
RSDEngineMethod
RSDEngineMethod in RSDEngineDBTable.php
A class for generating an entire PHP-Class.
RSDEngineMethod
RSDEngineMethod::RSDEngineMethod() in RSDEngineDBTable.php
Constructor method that initializes this instance.
RSDEngineRelation
Constructor method that initializes this instance.
RSDEngineRelation
RSDEngineRelation in RSDEngineDBTable.php
Implements a relation between two database tables.
RSDEngineSmartyBaseClass
RSDEngineSmartyBaseClass in RSDEngineSmartyBaseClass.php
Generates a class extending the class Smarty.
RSDEngineSmartyClass
RSDEngineSmartyClass in RSDEngineSmartyClass.php
Generates a class extending the class Smarty.
RSDEngineTemplateFile
Constructor that does the initialization.
RSDEngineTemplateFile
RSDEngineTemplateFile in RSDEngineTemplateFile.php
Helper class for creating template files.
RSDEngineTemplateFileFatalError
RSDEngineTemplateFileFatalError in RSDEngineTemplateFileFatalError.php
Generates the smarty template file for viewing an occurred error.
RSDEngineTemplateFileFooter
RSDEngineTemplateFileFooter in RSDEngineTemplateFileFooter.php
Generates the smarty footer template.
RSDEngineTemplateFileHeader
RSDEngineTemplateFileHeader in RSDEngineTemplateFileHeader.php
Generates the smarty header template.
RSDEngineTemplateFilePaging
RSDEngineTemplateFilePaging in RSDEngineTemplateFilePaging.php
Generates the smarty template file for the paging feature.
RSDEngineTemplateFilePermissionDenied
RSDEngineTemplateFilePermissionDenied in RSDEngineTemplateFilePermissionDenied.php
Generates the smarty template file for informig the user about a denied permission.
RSDLiveUserApplication
RSDLiveUserApplication in RSDLiveUserApplication.php
RSDLiveUserApplication is the base class for any LiveUser application class.
RSDTable
RSDTable in RSDTable.php
This is the superclass for all RSDTable classes created for a specific table.
RSDTable
RSDTable::RSDTable() in RSDTable.php
Constructor that calls the base class constructor PEAR().
RSD_CHECK_UNIQUE_CONSTRAINTS
Pass this constant to the methods isValidColumnValueArray, isValidColumnValue or any other isValid* method to check also unique constraints (if existing).
RSD_DEFAULT_CONFIG_ALLOW_USER_ORDER_BY
RSD_DEFAULT_CONFIG_AUTH
RSD_DEFAULT_CONFIG_AUTH in rsdConfig.php
RSD_DEFAULT_CONFIG_AUTHORS
RSD_DEFAULT_CONFIG_AUTH_ACTIVATEDCOLUMN
RSD_DEFAULT_CONFIG_AUTH_CRYPTTYPE
RSD_DEFAULT_CONFIG_AUTH_LOGOUTURL
RSD_DEFAULT_CONFIG_AUTH_PASSWORDCOLUMN
RSD_DEFAULT_CONFIG_AUTH_SESSIONNAME
RSD_DEFAULT_CONFIG_AUTH_SESSIONTIMEOUT
RSD_DEFAULT_CONFIG_AUTH_TABLE
RSD_DEFAULT_CONFIG_AUTH_USERNAMECOLUMN
RSD_DEFAULT_CONFIG_COLUMN_PREFIX
RSD_DEFAULT_CONFIG_COPYRIGHT
RSD_DEFAULT_CONFIG_CREATE_CONTROLLERS_ARE_PUBLIC
RSD_DEFAULT_CONFIG_DATABASE_BACKEND
RSD_DEFAULT_CONFIG_DATABASE_ENSURE_REFERENTIAL_INTEGRITY
RSD_DEFAULT_CONFIG_DATABASE_HOST
RSD_DEFAULT_CONFIG_DATABASE_NAME
RSD_DEFAULT_CONFIG_DATABASE_PASSWORD
RSD_DEFAULT_CONFIG_DATABASE_TYPE
RSD_DEFAULT_CONFIG_DATABASE_USERNAME
RSD_DEFAULT_CONFIG_DELETE_CONTROLLERS_ARE_PUBLIC
RSD_DEFAULT_CONFIG_FILE_STORAGE_DIRECTORY
RSD_DEFAULT_CONFIG_GETONE_CONTROLLERS_ARE_PUBLIC
RSD_DEFAULT_CONFIG_GETONE_SELECT_METHOD_NAME
RSD_DEFAULT_CONFIG_GET_CONTROLLERS_ARE_PUBLIC
RSD_DEFAULT_CONFIG_GET_PAGING
RSD_DEFAULT_CONFIG_GET_SELECT_METHOD_NAME
RSD_DEFAULT_CONFIG_INSTALL
RSD_DEFAULT_CONFIG_LIVEUSER
RSD_DEFAULT_CONFIG_LIVEUSER_AUTH_ADMIN_CLASS
RSD_DEFAULT_CONFIG_LIVEUSER_AUTH_ADMIN_FILE
RSD_DEFAULT_CONFIG_LIVEUSER_AUTH_ALLOW_DUPLICATE_HANDLES
RSD_DEFAULT_CONFIG_LIVEUSER_AUTH_EXPIRE_TIME
RSD_DEFAULT_CONFIG_LIVEUSER_AUTH_IDLE_TIME
RSD_DEFAULT_CONFIG_LIVEUSER_AUTH_LOGIN_TIMEOUT
RSD_DEFAULT_CONFIG_LIVEUSER_AUTH_PASSWORD_ENCRYPTION_MODE
RSD_DEFAULT_CONFIG_LIVEUSER_AUTH_TABLE
RSD_DEFAULT_CONFIG_LIVEUSER_AUTH_TABLE_COLUMN_HANDLE
RSD_DEFAULT_CONFIG_LIVEUSER_AUTH_TABLE_COLUMN_IS_ACTIVE
RSD_DEFAULT_CONFIG_LIVEUSER_AUTH_TABLE_COLUMN_LAST_LOGIN
RSD_DEFAULT_CONFIG_LIVEUSER_AUTH_TABLE_COLUMN_PASSWORD
RSD_DEFAULT_CONFIG_LIVEUSER_AUTH_TABLE_COLUMN_USERID
RSD_DEFAULT_CONFIG_LIVEUSER_DESTROY_SESSION_ON_LOGOUT
RSD_DEFAULT_CONFIG_LIVEUSER_FORCE_LOGIN
RSD_DEFAULT_CONFIG_LIVEUSER_LOGIN_SUBMIT_METHOD
RSD_DEFAULT_CONFIG_LIVEUSER_LOGOUT_REDIRECT_URL
RSD_DEFAULT_CONFIG_LIVEUSER_PERM_ADMIN_CLASS
RSD_DEFAULT_CONFIG_LIVEUSER_PERM_ADMIN_FILE
RSD_DEFAULT_CONFIG_LIVEUSER_PERM_TABLE_PREFIX
RSD_DEFAULT_CONFIG_LIVEUSER_PERM_TYPE
RSD_DEFAULT_CONFIG_LIVEUSER_REFRESH_RIGHTS
RSD_DEFAULT_CONFIG_LIVEUSER_REMEMBER_ME
RSD_DEFAULT_CONFIG_LIVEUSER_REMEMBER_ME_COOKIE_DOMAIN
RSD_DEFAULT_CONFIG_LIVEUSER_REMEMBER_ME_COOKIE_LIFETIME
RSD_DEFAULT_CONFIG_LIVEUSER_REMEMBER_ME_COOKIE_NAME
RSD_DEFAULT_CONFIG_LIVEUSER_REMEMBER_ME_COOKIE_PATH
RSD_DEFAULT_CONFIG_LIVEUSER_REMEMBER_ME_COOKIE_SECRET_KEY
RSD_DEFAULT_CONFIG_LIVEUSER_SESSION_NAME
RSD_DEFAULT_CONFIG_MAIL
RSD_DEFAULT_CONFIG_MAIL in rsdConfig.php
RSD_DEFAULT_CONFIG_MAIL_DEFAULT_SENDER
RSD_DEFAULT_CONFIG_MAIL_SENDMAILARGS
RSD_DEFAULT_CONFIG_MAIL_SENDMAILPATH
RSD_DEFAULT_CONFIG_MAIL_SMTPAUTH
RSD_DEFAULT_CONFIG_MAIL_SMTPHOST
RSD_DEFAULT_CONFIG_MAIL_SMTPPASSWORD
RSD_DEFAULT_CONFIG_MAIL_SMTPPORT
RSD_DEFAULT_CONFIG_MAIL_SMTPUSERNAME
RSD_DEFAULT_CONFIG_MAIL_TYPE
RSD_DEFAULT_CONFIG_MAKE_INPUT_TYPE_ASSUMPTION
RSD_DEFAULT_CONFIG_MAKE_ISVALID_ASSUMPTION
RSD_DEFAULT_CONFIG_MAKE_SEQUENCE_ASSUMPTION
RSD_DEFAULT_CONFIG_OVERWRITE_CONTROLLERS
RSD_DEFAULT_CONFIG_OVERWRITE_TEMPLATES
RSD_DEFAULT_CONFIG_PERM
RSD_DEFAULT_CONFIG_PERM in rsdConfig.php
RSD_DEFAULT_CONFIG_PERM_NAME_COLUMN
RSD_DEFAULT_CONFIG_PERM_REFERENCE_ID_COLUMN
RSD_DEFAULT_CONFIG_PERM_TABLE
RSD_DEFAULT_CONFIG_PHPDOCUMENTOR_DIR
RSD_DEFAULT_CONFIG_PROJECT_DESCRIPTION
RSD_DEFAULT_CONFIG_PROJECT_NAME
RSD_DEFAULT_CONFIG_README
RSD_DEFAULT_CONFIG_README in rsdConfig.php
RSD_DEFAULT_CONFIG_RECORDS_PER_PAGE
RSD_DEFAULT_CONFIG_SEARCH_CONTROLLERS_ARE_PUBLIC
RSD_DEFAULT_CONFIG_SEARCH_PAGING
RSD_DEFAULT_CONFIG_SEARCH_SELECT_METHOD_NAME
RSD_DEFAULT_CONFIG_SEPARATE_RECORD_TEMPLATE
RSD_DEFAULT_CONFIG_SHOW_KEY_COLUMNS
RSD_DEFAULT_CONFIG_SKEL
RSD_DEFAULT_CONFIG_SKEL in rsdConfig.php
RSD_DEFAULT_CONFIG_SMARTY_DIR
RSD_DEFAULT_CONFIG_SMARTY_LEFTDELIMITER
RSD_DEFAULT_CONFIG_SMARTY_RIGHTDELIMITER
RSD_DEFAULT_CONFIG_SQL
RSD_DEFAULT_CONFIG_SQL in rsdConfig.php
RSD_DEFAULT_CONFIG_TABLE_PREFIX
RSD_DEFAULT_CONFIG_UPDATE_CONTROLLERS_ARE_PUBLIC
RSD_DEFAULT_CONFIG_UPDATE_VERSION_AFTER_RELEASE
RSD_DEFAULT_CONFIG_USE_FOOTER
RSD_DEFAULT_CONFIG_USE_HEADER
RSD_DEFAULT_CONFIG_VALIDATION_CLASSFILE
RSD_DEFAULT_CONFIG_VALIDATION_CLASSNAME
RSD_DEFAULT_CONFIG_VERSIONING
RSD_DEFAULT_CONFIG_WEBAPPLICATION
RSD_DEFAULT_CONFIG_WEBAPPLICATION_SKEL
RSD_DEFAULT_CONFIG_WRITE_APPLICATION_BASE_CLASS
RSD_DEFAULT_CONFIG_WRITE_APPLICATION_CHILD_CLASS
RSD_DEFAULT_CONFIG_WRITE_CONFIG_FILE
RSD_DEFAULT_CONFIG_WRITE_CONTROLLER_CREATE
RSD_DEFAULT_CONFIG_WRITE_CONTROLLER_DELETE
RSD_DEFAULT_CONFIG_WRITE_CONTROLLER_GET
RSD_DEFAULT_CONFIG_WRITE_CONTROLLER_GETONE
RSD_DEFAULT_CONFIG_WRITE_CONTROLLER_SEARCH
RSD_DEFAULT_CONFIG_WRITE_CONTROLLER_UPDATE
RSD_DEFAULT_CONFIG_WRITE_ERROR_MANAGER_CLASS
RSD_DEFAULT_CONFIG_WRITE_FATAL_ERROR_TEMPLATE
RSD_DEFAULT_CONFIG_WRITE_FOOTER_FILES
RSD_DEFAULT_CONFIG_WRITE_HEADER_FILES
RSD_DEFAULT_CONFIG_WRITE_INDEX_FILE
RSD_DEFAULT_CONFIG_WRITE_INIT_FILE
RSD_DEFAULT_CONFIG_WRITE_LOGOUT_FILE
RSD_DEFAULT_CONFIG_WRITE_PAGING_TEMPLATE
RSD_DEFAULT_CONFIG_WRITE_PERMISSION_DENIED_TEMPLATE
RSD_DEFAULT_CONFIG_WRITE_PRIVATE_INIT_FILE
RSD_DEFAULT_CONFIG_WRITE_PUBLIC_INIT_FILE
RSD_DEFAULT_CONFIG_WRITE_SMARTY_BASE_CLASS
RSD_DEFAULT_CONFIG_WRITE_SMARTY_CHILD_CLASS
RSD_DEFAULT_CONFIG_WRITE_TABLE_BASE_CLASSES
RSD_DEFAULT_CONFIG_WRITE_TABLE_CHILD_CLASSES
RSD_DEFAULT_CONFIG_WRITE_TEMPLATE_CREATE
RSD_DEFAULT_CONFIG_WRITE_TEMPLATE_DELETE
RSD_DEFAULT_CONFIG_WRITE_TEMPLATE_GET
RSD_DEFAULT_CONFIG_WRITE_TEMPLATE_GETONE
RSD_DEFAULT_CONFIG_WRITE_TEMPLATE_GETRECORD
RSD_DEFAULT_CONFIG_WRITE_TEMPLATE_SEARCH
RSD_DEFAULT_CONFIG_WRITE_TEMPLATE_SEARCHRECORD
RSD_DEFAULT_CONFIG_WRITE_TEMPLATE_UPDATE
RSD_HYPOTHETICAL
RSD_HYPOTHETICAL in RSDTable.php
Some generated methods accept this constant as argument. If passed the method will not perform the actual operation but will only check if the user has the right to do so. If she has the method will return true. Otherwise it will return a permission denied error.
RSD_NO_LIVEUSER_RIGHT_CHECK
Pass this constant to the methods select, update, create, delete and all selectIncluding* methods to prevent LiveUser from checking for any rights.
RSD_RSDENGINE_DOCUMENTATION_URL
The URL where the user level documentation of the RSDEngine can be found. This URL is used to display help information.
RSError
RSError::RSError() in RSError.php
Constructor method.
RSError
RSError in RSError.php
An extended version of PEAR_Error.
RSErrorManager
RSErrorManager::RSErrorManager() in RSErrorManager.php
Constructor method.
RSErrorManager
RSErrorManager in RSErrorManager.php
Implementation of an Error Management System.
RSERROR_ARRAY_ZERO_LENGTH
RSERROR_ARRAY_ZERO_LENGTH in RSErrorCodes.php
The array contained no elements
RSERROR_FATAL_ERROR
RSERROR_FATAL_ERROR in RSErrorCodes.php
Indicates the the error is fatal.
RSERROR_FILE_NOT_FOUND
RSERROR_FILE_NOT_FOUND in RSErrorCodes.php
File not found.
RSERROR_INVALID
RSERROR_INVALID in RSErrorCodes.php
A general error indicating that the variable was not in the correct format.
RSERROR_INVALID_FOREIGN_KEY
RSERROR_INVALID_FOREIGN_KEY in RSErrorCodes.php
Is was tried to build a reference to a non-existing primary key.
RSERROR_NOT_ARRAY
RSERROR_NOT_ARRAY in RSErrorCodes.php
The value was not an array.
RSERROR_NOT_BOOLEAN
RSERROR_NOT_BOOLEAN in RSErrorCodes.php
The value was not a boolean.
RSERROR_NOT_INTEGER
RSERROR_NOT_INTEGER in RSErrorCodes.php
The value was not an integer.
RSERROR_NOT_OBJECT
RSERROR_NOT_OBJECT in RSErrorCodes.php
The value was not an object.
RSERROR_NOT_SET
RSERROR_NOT_SET in RSErrorCodes.php
The variable was not set.
RSERROR_NOT_STRING
RSERROR_NOT_STRING in RSErrorCodes.php
The value was not a string.
RSERROR_NO_SUCH_CLASS
RSERROR_NO_SUCH_CLASS in RSErrorCodes.php
It was tried to instantinate a non-existing class.
RSERROR_NO_SUCH_FUNCTION
RSERROR_NO_SUCH_FUNCTION in RSErrorCodes.php
It was tried to call a non-existing method.
RSERROR_NO_SUCH_METHOD
RSERROR_NO_SUCH_METHOD in RSErrorCodes.php
It was tried to call a non-existing method.
RSERROR_NO_SUCH_RECORD
RSERROR_NO_SUCH_RECORD in RSErrorCodes.php
It was tried to access a non-existing record.
RSERROR_PERMISSION_DENIED
RSERROR_PERMISSION_DENIED in RSErrorCodes.php
A permission violation occurred.
RSERROR_TOO_HIGH
RSERROR_TOO_HIGH in RSErrorCodes.php
The integer variable was too high.
RSERROR_TOO_LONG
RSERROR_TOO_LONG in RSErrorCodes.php
The string variable was too long.
RSERROR_TOO_LOW
RSERROR_TOO_LOW in RSErrorCodes.php
The integer variable was too low.
RSERROR_TOO_SHORT
RSERROR_TOO_SHORT in RSErrorCodes.php
The string variabe was too short.
RSERROR_UNKNOWN
RSERROR_UNKNOWN in RSErrorCodes.php
An unknown error.
RSERROR_WRONG_TYPE
RSERROR_WRONG_TYPE in RSErrorCodes.php
The variable did not have the correct type.
RSIO
RSIO in RSIO.php
A Utility Class for IO Operations.
RSIO_ERROR_CANNOT_READ_FILE
The error code that will be returned if getFileContents fails.
RSIO_NO_OVERWRITE
RSIO_NO_OVERWRITE in RSIO.php
To be passed to some of the methods of RSIO if you not wish overwriting.
RSIO_OVERWRITE
RSIO_OVERWRITE in RSIO.php
To be passed to some of the methods of RSIO if you wish overwriting.
RSPrimitiveComparator
RSPrimitiveComparator in RSArrayUtil.php
A Comparator for comparing primitives.
RSStringUtil
RSStringUtil in RSStringUtil.php
A Utility Class for Manipulating Strings.
RSToStringComparator
RSToStringComparator in RSArrayUtil.php
A Comparator for comparing objects by the return values of their toString methods.
RSValidation
RSValidation in RSValidation.php
A Utility Class for Validating all kinds of data.
s
top
$selectIncludingMethod
$selectIncludingMethod
$selectIncludingMethod
$selectIncludingMethodName
The name of the selectIncluding* method used to perform the join over $tableName. This property is only used if $this->type is 'table.column'.
$selectMethodName
The name of the selectIncluding* method used to get the records.
$separateRecordTemplate
Whether to use a seperate template to display the records in the get/search template.
$sequenceName
RSDEngineColumn::$sequenceName in RSDEngineDBTable.php
The name of the sequence from which to fetch the next id. Pass an empty string if no sequence should be used. Is set in the construtor method.
$showKeyColumns
RSDEngineFileOption::$showKeyColumns in RSDEngineDBTable.php
Whether to display the columns defined as primary or foreing key in the templates.
$smarty
RSDApplication::$smarty in RSDApplication.php
An instance of Smarty.
$sql
RSDEngineDB::$sql in RSDEngineDB.php
The Database schema in SQL DDL. Gets set inside the constructor method.
settings.php
settings.php in settings.php
saveConfig
RSDEngine::saveConfig() in RSDEngine.php
Saves the configuration information for this version.
saveConfig
EVSVersion::saveConfig() in EVSVersion.php
Saves the configuration information of this version.
select
RSDTable::select() in RSDTable.php
Returns a two-demensional Array of records. One record is hold by one array.
selectIncludingAll
This method should be overwritten in a child class. It should perform a join over all related tables.
selectIncludingDirectlyRelated
This method should be overwritten in a child class. It should perform a join over all tables that referenced by a foreign key define in this table.
setForeignKeyTarget
Sets the property foreignKeyTarget makes this column a foreign key.
setIndent
RSDEngineMethod::setIndent() in RSDEngineDBTable.php
Sets the property indent.
setIsValidFileOptions
Sets the validation options for this column that was defined as isValid:file.
setKey
RSDEngineColumn::setKey() in RSDEngineDBTable.php
Sets the properties isPrimaryKey, isForeignKey and isUndefinedKey based on the string passed as argument.
setLiveUserOptions
RSDLiveUserApplication::setLiveUserOptions() in RSDLiveUserApplication.php
Sets the property _liveUserOptions.
setOutputDirectory
Sets the output direcotry.
setPreviousVersion
Saves the version number of the previous release in the file VERSION_ROOT/PREVIOUS_RELEASE.
setRelatedClasses
Sets the related classes.
setRelatedFiles
Sets the related files.
setRelatedFunctions
Sets the related functions.
setWrite
RSDEngineClass::setWrite() in RSDEngineClass.php
Sets the properties preventWriting and overwriteExisting based on the string passed as argument
setWrite
RSDEngineFile::setWrite() in RSDEngineFile.php
Sets the properties preventWriting and overwriteExisting based on the string passed as argument
startsWith
RSValidation::startsWith() in RSValidation.php
Returns true if the string passed as first argument starts with the string passed as second argument. Otherwise false is returned.
t
top
$table
RSDEngineColumn::$table in RSDEngineDBTable.php
The name of the table that contains this column. Is set in the construtor method.
$tableName
RSDEngineLiveUserRight::$tableName in RSDEngineDBTable.php
The name of the table that contains $columnName. This property is only used if $this->type is 'table.column'.
$tableName
$tableName
$tableName
$tableOptions
RSDEngineDBTable::$tableOptions in RSDEngineDBTable.php
An array holding all table options. These are defined between the table name and the opening brace.
$tablePrefix
RSDEngineDB::$tablePrefix in RSDEngineDB.php
The table prefix used for all tables in $this->sql. Often t_ or an shorthand for the project name of the form prj_. Providing a table prefix makes the generated code more readable because the prefix can be remove where appropriate. Set in the construtor method.
$tablePrefix
RSDEngineDBTable::$tablePrefix in RSDEngineDBTable.php
The prefix of this table. Often t_ or an shorthand for the project name of the form prj_. Providing a table prefix makes the generated code more readable because the prefix can be remove where appropriate. Set in the construtor method.
$tables
RSDEngineDB::$tables in RSDEngineDB.php
An array containing instances of RSDEngineDBTable.
$to
RSDEngineRelation::$to in RSDEngineDBTable.php
$toColumn
RSDEngineRelation::$toColumn in RSDEngineDBTable.php
$toTable
RSDEngineRelation::$toTable in RSDEngineDBTable.php
$type
RSDEngineLiveUserRight::$type in RSDEngineDBTable.php
The type of LiveUserTableOption. Can be one of the following strings: 'column', 'table.column', 'SQL_QUERY' or 'PHP_CODE'.
$type
$type
RSDEngineFileOption::$type in RSDEngineDBTable.php
The type of the file. Possible values are 'controller', 'view', 'childClass', 'baseClass', 'all'
$type
$type
tableExists
RSDEngineDB::tableExists() in RSDEngineDB.php
Returns true if the table specified by it's name passed as first argument exists.
toRSDFile
RSDEngineClass::toRSDFile() in RSDEngineClass.php
Returns a new instance of RSDEngineFile.
toRSDFile
RSDEngineFunction::toRSDFile() in RSDEngineFunction.php
Returns a new instance of RSDEngineFile.
toString
RSDEngineRelation::toString() in RSDEngineDBTable.php
Returns a literal representation of this relation.
toString
RSDEngineMethod::toString() in RSDEngineDBTable.php
Returns the method declaration.
toString
RSError::toString() in RSError.php
Returns a literal representation of this error.
toString
Return a literal representation of this instance.
toString
RSDEngineDBTable::toString() in RSDEngineDBTable.php
Returns a literal representation of this RSDEngineDBTable instance.
toString
RSDEngineColumn::toString() in RSDEngineDBTable.php
Returns a literal representation of this column.
toString
Return a literal representation of this instance.
toString
RSArrayUtil::toString() in RSArrayUtil.php
Returns a literal representation of an array.
toString
RSDEngineFileOption::toString() in RSDEngineDBTable.php
Return a literal representation of this instance.
toString
Return a literal representation of this instance.
toString
RSDEngineLiveUserRight::toString() in RSDEngineDBTable.php
Return a literal representation of this instance.
u
top
$unique
RSDEngineColumn::$unique in RSDEngineDBTable.php
Indicates whether the values for this column must be unique. Is set in the construtor method.
updateProject.php
updateProject.php in updateProject.php
updateProject.php
updateProject.php in updateProject.php
undo
MagicQuotesUtil::undo() in MagicQuotesUtil.php
Undoes all magic quoting performed by the PHP Engine.
update
RSDTable::update() in RSDTable.php
Updates records in this table.
updateChangelog
Writes the result of $this->getChangeLog() to the file VERSION_ROOT/code/CHANGELOG
updateRow
RSDTable::updateRow() in RSDTable.php
updateVersionTags
Updates all @version tags found in any file under $this->versionDirectory.
userIsInGroup
RSDLiveUserApplication::userIsInGroup() in RSDLiveUserApplication.php
v
top
$version
EVSVersion::$version in EVSVersion.php
The version number or an empty string if the project was not created with versioning support. Gets set inside the costructor method.
$versioning
EVSProject::$versioning in EVSProject.php
If this project supports versioning project or not. Gets set inside the costructor method.
$versions
EVSProject::$versions in EVSProject.php
An array containing all versions of the project as instances of EVSVersion (sorted by version number).
viewChangelog.php
viewChangelog.php in viewChangelog.php
viewChangelog.php
viewChangelog.php in viewChangelog.php
w
top
$write
RSDEngineFileOption::$write in RSDEngineDBTable.php
Whether to write (create) this file if non-existing, do not even try to create it or to overwrite it if existing. Valid values are 'true', 'false', 'overwrite'.
writeToDirectory
Writes the file to a directory.
_
top
$_afterDelete
RSDEngineDBTable::$_afterDelete in RSDEngineDBTable.php
PHP Code to be executed after a delete operation.
$_afterInsert
RSDEngineDBTable::$_afterInsert in RSDEngineDBTable.php
PHP Code to be executed after an insert operation.
$_afterUpdate
RSDEngineDBTable::$_afterUpdate in RSDEngineDBTable.php
PHP Code to be executed after an update operation.
$_beforeDelete
RSDEngineDBTable::$_beforeDelete in RSDEngineDBTable.php
PHP Code to be executed before a delete operation.
$_beforeInsert
RSDEngineDBTable::$_beforeInsert in RSDEngineDBTable.php
PHP Code to be executed before an insert operation.
$_beforeUpdate
RSDEngineDBTable::$_beforeUpdate in RSDEngineDBTable.php
PHP Code to be executed before an update operation.
$_currentOperation
The name of the current operation.
$_error
RSDColumnValue::$_error in RSDTable.php
This is where an error that occures in the constructor is stored.
$_errors
RSErrorManager::$_errors in RSErrorManager.php
An array holding all errors that occurre - the error stack.
$_excludeSelectMethodPatters
An array of patterns used to exclude selectIncluding* methods.
$_fileOptions
RSDEngineDBTable::$_fileOptions in RSDEngineDBTable.php
An array containing all file table options of this table.
$_ignoreOrder
Whether to ignore the order of the elements. Gets set inside the constructor method.
$_includeSelectMethodPatters
An array of patterns used to include excluded selectIncluding* methods.
$_isValidFileOptions
An associative array holding the validation options for this column.
$_label
RSDEngineDBTable::$_label in RSDEngineDBTable.php
The label to be used for records of this table.
$_liveUserAuthAdmin
RSDLiveUserApplication::$_liveUserAuthAdmin in RSDLiveUserApplication.php
An instance of one of the LiveUser auth admin classes.
$_liveUserOptions
RSDLiveUserApplication::$_liveUserOptions in RSDLiveUserApplication.php
An multidimensional array of configuration options.
$_liveUserPermAdmin
RSDLiveUserApplication::$_liveUserPermAdmin in RSDLiveUserApplication.php
An instance of one of the LiveUser perm admin classes.
$_liveUserRights
RSDEngineDBTable::$_liveUserRights in RSDEngineDBTable.php
An array containing all LiveUser table options of this table.
$_prepareString
The prepare string.
$_root
EVS::$_root in EVS.php
The path where EVS is installed.
$_selectIncludingMethodRelations
An array that holds each set of relations that was used to build a selectIncluding method.
$_subComparator
Holds the boolean value false or an instance of the cass RSComperator or a class that extends it. Gets initialized in the construtor method.
$_tables
RSDApplication::$_tables in RSDApplication.php
Associative array that holds handels to all RSDTable object created. The table name is used as the key.
$_uniqueConstraints
An array of all unique constraints of this table. Each constraint is represented by an array holding all column names that build that constraint. New unique constraints are added by calling the method _addUniqueConstraint.
$_value
RSDColumnValue::$_value in RSDTable.php
Depending on $this->_prepareString $this->_value will be treaded differently.
$_warnings
RSDEngine::$_warnings in RSDEngine.php
The number of warnings that occurred.
_addColumn
RSDEngineDBTable::_addColumn() in RSDEngineDBTable.php
Adds an instance of RSDEngineColumn to the array $this->columns.
_addRelation
RSDEngineDBTable::_addRelation() in RSDEngineDBTable.php
Adds an instance of RSDRelation to the array $this->relations.
_addTable
RSDEngineDB::_addTable() in RSDEngineDB.php
Adds an instance of RSDEngineDBTable to the internal stack of RSDEngineDBTable object.
_addUniqueConstraint
Adds an array holding representing a unique constraint to the array $this->_uniqueConstraints.
_authorsToDocBook
Returns a string containing DocBook Tags for the authors passed as argument.
_checkColumnDuplicates
Produces warnings for columns that are not unique.
_checkRelations
Checks if all relations in the array passed as argument have existing starting points and destinations.
_collectRelations
Copies all RSDRelation objects hold by the RSDEngineDBTable instances in RSDEngineDBTable::realations to RSDEngine::relations.
_connect
Connect to database by using the given DSN string
_copySkelDir
RSDEngine::_copySkelDir() in RSDEngine.php
Copies a directory including all subdirectories and files.
_createCanDelete
RSDEngineDBTable::_createCanDelete() in RSDEngineDBTable.php
Creates the method 'canDelete';
_createCanSelect
RSDEngineDBTable::_createCanSelect() in RSDEngineDBTable.php
Creates the method 'canDelete';
_createCanUpdate
RSDEngineDBTable::_createCanUpdate() in RSDEngineDBTable.php
Creates the method 'canUpdate';
_createCanUpdateLiveUserRightMethods
Calls generateUpdateLiveUserRightMethods and generateCanUpdateLiveUserRightMethods on all RSDEngineColumn objects stored in $this->columns.
_createCheckUniqueConstraintsMethod
Creates the method 'checkUniqueConstrains'.
_createDeleteByMethods
Creates a deleteByCOLUMNNAME method for each column that is a primary or a foreign key.
_createDeleteMethod
Creates the method 'delete';
_createGetByMethods
Creates a getByCOLUMNNAME method for each column that is a primary or a foreign key.
_createGetIsValidMethodNameMethod
Creates just one method: getIsValidMethodName.
_createGetLabelColumnMethod
Creates just one method: getLabelColumn.
_createGetNextMethods
Calls generateGetNextMethod on all RSDEngineColumn objects stored in $this->columns.
_createGetSmartyHTMLOptionsArrayMethod
Creates just one method: getSmartyHTMLOptionsArray.
_createGetStoredMethods
Calls generateGetStoredMethod on all RSDEngineColumn objects stored in $this->columns.
_createInsertMethod
Creates the method 'insert';
_createIsValidMethods
Calls generateIsValidMethod on all RSDEngineColumn objects stored in $this->columns.
_createJoinFunctions
Calls createJoin _createJoinFunctionsForTable for each instance of RSDEngineDBTable.
_createJoinFunctionsForTable
Calls RSDEngineDBTable::createSelectIncludingMethod for each combination of relations valid for a table.
_createKeyMethods
Calls the method RSDEngineDBTable::createKeyMethods for all RSDEngineDBTable objects.
_createParseOptionsMethod
Creates the method '_parseOptions'.
_createRemoveStoredMethods
Calls generateRemoveStoredMethod on all RSDEngineColumn objects stored in $this->columns.
_createSelectMethod
Creates the method 'select';
_createStoreUploadedMethods
Calls generateStoreUploadedMethod on all RSDEngineColumn objects stored in $this->columns.
_createUpdateByMethods
Creates a updateByCOLUMNNAME method for each column that is a primary or a foreign key.
_createUpdateMethod
Creates the method 'update';
_done
RSDEngine::_done() in RSDEngine.php
_extractMajorVersion
Returns the major version number from the version number passed as argument.
_extractMinorVersion
Returns the minor version number from the version number passed as argument.
_extractPatchlevelVersion
Returns the patchlevel version number from the version number passed as argument.
_generateAssignment
Generates an SQL-assignment of a value to a column usable in a where clause.
_generateNameForCreateSelectIncludingMethod
Returns a name for a selectIncluding* method which is determinated by the relations passed as argument.
_getCommaSeperatedListOfColumnNames
Returns a string with all column names seperated by ", ".
_getCommaSeperatedListOfColumnNamesForVariableNames
Returns a string with all column names formatted for use as identifyers and prefixd with '$', seperated by ', ' and optionally quoted.
_getConstructorMethod
Creates just one method: the constructor.
_getFileOption
RSDEngineDBTable::_getFileOption() in RSDEngineDBTable.php
Returns the requested RSDEngineFileOption instance or the boolean value false if non-existing.
_getFileOptionDefaultProperty
_getRelationsByFromTable
Returns an Array containing all relations that have the table specified by the first argument as starting point.
_getRelationsRelatedToTable
Returns an Array or relations that start from the table $tableName or from the tables these relations point to.
_getSelectIncludingMethodName
Returns the name of the selectIncluding method that performs a join at least over all tables saved in $tableNames.
_isValidRelationCombination
Returns true if the combination of relations passed as array as second argument is valid for the table name passed as first argument.
_loadVersions
EVSProject::_loadVersions() in EVSProject.php
Fills the arrays $this->versions and $this->releases with instances of EVSVersion.
_log
RSDEngine::_log() in RSDEngine.php
Logs the message passed as argument.
_parse
RSDEngineDBTable::_parse() in RSDEngineDBTable.php
Parses the SQL DDL stored in $this->contents.
_parse
RSDEngineDB::_parse() in RSDEngineDB.php
Parses the provided SQL DDL stored in the property $this->sql and generates a RSDEngineDBTable object for each table, stores it in $this->tables.
_parseAfterDeleteTableOption
Parses the afterDelete table option saved in $this->tableOptions.
_parseAfterInsertTableOption
Parses the afterInsert table option saved in $this->tableOptions.
_parseAfterUpdateTableOption
Parses the afterUpdate table option saved in $this->tableOptions.
_parseBeforeDeleteTableOption
Parses the beforeDelete table option saved in $this->tableOptions.
_parseBeforeInsertTableOption
Parses the beforeInsert table option saved in $this->tableOptions.
_parseBeforeUpdateTableOption
Parses the beforeUpdate table option saved in $this->tableOptions.
_parseBodyLine
RSDEngineDBTable::_parseBodyLine() in RSDEngineDBTable.php
Parses on line of SQL-Code.
_parseExcludeSelectMethodTableOptions
Parses the excludeSelectMethod table options saved in $this->tableOptions.
_parseFileTableOptions
Parses the file table options saved in $this->tableOptions.
_parseIncludeSelectMethodTableOptions
Parses the includeSelectMethod table options saved in $this->tableOptions.
_parseLabelTableOption
Parses the file table options saved in $this->tableOptions.
_parseLiveUserRightTableOptions
Parses the LiveUserEdit table options saved in $this->tableOptions.
_propertyToString
_removeFromArray
Removes all magic quotes from the array passed by reference.
_removeTablePrefix
Strips the table prefix from a table name and returns it.
_setDefaults
Set some default options. RSDB adds the options activatedcol and persistent!
_setIsKeyForAllColumns
Set foreign/primary key related properties for all RSDEngineDBTable objects.
_setLiveUserRightSelectIncludingMethodName
Sets the property selectIncludingMethod for all LiveUserRight instances.
_versionSortCompare
Method used to sort the versions of the project by release number.
a b c d e f g h i l m n o p q r s t u v w _