/plugin/html2pdf/html2pdf/html2ps/ |
H A D | css.pseudo.table.border.inc.php | 12 …$this->_defaultValue = BorderPDF::create(array('top' => array('width' => Value::fromString('2px… 15 … 'right' => array('width' => Value::fromString('2px'), 18 … 'bottom' => array('width' => Value::fromString('2px'), 21 … 'left' => array('width' => Value::fromString('2px'),
|
H A D | css.max-height.inc.php | 11 $this->_defaultValue = ValueMaxHeight::fromString("auto"); 41 return ValueMaxHeight::fromString('auto'); 43 return ValueMaxHeight::fromString($value);
|
H A D | css.border.width.inc.php | 54 return Value::fromString('1px'); 56 return Value::fromString('3px'); 58 return Value::fromString('5px'); 60 return Value::fromString($value);
|
H A D | css.border.inc.php | 42 …$this->_defaultValue = BorderPDF::create(array('top' => array('width' => Value::fromString('2px… 45 … 'right' => array('width' => Value::fromString('2px'), 48 … 'bottom' => array('width' => Value::fromString('2px'), 51 … 'left' => array('width' => Value::fromString('2px'),
|
H A D | css.right.inc.php | 9 $this->_autoValue = ValueRight::fromString('auto'); 21 return ValueRight::fromString($value);
|
H A D | css.left.inc.php | 9 $this->_autoValue = ValueLeft::fromString('auto'); 21 return ValueLeft::fromString($value);
|
H A D | css.top.inc.php | 9 $this->_autoValue = ValueTop::fromString('auto'); 29 return ValueTop::fromString($value);
|
H A D | css.bottom.inc.php | 30 $this->_autoValue = ValueBottom::fromString('auto'); 50 return ValueBottom::fromString($value);
|
H A D | css.letter-spacing.inc.php | 10 $this->_default_value = Value::fromString("0"); 28 return Value::fromString($value);
|
H A D | css.word-spacing.inc.php | 10 $this->_default_value = Value::fromString("0"); 28 return Value::fromString($value);
|
H A D | css.height.inc.php | 11 $this->_autoValue = ValueHeight::fromString('auto'); 32 return ValueHeight::fromString($value);
|
H A D | css.min-height.inc.php | 11 $this->_defaultValue = ValueMinHeight::fromString("0px"); 40 return ValueMinHeight::fromString($value);
|
H A D | value.max-height.php | 6 function fromString($value) { function in ValueMaxHeight
|
H A D | value.min-height.php | 6 function fromString($value) { function in ValueMinHeight
|
H A D | value.height.php | 6 function fromString($value) { function in ValueHeight
|
H A D | value.left.php | 6 function fromString($value) { function in ValueLeft
|
H A D | value.bottom.php | 6 function fromString($value) { function in ValueBottom
|
H A D | value.right.php | 6 function fromString($value) { function in ValueRight
|
/plugin/ipban/ip-lib/src/ |
H A D | Factory.php | 25 $result = Address\IPv4::fromString($address, $mayIncludePort); 28 $result = Address\IPv6::fromString($address, $mayIncludePort, $mayIncludeZoneID); 65 $result = Range\Subnet::fromString($range); 68 $result = Range\Pattern::fromString($range); 71 $result = Range\Single::fromString($range);
|
/plugin/ipban/ip-lib/src/Range/ |
H A D | Pattern.php | 68 public static function fromString($range) function in IPLib\\Range\\Pattern 74 … $result = new static(IPv4::fromString('0.0.0.0'), IPv4::fromString('255.255.255.255'), 4); 84 $fromAddress = IPv4::fromString(str_replace('*', '0', $range)); 92 …$result = new static(IPv6::fromString('::'), IPv6::fromString('ffff:ffff:ffff:ffff:ffff:ffff:ffff:… 95 $fromAddress = IPv6::fromString(str_replace('*', '0', $range));
|
/plugin/ipban/ip-lib/src/Address/ |
H A D | IPv4.php | 72 public static function fromString($address, $mayIncludePort = true) function in IPLib\\Address\\IPv4 231 … $exceptions[] = new AssignedRange(Subnet::fromString($exceptionRange), $exceptionType); 234 … $reservedRanges[] = new AssignedRange(Subnet::fromString($range), $data[0], $exceptions); 272 …return IPv6::fromString('2002:'.sprintf('%02x', $myBytes[0]).sprintf('%02x', $myBytes[1]).':'.spri…
|
H A D | IPv6.php | 83 public static function fromString($address, $mayIncludePort = true, $mayIncludeZoneID = true) function in IPLib\\Address\\IPv6 99 $address6 = static::fromString($matches[1].'0:0', false); 101 $address4 = IPv4::fromString($matches[2], false); 380 … $exceptions[] = new AssignedRange(Subnet::fromString($exceptionRange), $exceptionType); 383 … $reservedRanges[] = new AssignedRange(Subnet::fromString($range), $data[0], $exceptions);
|
/plugin/icalevents/ |
H A D | syntax-impl.php | 106 $fromString = $params['from']; 116 $hasRelativeRange = static::isRelativeDateTimeString($fromString) 125 $fromString, 140 $fromString, 152 $from = new DateTime($fromString);
|
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/ |
H A D | InputStream.php | 39 public static function fromString(string $input) : InputStream function in Antlr\\Antlr4\\Runtime\\InputStream 54 return self::fromString($content);
|
/plugin/ipban/ip-lib/ |
H A D | README.md | 49 $address = \IPLib\Address\IPv4::fromString('127.0.0.1'); 55 $address = \IPLib\Address\IPv6::fromString('::1'); 82 $range = \IPLib\Range\Subnet::fromString('127.0.0.1/24'); 83 $range = \IPLib\Range\Subnet::fromString('::1/128'); 89 $range = \IPLib\Range\Pattern::fromString('127.0.0.*'); 90 $range = \IPLib\Range\Pattern::fromString('::*'); 96 $range = \IPLib\Range\Single::fromString('127.0.0.1'); 97 $range = \IPLib\Range\Single::fromString('::1');
|