/**
  * Get the properties of our class as strings
  *
  * @return array
  */
 function getProps()
 {
     parent::getProps();
     $props["data"] = "str xml|data enum|B64|TXT";
     return $props;
 }
示例#2
0
 /**
  * Get the properties of our class as strings
  *
  * @return array
  */
 function getProps()
 {
     parent::getProps();
     $props["data"] = "base64 xml|data";
     return $props;
 }
示例#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;
 }
示例#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;
 }
示例#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;
 }
示例#6
0
 /**
  * Get the properties of our class as strings
  *
  * @return array
  */
 function getProps()
 {
     parent::getProps();
     $props["data"] = "float xml|data";
     return $props;
 }
示例#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;
 }
示例#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;
 }
示例#10
0
 /**
  * Get the properties of our class as strings
  *
  * @return array
  */
 function getProps()
 {
     parent::getProps();
     $props["data"] = "integer xml|data";
     return $props;
 }
示例#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;
 }
示例#12
0
 /**
  * Get the properties of our class as strings
  *
  * @return array
  */
 function getProps()
 {
     $props = parent::getProps();
     $props["data"] = "uri xml|data";
     return $props;
 }
示例#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;
 }