Home
last modified time | relevance | path

Searched refs:attribute_string (Results 1 – 2 of 2) sorted by relevance

/plugin/odt/ODT/css/
H A Dcssimportnew.php31 public function __construct($attribute_string) { argument
32 $attribute_string = trim ($attribute_string, '[] ');
33 $found = strpos ($attribute_string, '|');
35 $attribute_string [$found+1] == '=') {
36 $found = strpos ($attribute_string, '|', $found+1);
42 $attribute_string = substr ($attribute_string, $found + 1);
44 $found = strpos ($attribute_string, '=');
46 $this->attribute = $attribute_string;
48 if (ctype_alpha($attribute_string [$found-1])) {
51 $this->value = substr($attribute_string, $found + 1);
[all …]
/plugin/scrape/
H A DHTMLPurifier.standalone.php