/**
  * @see parent::getProps()
  */
 function getProps()
 {
     $props = parent::getProps();
     $props["module"] = "str notNull";
     $props["action"] = "str notNull";
     return $props;
 }
 /**
  * @see parent::getSpec()
  */
 function getProps()
 {
     $props = parent::getProps();
     $props["salle_id"] = "ref class|CSalle notNull";
     $props["date"] = "date notNull";
     $props["status"] = "enum list|mined|remined|postmined";
     return $props;
 }
Esempio n. 3
0
 /**
  * Get the properties of our class as strings
  *
  * @return array
  */
 function getProps()
 {
     $props = parent::getProps();
     $props["object_class"] = "str notNull maxLength|50";
     $props["object_id"] = "ref class|CMbObject meta|object_class notNull unlink";
     $props["type"] = "enum list|create|store|delete|merge default|create";
     $props["date"] = "dateTime notNull";
     return $props;
 }
Esempio n. 4
0
 /**
  * @see parent::getSpec()
  */
 function getProps()
 {
     $props = parent::getProps();
     $props["operation_id"] = "ref class|COperation notNull";
     $props["date"] = "date notNull";
     $props["remined"] = "bool notNull default|0";
     $props["postmined"] = "bool notNull default|0";
     return $props;
 }
Esempio n. 5
0
 /**
  * @see parent::getProps()
  */
 function getProps()
 {
     $specs = parent::getProps();
     foreach (CMbFieldSpecFact::$classes as $spec => $class) {
         $specs[$spec] = $spec;
     }
     $specs['enum'] .= ' list|1|2|3|4';
     $specs['set'] .= ' list|1|2|3|4';
     $specs['ref'] .= ' class|CMbObject';
     return $specs;
 }
 /**
  * @see parent::getProps()
  */
 function getProps()
 {
     $props = parent::getProps();
     $props["user_id"] = "ref class|CUser unlink";
     $props["server_ip"] = "str";
     $props["datetime"] = "dateTime notNull";
     $props["request_uid"] = "str";
     $props["error_type"] = "enum list|" . implode("|", CError::$_types);
     $props["text"] = "text";
     $props["file_name"] = "str";
     $props["line_number"] = "num";
     $props["stacktrace_id"] = "ref class|CErrorLogData";
     $props["param_GET_id"] = "ref class|CErrorLogData";
     $props["param_POST_id"] = "ref class|CErrorLogData";
     $props["session_data_id"] = "ref class|CErrorLogData";
     $props["signature_hash"] = "str";
     $props["debug"] = "bool default|0";
     $props["_datetime_min"] = "dateTime";
     $props["_datetime_max"] = "dateTime";
     $props["_similar_count"] = "num";
     return $props;
 }