public
is_installed( ICanBoogie\Errors$errors )
: mixed
Checks if the module is installed.
Checks if the module is installed.
Parameters
$errors
Error collection.
Returns
mixed
true if the module is installed, false if the module
(or parts of) is not installed, null if the module has no installation.
public
install( ICanBoogie\Errors$errors )
: boolean|null
Install the module.
Install the module.
If the module has models they are installed.
Parameters
$errors
Error collection.
Returns
boolean|null
true if the module has successfully been installed, false if the
module (or parts of the module) fails to install or null if the module has
no installation process.
public
uninstall( void )
: boolean|null
Uninstall the module.
Uninstall the module.
Basically it uninstall the models installed by the module.
Returns
boolean|null
true if the module was successfully uninstalled. false if the module
(or parts of the module) failed to uninstall. null if there is no uninstall process.
public
model( string$which = 'primary' )
: ICanBoogie\ActiveRecord\Model
Get a model from the module.
Get a model from the module.
If the model has not been created yet, it is created on the fly.
Parameters
$which
The identifier of the model to get.
Returns
ICanBoogie\ActiveRecord\Model The requested model.
Throws
ICanBoogie\ActiveRecord\ModelNotDefined when the model is not defined by the module.
RuntimeException when the class of the model does not exists.
protected
resolve_model_tags( $tags, $which )
public
getBlock( string$name )
: mixed
Get a block.
Get a block.
Parameters
$name
The name of the block to get.
Returns
mixed
Depends on the implementation. Should return a string or an object
implementing __toString.
Throws
RuntimeException if the block is not defined.
Constants summary
PERMISSION_NONE: integer
0
PERMISSION_ACCESS: integer
1
PERMISSION_CREATE: integer
2
PERMISSION_MAINTAIN: integer
3
PERMISSION_MANAGE: integer
4
PERMISSION_ADMINISTER: integer
5
OPERATION_SAVE: string
Defines the name of the operation used to save the records of the module.
Defines the name of the operation used to save the records of the module.
'save'
OPERATION_DELETE: string
Defines the name of the operation used to delete the records of the module.
Defines the name of the operation used to delete the records of the module.
'delete'
Properties summary
protected
$descriptor
: array
The descriptor of the module.
The descriptor of the module.
Magic properties
public read-only
$descriptor
: array
The descriptor of the module.
public read-only
$flat_id
: string
Underscored identifier.
public read-only
$id
: string
The identifier of the module, defined by ICanBoogie\Descriptor::ID.
public read-only
$model
: ICanBoogie\ActiveRecord\Model