public
is_installed( ICanBoogie\ErrorCollection$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\ErrorCollection$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.