/**
  * Get the properties of our class as strings
  *
  * @return array
  */
 function getProps()
 {
     parent::getProps();
     $props["data"] = "str xml|data enum|B64|TXT";
     return $props;
 }
Esempio n. 2
0
 /**
  * Get the properties of our class as strings
  *
  * @return array
  */
 function getProps()
 {
     parent::getProps();
     $props["data"] = "base64 xml|data";
     return $props;
 }
Esempio n. 3
0
 /**
  * Get the properties of our class as strings
  *
  * @return array
  */
 function getProps()
 {
     $props = parent::getProps();
     $props["data"] = "str xml|data pattern|[0-9]{1,8}|([0-9]{9,14}|[0-9]{14,14}\\.[0-9]+)([+\\-][0-9]{1,4})?";
     return $props;
 }
Esempio n. 4
0
 /**
  * Get the properties of our class as strings
  *
  * @return array
  */
 function getProps()
 {
     $props = parent::getProps();
     $props["data"] = "str xml|data pattern|[A-Za-z][A-Za-z0-9\\-]*";
     return $props;
 }
Esempio n. 5
0
 /**
  * Get the properties of our class as strings
  *
  * @return array
  */
 function getProps()
 {
     $props = parent::getProps();
     $props["data"] = "str xml|data pattern|" . $this->getPropsUnion();
     return $props;
 }
Esempio n. 6
0
 /**
  * Get the properties of our class as strings
  *
  * @return array
  */
 function getProps()
 {
     parent::getProps();
     $props["data"] = "float xml|data";
     return $props;
 }
Esempio n. 7
0
 /**
  * Get the properties of our class as strings
  *
  * @return array
  */
 function getProps()
 {
     $props = parent::getProps();
     $props["data"] = "str xml|data pattern|[0-9a-zA-Z]{8}-[0-9a-zA-Z]{4}-[0-9a-zA-Z]{4}-[0-9a-zA-Z]{4}-[0-9a-zA-Z]{12}";
     return $props;
 }
Esempio n. 8
0
 /**
  * Get the properties of our class as strings
  *
  * @return array
  */
 function getProps()
 {
     $props = parent::getProps();
     $props["data"] = "str xml|data pattern|[0-2](\\.(0|[1-9][0-9]*))*";
     return $props;
 }
 /**
  * Get the properties of our class as strings
  *
  * @return array
  */
 function getProps()
 {
     parent::getProps();
     $props["data"] = "float xml|data min|0.0 max|1.0";
     return $props;
 }
Esempio n. 10
0
 /**
  * Get the properties of our class as strings
  *
  * @return array
  */
 function getProps()
 {
     parent::getProps();
     $props["data"] = "integer xml|data";
     return $props;
 }
Esempio n. 11
0
 /**
  * Get the properties of our class as strings
  *
  * @return array
  */
 function getProps()
 {
     parent::getProps();
     $props["data"] = "booleen xml|data pattern|true|false";
     return $props;
 }
Esempio n. 12
0
 /**
  * Get the properties of our class as strings
  *
  * @return array
  */
 function getProps()
 {
     $props = parent::getProps();
     $props["data"] = "uri xml|data";
     return $props;
 }
Esempio n. 13
0
 /**
  * Get the properties of our class as strings
  *
  * @return array
  */
 function getProps()
 {
     parent::getProps();
     $props["data"] = "str xml|data minlength|1";
     return $props;
 }