Home
last modified time | relevance | path

Searched refs:value (Results 126 – 150 of 3912) sorted by relevance

12345678910>>...157

/plugin/combo/vendor/dragonmantank/cron-expression/src/Cron/
H A DDayOfWeekField.php24 public function isSatisfiedBy(DateTime $date, $value) argument
26 if ($value == '?') {
31 $value = $this->convertLiterals($value);
38 if (strpos($value, 'L')) {
39 $weekday = str_replace('7', '0', substr($value, 0, strpos($value, 'L')));
53 if (strpos($value, '#')) {
54 list($weekday, $nth) = explode('#', $value);
63 throw new InvalidArgumentException("Weekday must be a value betwee
120 validate($value) global() argument
[all...]
/plugin/findologicxmlexport/vendor/symfony/yaml/
H A DParser.php125 $value = $this->cleanup($value);
328 $value = (array) $value;
369 if (\is_string($value) && $this->lines[0] === trim($value)) {
646 $value = substr($value, 1, $pos - 2);
648 $value = substr($value, 1);
679 … $quotation = '' !== $value && ('"' === $value[0] || "'" === $value[0]) ? $value[0] : null;
721 …tring($parsedValue) && '"' !== $value[0] && "'" !== $value[0] && '[' !== $value[0] && '{' !== $val…
925 $value = str_replace(["\r\n", "\r"], "\n", $value);
948 $value = preg_replace('#\.\.\.\s*$#', '', $value);
951 return $value;
[all …]
H A DUnescaper.php34 * @param string $value A single quoted string
38 public function unescapeSingleQuotedString(string $value): string argument
40 return str_replace('\'\'', '\'', $value);
46 * @param string $value A double quoted string
50 public function unescapeDoubleQuotedString(string $value): string argument
63 * @param string $value An escaped character
67 private function unescapeCharacter(string $value): string argument
69 switch ($value[1]) {
111 return self::utf8chr(hexdec(substr($value, 2, 2)));
113 return self::utf8chr(hexdec(substr($value, 2, 4)));
[all …]
/plugin/html2pdf/html2pdf/html2ps/
H A Dbox.generic.php77 return $value;
119 if (is_object($value)) {
120 $value =& $value->copy();
140 if (is_object($value)) {
141 $value = $value->copy();
159 if (is_object($value)) {
160 $value = $value->copy();
233 function set_top($value) { argument
234 $this->_top = $value;
238 $this->_left = $value;
[all …]
/plugin/fckg/fckeditor/editor/dialog/fck_link/
H A Dfck_link.js594 GetE('txtUrl').value = sUrl ;
599 GetE('cmbAnchorName').value = GetE('cmbAnchorId').value = sHRef.substr(1) ;
653 GetE('txtUrl').value = sHRef ;
761 var sUrl = GetE('txtUrl').value ;
768 GetE('txtUrl').value = sUrl ;
783 GetE('cmbTarget').value = '' ;
805 if ( GetE('txtPopupLeft').value.length > 0 ) sFeatures += ',left=' + GetE('txtPopupLeft').value ;
806 if ( GetE('txtPopupTop').value.length > 0 ) sFeatures += ',top=' + GetE('txtPopupTop').value ;
884 GetE('txtEMailSubject').value,
885 GetE('txtEMailBody').value ) ;
[all …]
/plugin/struct/helper/
H A Dfield.php43 * Sets the value and validates it
45 * @param mixed $value
46 * @return bool value was set successfully validated
48 protected function setVal($value) argument
51 $value = '';
53 } elseif ($this->replace($value) == $value) {
55 $this->error = !$validator->validateValue($this->column, $value);
63 if ($value === [] || $value
[all...]
/plugin/odt/helper/
H A Dcssimport.php36 protected $value; variable in css_declaration
46 $this->value = trim($value, ';');
158 if ($value [0] == '#' || csscolors::isKnownColorName($value)) {
958 $value = trim ($value);
966 $value = trim($value);
1330 $value = trim($value);
1367 $value = NULL;
1378 return $value;
1392 return $value;
1425 $value = '';
[all …]
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/Xml/Property/
H A DScheduleCalendarTransp.php37 protected $value; variable in Sabre\\CalDAV\\Xml\\Property\\ScheduleCalendarTransp
42 * @param string $value
44 function __construct($value) { argument
46 if ($value !== self::TRANSPARENT && $value !== self::OPAQUE) {
49 $this->value = $value;
60 return $this->value;
85 switch ($this->value) {
121 $value = null;
126 $value = self::OPAQUE;
133 if (is_null($value))
[all …]
/plugin/wysiwyg/fckeditor/editor/dialog/fck_flash/
H A Dfck_flash.js90 GetE('txtAttId').value = oEmbed.id ;
96 GetE('txtAttTitle').value = oEmbed.title ;
115 if ( GetE('txtUrl').value.length == 0 )
150 SetAttribute( e, 'src', GetE('txtUrl').value ) ;
168 e.style.cssText = GetE('txtAttStyle').value ;
183 if ( GetE('txtUrl').value.length > 0 )
195 if ( GetE('txtUrl').value.length == 0 )
220 GetE('txtUrl').value = url ;
223 GetE('txtWidth').value = width ;
226 GetE('txtHeight').value = height ;
[all …]
/plugin/findologicxmlexport/vendor/sebastian/recursion-context/src/
H A DContext.php47 public function add(&$value) argument
49 if (is_array($value)) {
50 return $this->addArray($value);
51 } elseif (is_object($value)) {
52 return $this->addObject($value);
69 public function contains(&$value) argument
71 if (is_array($value)) {
73 } elseif (is_object($value)) {
145 * @param object $value
149 private function containsObject($value) argument
[all …]
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Argument/Token/
H A DArrayEveryEntryToken.php24 private $value; variable in Prophecy\\Argument\\Token\\ArrayEveryEntryToken
27 * @param mixed $value exact value or token
29 public function __construct($value) argument
31 if (!$value instanceof TokenInterface) {
32 $value = new ExactValueToken($value);
35 $this->value = $value;
49 $scores[] = $this->value->scoreArgument($argumentEntry);
72 return sprintf('[%s, ..., %s]', $this->value, $this->value);
80 return $this->value;
H A DArrayEntryToken.php26 private $value; variable in Prophecy\\Argument\\Token\\ArrayEntryToken
30 * @param mixed $value exact value or token
32 public function __construct($key, $value) argument
35 $this->value = $this->wrapIntoExactValueToken($value);
62 $valueScores = array_map(array($this->value,'scoreArgument'), $argument);
63 $scoreEntry = function ($value, $key) {
64 return $value && $key ? min(8, ($key + $value) / 2) : false;
87 return sprintf('[..., %s => %s, ...]', $this->key, $this->value);
107 return $this->value;
116 private function wrapIntoExactValueToken($value) argument
[all …]
/plugin/gtime/gtlib/asn1/x509/
H A DX509Extension.php43 private $value; variable in X509Extension
80 $value = $object->getObjectAt(1);
82 if (!$value instanceof ASN1OctetString) {
86 $this->value = $value->getValue();
99 $value = $object->getObjectAt(2);
101 if (!$value instanceof ASN1OctetString) {
105 $this->value = $value->getValue();
129 $sequence->add(new ASN1OctetString($this->value));
178 return $this->value;
187 public function setValue($value) { argument
[all …]
/plugin/gtime/gtlib/asn1/
H A DASN1ObjectId.php35 protected $value; variable in ASN1ObjectId
45 if (!is_null($value)) {
47 if (strlen($value) == 0) {
65 $this->value = $value;
76 return $this->value;
145 $this->value = '';
182 $this->value .= $byte1;
183 $this->value .= '.';
184 $this->value .= $byte2;
185 $this->value .= '.';
[all …]
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Prophecy/
H A DRevealer.php24 * @param mixed $value
28 public function reveal($value) argument
30 if (is_array($value)) {
31 return array_map(array($this, __FUNCTION__), $value);
34 if (!is_object($value)) {
35 return $value;
38 if ($value instanceof ProphecyInterface) {
39 $value = $value->reveal();
42 return $value;
/plugin/jplayer/vendor/james-heinrich/getid3/getid3/
H A Dmodule.graphic.jpg.php50 foreach ($iptc_values as $key => $value) {
168 foreach ($xmp_raw as $key => $value) {
186 * @param mixed $value
190 public function CastAsAppropriate($value) { argument
191 if (is_array($value)) {
192 return $value;
194 return getid3_lib::DecimalizeFraction($value);
195 } elseif (preg_match('#^[0-9]+$#', $value)) {
196 return getid3_lib::CastAsInt($value);
198 return (float) $value;
[all …]
/plugin/doctree2filelist/
H A Dadmin.php129 ptln(' <input type="hidden" name="do" value="admin" />');
130 ptln(' <input type="hidden" name="ospcmd" value="importit" />');
139 ptln(' <input type="hidden" name="do" value="admin" />');
140 ptln(' <input type="hidden" name="ospcmd" value="docsuploaded" />');
149 ptln(' <input type="hidden" name="do" value="admin" />');
150 ptln(' <input type="hidden" name="ospcmd" value="create_upload_dir" />');
173 $html .= ' <input type="hidden" name="do" value="admin" />'."\n";
179 $html .= ' <input type="hidden" name="do" value="admin" />'."\n";
180 $html .= ' <input type="hidden" name="ospcmd" value="importit" />'."\n";
186 $html .= ' <input type="hidden" name="do" value="admin" />'."\n";
[all …]
/plugin/icalevents/vendor/sabre/vobject/resources/schema/
H A Dxcard.rng20 value-text-list = value-text+
43 value-date-and-or-time = value-date | value-date-time | value-time
110 param-tz = element tz { value-text | value-uri }?
118 value-uri
155 value-uri
161 (value-date-and-or-time | value-text)
167 (value-date-and-or-time | value-text)
204 (value-text | value-uri)
232 (value-text | value-uri | value-utc-offset)
294 (value-uri | value-text)
[all …]
/plugin/webdav/vendor/sabre/vobject/resources/schema/
H A Dxcard.rng20 value-text-list = value-text+
43 value-date-and-or-time = value-date | value-date-time | value-time
110 param-tz = element tz { value-text | value-uri }?
118 value-uri
155 value-uri
161 (value-date-and-or-time | value-text)
167 (value-date-and-or-time | value-text)
204 (value-text | value-uri)
232 (value-text | value-uri | value-utc-offset)
294 (value-uri | value-text)
[all …]
/plugin/visio/
H A Dsyntax.php70 $renderer->doc .= ' <param name="BackColor" value="16777200">'."\n";
71 $renderer->doc .= ' <param name="AlertsEnabled" value="1">'."\n";
73 $renderer->doc .= ' <param name="GridVisible" value="0">'."\n";
74 $renderer->doc .= ' <param name="HighQualityRender" value="0">'."\n";
75 $renderer->doc .= ' <param name="PageColor" value="16777215">'."\n";
76 $renderer->doc .= ' <param name="PageVisible" value="1">'."\n";
79 $renderer->doc .= ' <param name="SizeGripVisible" value="1">'."\n";
80 $renderer->doc .= ' <param name="ToolbarVisible" value="1">'."\n";
81 $renderer->doc .= ' <param name="SRC" value="';
84 $renderer->doc .= ' <param name="CurrentPageIndex" value="0">'."\n";
[all …]
/plugin/bootswrapper/exe/help/
H A Dprogress.txt12 <bar value="60"></bar>
19 <bar value="60"></bar>
28 <bar value="60" showvalue="true"></bar>
34 <bar value="60" showvalue="true"></bar>
44 <bar value="40" type="success"></bar>
48 <bar value="20" type="info"></bar>
52 <bar value="60" type="warning"></bar>
56 <bar value="80" type="danger"></bar>
63 <bar value="40" type="success"></bar>
67 <bar value="20" type="info"></bar>
[all …]
/plugin/combo/vendor/symfony/yaml/
H A DUnescaper.php34 * @param string $value A single quoted string
36 public function unescapeSingleQuotedString(string $value): string argument
38 return str_replace('\'\'', '\'', $value);
44 * @param string $value A double quoted string
46 public function unescapeDoubleQuotedString(string $value): string argument
53 return preg_replace_callback('/'.self::REGEX_ESCAPED_CHARACTER.'/u', $callback, $value);
59 * @param string $value An escaped character
61 private function unescapeCharacter(string $value): string argument
63 switch ($value[1]) {
105 return self::utf8chr(hexdec(substr($value,
[all...]
/plugin/findologicxmlexport/vendor/twig/extensions/lib/Twig/Extensions/Extension/
H A DText.php40 if (mb_strlen($value, $env->getCharset()) > $length) {
43 if (false === ($breakpoint = mb_strpos($value, ' ', $length, $env->getCharset()))) {
44 return $value;
50 return rtrim(mb_substr($value, 0, $length, $env->getCharset())).$separator;
53 return $value;
63 $pieces = mb_split($separator, $value);
80 if (strlen($value) > $length) {
82 if (false !== ($breakpoint = strpos($value, ' ', $length))) {
87 return rtrim(substr($value, 0, $length)).$separator;
90 return $value;
[all …]
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Search/Filter/
H A DAttributeValueAssertionTrait.php26 * Common methods for filters using attribute value assertions.
37 protected $value;
41 * @param string $value
43 public function __construct(string $attribute, string $value)
46 $this->value = $value;
50 * @param string $value argument
53 public function setValue(string $value)
55 $this->value = $value;
34 protected $value; global() variable
40 __construct(string $attribute, string $value) global() argument
[all...]
/plugin/database2/
H A Ddatabase2.php440 $value = trim( $value );
5095 $value = trim( $value );
5112 $value = trim( $value );
5189 return "$value[mime]|$value[name]|$value[file]";
5378 $value = trim( $value );
5478 $value = trim( $value );
5506 $value = mktime( 12, 0, 0, $value['month'], $value['day'], $value['year'] );
5575 $value = trim( $value );
5592 $value = trim( $value );
5618 $value = trim( $value );
[all …]

12345678910>>...157