Home
last modified time | relevance | path

Searched refs:values (Results 26 – 50 of 925) sorted by relevance

12345678910>>...37

/plugin/html2pdf/html2pdf/html2ps/
H A Dtag.frame.inc.php34 $values = array();
36 $values[] = 0;
66 $values[$i] = $total * $fraction;
72 $values[$i] = px2pt($length_src);
77 $rest = $total - array_sum($values);
93 $values[$i] = $part_size * max(1,substr($length,0,strlen($length)-1));
99 $width = array_sum($values);
103 for($i = 0; $i < count($values); $i++) {
104 $values[$i] *= $koeff;
108 return $values;
H A Dcss.border.width.inc.php69 $values = explode(' ', $value);
71 switch (count($values)) {
73 $v1 = $this->parse_value($values[0]);
76 $v1 = $this->parse_value($values[0]);
77 $v2 = $this->parse_value($values[1]);
80 $v1 = $this->parse_value($values[0]);
81 $v2 = $this->parse_value($values[1]);
82 $v3 = $this->parse_value($values[2]);
85 $v1 = $this->parse_value($values[0]);
86 $v2 = $this->parse_value($values[1]);
[all …]
/plugin/data/Form/
H A DOptGroup.php7 protected $values = []; variable in dokuwiki\\plugin\\data\\Form\\OptGroup
10 * Store the given values so they can be used during rendering
14 * @param string[] $values the values to set
15 * @return string[] the values that have been set (options exist)
18 public function storeValues($values) argument
20 $this->values = [];
21 foreach ($values as $value) {
23 $this->values[] = $value;
27 return $this->values;
[all...]
H A DDropdownElement.php14 /** @var string[] the currently set values */ variable in dokuwiki\\plugin\\data\\Form\\DropdownElement
15 protected $values = [];
48 return $this->values;
50 return $this->values[0];
55 $this->values = $this->setValuesInOptGroups((array)$value);
56 if (!$this->values) {
58 $this->values = $this->setValuesInOptGroups((array)$this->getFirstOptionKey());
102 * @param string[] $values The values to be set
103 * @return string[] The values actuall
104 setValuesInOptGroups($values) global() argument
[all...]
/plugin/findologicxmlexport/vendor/findologic/libflexport/src/FINDOLOGIC/Export/Data/
H A DProperty.php39 private $values; variable in FINDOLOGIC\\Export\\Data\\Property
44 public function __construct($key, $values = []) argument
53 $this->setValues($values);
66 if (array_key_exists($usergroup, $this->values)) {
70 $this->values[$usergroup] = DataHelper::checkForEmptyValue($value);
73 protected function setValues($values) argument
75 $this->values = [];
77 foreach ($values as $usergroup => $value) {
84 return $this->values;
H A DAttribute.php13 private $values; variable in FINDOLOGIC\\Export\\Data\\Attribute
18 public function __construct($key, $values = []) argument
21 $this->setValues($values);
29 array_push($this->values, DataHelper::checkForEmptyValue($value));
32 public function setValues($values) argument
34 $this->values = [];
36 foreach ($values as $value) {
60 foreach ($this->values as $value) {
75 foreach ($this->values as $value) {
/plugin/facebookalbum/
H A Dsyntax.php193 foreach( $album_results as $keys => $values ) {
195 if ( in_array(strtolower($values['name']), $data[FB_ALBUM_IGNORE])) {
200 $album_cover = $covers[$values['cover_pid']];
208 $album_content = str_replace(FB_ALBUM_TAG_NAME, $values['name'], $album_content);
235 foreach( $fql_results as $keys => $values ) {
236 $album_name = $values['name'];
253 foreach( $fql_results as $keys => $values ) {
254 if( $values['caption'] == '' ){
258 $caption = $values['caption'];
264 $picture_content = str_replace( FB_ALBUM_TAG_IMAGE_URL, $values['src'], $picture_content);
[all …]
/plugin/bibtex/OSBib/
H A DMINIMALRTF.php178 $values = array();
187 if(count($values) == 0)
189 $values[] = $thisValue;
190 if(count($values) == $lookingFor)
193 (($values[0] % 16) * 4096) + (($values[1] % 64) * 64) + ($values[2] % 64) :
194 (($values[0] % 32) * 64) + ($values[1] % 64);
196 $values = array();
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/
H A DValueContainer.php23 private $values; variable in Assetic\\Extension\\Twig\\ValueContainer
35 return array_key_exists($offset, $this->values);
42 if (!array_key_exists($offset, $this->values)) {
46 return $this->values[$offset];
63 return new \ArrayIterator($this->values);
70 return count($this->values);
75 if (null === $this->values) {
76 $this->values = $this->valueSupplier->getValues();
/plugin/siteexport/syntax/
H A Daggregate.php112 $values = array();
116 if ( !array_key_exists('_'.$ns[2], $values) ) {
117 $values['_'.$ns[2]] = $ns;
118 } else if ( !in_array($ns[0], $values['_'.$ns[2]][4]) ) {
119 $values['_'.$ns[2]][0] .= '|' . $ns[0];
121 $values['_'.$ns[2]][4][] = $ns[0];
124 array_walk( $values, array( $this, 'checkComplete'), $namespace);
125 $values = array_values($values);
129 if ( empty($values) ) {
132 …->addElement(form_makeMenuField('baseID', $values, isset($_REQUEST['baseID']) ? $_REQUEST['baseID'…
/plugin/openid/Auth/OpenID/
H A DKVForm.php44 $values = [];
72 $values[$tkey] = $tval;
75 return $values;
83 * @param null|array $values
86 static function fromArray($values) argument
88 if ($values === null) {
92 ksort($values);
95 foreach ($values as $key => $value) {
/plugin/statistics/inc/pchart/
H A DPalette.php81 $values = explode($delimiter, $buffer);
82 $values = array_map('trim', $values);
83 if(count($values) == 3) {
84 $palette->setColor($idx, new Color($values[0], $values[1], $values[2]));
86 }elseif(count($values) == 1 && $values[0] !== ''){
87 $palette->setColor($idx, new Color($values[
[all...]
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/
H A DAssetWriter.php26 private $values; variable in Assetic\\AssetWriter
32 * @param array $values Variable values
36 public function __construct($dir, array $values = array()) argument
38 foreach ($values as $var => $vals) {
47 $this->values = $values;
59 foreach (VarUtils::getCombinations($asset->getVars(), $this->values) as $combination) {
92 return VarUtils::getCombinations($vars, $this->values);
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Util/
H A DVarUtils.php26 * @param array $values Variable values
32 public static function resolve($template, array $vars, array $values) argument
40 if (!isset($values[$var])) {
44 $map['{'.$var.'}'] = $values[$var];
50 public static function getCombinations(array $vars, array $values) argument
58 foreach ($values as $var => $vals) {
71 $combination[$var] = $values[$var][$k % $nbValues[$var]];
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Util/
H A DExportUtil.php163 $values = '';
167 $values .= sprintf(
175 $values = "\n" . $values . $whitespace;
178 return sprintf('Array &%s (%s)', $key, $values);
191 $values = '';
196 $values .= sprintf(
204 $values = "\n" . $values . $whitespace;
207 return sprintf('%s:%s Object (%s)', $class, $hash, $values);
/plugin/elasticsearch/vendor/ruflin/elastica/src/Query/
H A DMatchPhrase.php16 * @param mixed $values
18 public function __construct(?string $field = null, $values = null) argument
20 if (null !== $field && null !== $values) {
21 $this->setParam($field, $values);
28 * @param mixed $values
32 public function setField(string $field, $values): self argument
34 return $this->setParam($field, $values);
/plugin/bureaucracyau/_test/
H A Dactions_template.test.php14 $this->assertEquals('en', $action->values['__lang__']);
16 $this->assertEquals('', $action->values['__trans__']);
33 $this->assertEquals('en', $action->values['__lang__']);
35 $this->assertEquals('', $action->values['__trans__']);
53 $this->assertEquals('en', $action->values['__lang__']);
55 $this->assertEquals('de', $action->values['__trans__']);
70 $this->assertEquals('$2', $action->values['text1']);
81 $templateaction->values = array();
/plugin/bureaucracy-au/_test/
H A Dactions_template.test.php14 $this->assertEquals('en', $action->values['__lang__']);
16 $this->assertEquals('', $action->values['__trans__']);
33 $this->assertEquals('en', $action->values['__lang__']);
35 $this->assertEquals('', $action->values['__trans__']);
53 $this->assertEquals('en', $action->values['__lang__']);
55 $this->assertEquals('de', $action->values['__trans__']);
70 $this->assertEquals('$2', $action->values['text1']);
81 $templateaction->values = array();
/plugin/strata/aggregates/
H A Dmax.php13 function aggregate($values, $hint = null) { argument
14 if($hint == 'strict') $values = array_filter($values, 'is_numeric');
15 if(empty($values)) return array();
16 return array(max($values));
21 'desc'=>'Returns the maximum value. Any item that does not have a clear numeric value (i.e. starts with a number) is counted as 0. If the \'strict\' hint is used, values that are not strictly numeric (i.e. contains only a number) are ignored.',
22 'hint'=>'\'strict\' to ignore non-numeric values',
H A Dmin.php13 function aggregate($values, $hint = null) { argument
14 if($hint == 'strict') $values = array_filter($values, 'is_numeric');
15 if(empty($values)) return array();
16 return array(min($values));
21 'desc'=>'Returns the minimum value. Any item that does not have a clear numeric value (i.e. starts with a number) is counted as 0. If the \'strict\' hint is used, values that are not strictly numeric (i.e. contains only a number) are ignored.',
22 'hint'=>'\'strict\' to ignore non-numeric values',
/plugin/fedauth/Auth/OpenID/
H A DKVForm.php41 $values = array();
69 $values[$tkey] = $tval;
72 return $values;
81 static function fromArray($values) argument
83 if ($values === null) {
87 ksort($values);
90 foreach ($values as $key => $value) {
/plugin/findologicxmlexport/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/
H A DDocParser.php783 if (isset($values[$property]) && ! in_array($values[$property], $enum['value'])) {
792 && !isset($values[$property]) && isset($values['value'])) {
808 $values[$property] = array($values[$property]);
857 $values = array();
860 return $values;
871 return $values;
897 $values[] = $value;
907 $values['value'] = array($values['value']);
913 unset($values[$k]);
916 return $values;
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudSearch/
H A DTextValues.php26 public $values; variable in Google\\Service\\CloudSearch\\TextValues
31 public function setValues($values) argument
33 $this->values = $values;
40 return $this->values;
H A DTimestampValues.php26 public $values; variable in Google\\Service\\CloudSearch\\TimestampValues
31 public function setValues($values) argument
33 $this->values = $values;
40 return $this->values;
H A DDoubleValues.php23 public $values; variable in Google\\Service\\CloudSearch\\DoubleValues
25 public function setValues($values) argument
27 $this->values = $values;
31 return $this->values;

12345678910>>...37