62 if( $this->AddLimitations ===
'1 = 1' )
64 $this->AddLimitations = $theAddLimitation;
68 throw(
new Exception(
'"AddLimitations" was already set' ) );
107 $Security =
get_package(
'security' ,
'last' , __FILE__ );
108 $Severity = $Security->get( $Severity ,
'integer' );
109 $Title = $Security->get( $Title ,
'command' );
110 $Description = $Security->get( $Description ,
'raw' );
112 $Database =
get_package(
'database' ,
'last' , __FILE__ );
114 'umx_error_log' ,
'severity , title , description , error_date' ,
115 "$Severity , '$Title' , '$Description' , NOW()"
119 catch( Exception $e )
147 $Database =
get_package(
'database' ,
'last' , __FILE__ );
149 $Results = $Database->select(
'*' ,
'umx_error_log' ,
"( $this->AddLimitations ) AND $Condition" );
152 catch( Exception $e )
180 $Database =
get_package(
'database' ,
'last' , __FILE__ );
181 $Security =
get_package(
'security' ,
'last' , __FILE__ );
183 $id = $Security->get( $id ,
'integer' );
184 $Database->delete(
'umx_error_log' ,
"( $this->AddLimitations ) AND id = $id" );
187 catch( Exception $e )