Detailed Description
Class processes controls macro.
- Author
- Dodonov A.A.
Definition at line 26 of file href_markup.php.
Constructor & Destructor Documentation
Constructor.
- Author
- Dodonov A.A.
Definition at line 52 of file href_markup.php.
{
try
{
$this->CachedMultyFS =
get_package(
'cached_multy_fs' ,
'last' , __FILE__ );
$this->Security =
get_package(
'security' ,
'last' , __FILE__ );
$this->String =
get_package(
'string' ,
'last' , __FILE__ );
}
catch( Exception $e )
{
}
}
Member Function Documentation
| compile_href |
( |
& |
$Settings | ) |
|
Function compiles macro 'href'.
- Parameters
-
- Returns
- HTML code.
- Exceptions
-
| Exception | - An exception of this type is thrown. |
- Author
- Dodonov A.A.
Definition at line 88 of file href_markup.php.
{
try
{
$Settings->set_undefined( 'waiting' , 'false' );
$Settings->set_undefined( 'text' , 'no_text' );
$Settings->set_undefined( 'raw_text' , '' );
$Settings->set_undefined( 'confirm_string' , 'no_text' );
$FileName = $Settings->get_setting( 'tpl' , 'std' );
$Code = $this->CachedMultyFS->get_template( __FILE__ , $FileName.'.tpl' );
return( $this->String->print_record( $Code , $Settings->get_raw_settings() ) );
}
catch( Exception $e )
{
}
}
| compile_submit |
( |
& |
$Settings | ) |
|
Function compiles macro 'submit'.
- Parameters
-
- Returns
- HTML code.
- Exceptions
-
| Exception | - An exception of this type is thrown. |
- Author
- Dodonov A.A.
Definition at line 130 of file href_markup.php.
{
try
{
$Settings->set_undefined( 'text' , 'submit' );
$Settings->set_undefined( 'waiting' , 'false' );
$Settings->set_undefined( 'text' , 'no_text' );
$Settings->set_undefined( 'raw_text' , '' );
$Settings->set_undefined( 'confirm_string' , 'no_text' );
$Code = $this->CachedMultyFS->get_template( __FILE__ , 'submit0.tpl' );
return( $this->String->print_record( $Code , $Settings->get_raw_settings() ) );
}
catch( Exception $e )
{
}
}
Field Documentation
The documentation for this class was generated from the following file: