Detailed Description
Class for rapid controllers and viewes development.
- Author
- Dodonov A.A.
Definition at line 26 of file exact_config.php.
Constructor & Destructor Documentation
Constructor.
- Exceptions
-
| Exception | An exception of this type is thrown. |
- Author
- Dodonov A.A.
Definition at line 54 of file exact_config.php.
{
try
{
$this->Trace =
get_package(
'trace' ,
'last' , __FILE__ );
}
catch( Exception $e )
{
}
}
Member Function Documentation
Method converts object to string.
- Returns
- string with the object's description.
- Exceptions
-
| Exception | An exception of this type is thrown. |
- Author
- Dodonov A.A.
Definition at line 200 of file exact_config.php.
{
try
{
return( serialize( $this->Config ) );
}
catch( Exception $e )
{
}
}
| compile_exact_config |
( |
& |
$Options | ) |
|
Method processes config.
- Parameters
-
- Returns
- Result.
- Exceptions
-
| Exception | - An exception of this type is thrown. |
- Author
- Dodonov A.A.
Definition at line 88 of file exact_config.php.
{
try
{
$PackageName = $Options->get_setting( 'package_name' , 0 );
$PackageVersion = $Options->get_setting( 'package_version' , 'last' );
$ConfigFileName = $Options->get_setting( 'config' );
$ContextSet->add_context( dirname( $PackagePath )."/conf/$ConfigFileName" );
$Object =
get_package( $PackageName , $PackageVersion , __FILE__ );
$ContextSet->execute( $Options , $Object , __FILE__ );
return(
get_field( $Object ,
'Output' ,
'' ) );
}
catch( Exception $e )
{
}
}
Method processes component.
- Parameters
-
- Exceptions
-
| Exception | - An exception of this type is thrown. |
- Author
- Dodonov A.A.
Definition at line 130 of file exact_config.php.
{
try
{
if( intval( $Options->get_setting( 'compile_exact_config' , 0 ) ) )
{
}
}
catch( Exception $e )
{
}
}
Method draws component.
- Parameters
-
- Returns
- HTML code of the component.
- Exceptions
-
| Exception | - An exception of this type is thrown. |
- Author
- Dodonov A.A.
Definition at line 167 of file exact_config.php.
{
try
{
if( intval( $Options->get_setting( 'compile_exact_config' , 0 ) ) )
{
}
}
catch( Exception $e )
{
}
}
Field Documentation
The documentation for this class was generated from the following file: