Detailed Description
Controller.
- Author
- Dodonov A.A.
Definition at line 26 of file system_structure_controller.php.
Constructor & Destructor Documentation
Constructor.
- Author
- Dodonov A.A.
Definition at line 55 of file system_structure_controller.php.
{
try
{
$this->UserAlgorithms =
get_package(
'user::user_algorithms' ,
'last' , __FILE__ );
$this->PageComposer =
get_package(
'page::page_composer' ,
'last' , __FILE__ );
$this->Security =
get_package(
'security' ,
'last' , __FILE__ );
$this->CachedFS =
get_package(
'cached_multy_fs' ,
'last' , __FILE__ );
$this->String =
get_package(
'string' ,
'last' , __FILE__ );
}
catch( Exception $e )
{
}
}
Member Function Documentation
Function controls component.
- Parameters
-
- Exceptions
-
| Exception | - An exception of this type is thrown. |
- Author
- Dodonov A.A.
Definition at line 170 of file system_structure_controller.php.
{
try
{
$ContextSet->execute( $Options , $this , __FILE__ );
}
catch( Exception $e )
{
}
}
| create |
( |
|
$Params, |
|
|
|
$Options |
|
) |
| |
Function creates record.
- Parameters
-
| $Params | - record creation parameters. |
| $Options | - Settings. |
- Exceptions
-
| Exception | - An exception of this type is thrown. |
- Author
- Dodonov A.A.
Definition at line 136 of file system_structure_controller.php.
{
try
{
$Access =
get_package(
'system_structure::system_structure_access' ,
'last' , __FILE__ );
$Access->create_system_structure(
$Params->system_structure_page , $Params->system_structure_root_page ,
$Params->system_structure_navigation
);
}
catch( Exception $e )
{
}
}
| update |
( |
|
$id, |
|
|
|
$Params, |
|
|
|
$Options |
|
) |
| |
Function updates record.
- Parameters
-
| $id | - id of the updates record. |
| $Params | - record creation parameters. |
| $Options | - Settings. |
- Exceptions
-
| Exception | - An exception of this type is thrown. |
- Author
- Dodonov A.A.
Definition at line 98 of file system_structure_controller.php.
{
try
{
$Access =
get_package(
'system_structure::system_structure_access' ,
'last' , __FILE__ );
$Access->update(
$id , $Params->system_structure_page , $Params->system_structure_root_page ,
$Params->system_structure_navigation
);
}
catch( Exception $e )
{
}
}
Field Documentation
The documentation for this class was generated from the following file: