function AdministratorAlert()
 {
     parent::Event();
     $this->priority = ADMIN_ALERT_MEDIUM_PRIORITY;
     $this->properties = '';
 }
Example #2
0
 /**
  * Constructor 
  * @param string $table name of the table that needs modification events.
  */
 function RecordEvent($table)
 {
     $this->table = $table;
     $this->level = 100;
     $this->addParam("table", "");
     $this->addParam("goto", "");
     $this->addParam("formpage", "");
     $this->addParam("id" . $table, "");
     $this->addParam("primarykey", "");
     $this->addParamToSave("primarykeyvar");
     $this->addParamToSave("primary_key_var");
     $this->addParamToSave("primarykeyvalue");
     parent::Event("mydb.manageRecord");
     if (defined("RADRIA_LOG_RUN_RECORDEVENT")) {
         $this->setLogRun(RADRIA_LOG_RUN_RECORDEVENT);
     }
 }