Home
last modified time | relevance | path

Searched refs:values (Results 1 – 25 of 925) sorted by relevance

12345678910>>...37

/plugin/icalevents/vendor/squizlabs/php_codesniffer/scripts/
H A Dphpcs-svn-pre-commit87 $values = array_merge($this->getDefaults(), $values);
88 $this->values = $values;
109 $values['standard'] = $this->validateStandard($values['standard']);
121 $values['verbosity'],
122 $values['tabWidth'],
123 $values['encoding']
153 $this->values['reports']['full'] = $values['reportFile'];
158 $phpcs->initStandard($values['standard'], $values['sniffs']);
190 $values['reports'],
192 $values['reportFile'],
[all …]
/plugin/odt/helper/
H A Dcssimport.php347 switch (count($values)) {
382 switch (count($values)) {
424 if (!isset($values [$index])) $values [$index] = 'medium';
450 if (!isset($values [$index])) $values [$index] = 'none';
478 if (!isset($values [$index])) $values [$index] = 'initial';
489 … $decls [] = new css_declaration ($border_side, $values [0].' '.$values [1].' '.$values [2]);
805 if ( count($values) == 1 && $values [0] == 'auto' ) {
896 if (!isset($values [1])) $values [1] = 'none'; // border-style
897 if (!isset($values [2])) $values [2] = 'currentcolor'; // border-color
900 $this->value = $width . ' ' . $values [1] . ' ' . $values [2];
[all …]
/plugin/upgrade/HTTP/
H A DHeaders.php13 * Expects an associative array with individual policies and their values
19 foreach ($policy as $key => $values) {
21 if (!is_array($values)) $values = explode("\n", $values);
22 $values = array_map('trim', $values);
23 $values = array_unique($values);
24 $values
[all...]
/plugin/diagrams/
H A Drenderer.php43 foreach ($policy as $key => $values) {
45 if (!is_array($values)) $values = explode("\n", $values);
46 $values = array_map('trim', $values);
47 $values = array_unique($values);
48 $values = array_filter($values);
[all...]
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/
H A DCLI.php60 protected $values = array(); variable in PHP_CodeSniffer_CLI
421 return $this->values;
913 $values = array_merge($this->getDefaults(), $values);
914 $this->values = $values;
935 $values['standard'] = $this->validateStandard($values['standard']);
956 $phpcs->initStandard($values['standard'], $values['sniffs'], $values['exclude']);
957 $values = $this->values;
989 $values['reports']['full'] = $values['reportFile'];
990 $this->values['reports'] = $values['reports'];
998 $phpcs->processFiles($values['files'], $values['local']);
[all …]
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Entry/
H A DAttribute.php30 * Represents an entry attribute and any values.
59 protected $values = [];
68 * @param mixed|string ...$values
70 public function __construct(string $attribute, ...$values)
73 $this->values = $values;
77 * Add a value, or values, to the attribute.
79 * @param mixed|string ...$values
82 public function add(...$values): self
84 foreach ($values a
43 protected $values = []; global() variable in FreeDSx\\Ldap\\Entry\\Attribute
54 __construct(string $attribute, ...$values) global() argument
66 add(...$values) global() argument
92 remove(...$values) global() argument
121 set(...$values) global() argument
[all...]
/plugin/findologicxmlexport/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation/
H A DTarget.php72 * @param array $values
76 public function __construct(array $values) argument
78 if (!isset($values['value'])){
79 $values['value'] = null;
81 if (is_string($values['value'])){
82 $values['value'] = array($values['value']);
84 if (!is_array($values['value'])){
87 … is_object($values['value']) ? get_class($values['value']) : gettype($values['value'])
93 foreach ($values['value'] as $literal) {
104 $this->value = $values['value'];
H A DEnum.php53 * @param array $values
57 public function __construct(array $values) argument
59 if ( ! isset($values['literal'])) {
60 $values['literal'] = array();
63 foreach ($values['value'] as $var) {
72 foreach ($values['literal'] as $key => $var) {
73 if( ! in_array($key, $values['value'])) {
81 $this->value = $values['value'];
82 $this->literal = $values['literal'];
H A DIgnoreAnnotation.php39 * @param array $values
43 public function __construct(array $values) argument
45 if (is_string($values['value'])) {
46 $values['value'] = array($values['value']);
48 if (!is_array($values['value'])) {
49 …xpects either a string name, or an array of strings, but got %s.', json_encode($values['value'])));
52 $this->names = $values['value'];
/plugin/odt/ODT/css/
H A Dcssborder.php24 switch (count($values)) {
26 $top = $values [0];
27 $bottom = $values [0];
28 $right = $values [0];
29 $left = $values [0];
32 $top = $values [0];
33 $bottom = $values [0];
34 $right = $values [1];
35 $left = $values [1];
38 $top = $values [0];
[all …]
/plugin/adfs/phpsaml/lib/Saml/
H A DSettings.php59 $values = array();
61 $values['sp'] = array();
62 $values['sp']['entityId'] = $this->spIssuer;
63 $values['sp']['assertionConsumerService'] = array(
66 $values['sp']['NameIDFormat'] = $this->requestedNameIdFormat;
68 $values['idp'] = array();
69 $values['idp']['entityId'] = $this->idpSingleSignOnUrl;
70 $values['idp']['singleSignOnService'] = array(
73 $values['idp']['singleLogoutService'] = array(
76 $values['idp']['x509cert'] = $this->idpPublicCertificate;
[all …]
/plugin/html2pdf/html2pdf/html2ps/
H A Dcss.border.style.inc.php75 $values = explode(" ",$value);
77 switch (count($values)) {
79 $v1 = $this->parse_style($values[0]);
82 $v1 = $this->parse_style($values[0]);
83 $v2 = $this->parse_style($values[1]);
86 $v1 = $this->parse_style($values[0]);
106 $values = $this->parse_in($value);
108 return new BorderStyle($values[0],
109 $values[1],
110 $values[2],
[all …]
H A Dcss.padding.inc.php17 switch (count($values)) {
19 $v1 = $values[0];
22 $v1 = $values[0];
23 $v2 = $values[1];
26 $v1 = $values[0];
27 $v2 = $values[1];
28 $v3 = $values[2];
31 $v1 = $values[0];
32 $v2 = $values[1];
33 $v3 = $values[2];
[all …]
H A Dcss.border.color.inc.php54 switch (count($values)) {
56 $v1 = parse_color_declaration($values[0]);
59 $v1 = parse_color_declaration($values[0]);
60 $v2 = parse_color_declaration($values[1]);
63 $v1 = parse_color_declaration($values[0]);
64 $v2 = parse_color_declaration($values[1]);
65 $v3 = parse_color_declaration($values[2]);
68 $v1 = parse_color_declaration($values[0]);
69 $v2 = parse_color_declaration($values[1]);
70 $v3 = parse_color_declaration($values[2]);
[all …]
H A Dcss.margin.inc.php20 switch (count($values)) {
22 $v1 = $values[0];
25 $v1 = $values[0];
26 $v2 = $values[1];
29 $v1 = $values[0];
30 $v2 = $values[1];
31 $v3 = $values[2];
34 $v1 = $values[0];
35 $v2 = $values[1];
36 $v3 = $values[2];
[all …]
/plugin/cspheader/
H A Daction.php77 $values = $this->getConf($option);
78 $values = explode("\n", $values);
79 $values = array_map('trim', $values);
80 $values = array_unique($values);
81 $values = array_filter($values);
82 if (!count($values)) continu
[all...]
/plugin/gtime/gtlib/asn1/cms/
H A DCMSAttribute.php47 private $values; variable in CMSAttribute
82 $this->values = array();
84 $values = $object->getObjectAt(1);
86 if (!$values instanceof ASN1Set) {
90 $size = $values->getObjectCount();
97 array_push($this->values, $values->getObjectAt(0));
109 $values = new ASN1Set();
111 foreach ($this->values as $value) {
112 $values->add($value);
117 $sequence->add($values);
[all …]
/plugin/icalevents/vendor/sabre/vobject/lib/Property/ICalendar/
H A DRecur.php169 $values = [];
177 $values[strtolower($k)] = $v;
180 return [$values];
259 $values = $this->getParts();
261 foreach ($values as $key => $value) {
270 unset($values[$key]);
292 unset($values[$key]);
314 unset($values[$key]);
336 unset($values[$key]);
341 if (!isset($values['FREQ'])) {
[all …]
/plugin/webdav/vendor/sabre/vobject/lib/Property/ICalendar/
H A DRecur.php157 $values = [];
165 $values[strtolower($k)] = $v;
169 return [$values];
242 $values = $this->getParts();
244 foreach ($values as $key => $value) {
252 unset($values[$key]);
274 unset($values[$key]);
296 unset($values[$key]);
318 unset($values[$key]);
322 if (!isset($values['FREQ'])) {
[all …]
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/
H A DShorthandSizeSniff.php100 $values = array();
104 $values,
115 foreach ($values as $value) {
124 $expected = trim($content.' '.$values[1][1].$values[1][2]);
148 if ($values[0][0] !== $values[1][0]) {
152 } else if ($values[0][0] !== $values[2][0] || $values[1][0] !== $values[3][0]) {
157 if ($values[0][0] === $values[1][0]) {
159 $expected = $values[0][0];
161 $expected = $values[0][0].' '.$values[1][0];
/plugin/findologicxmlexport/vendor/phpunit/php-text-template/src/
H A DTemplate.php36 protected $values = array(); variable in Text_Template
79 * @param array $values
82 public function setVar(array $values, $merge = TRUE) argument
84 if (!$merge || empty($this->values)) {
85 $this->values = $values;
87 $this->values = array_merge($this->values, $values);
100 foreach ($this->values as $key => $value) {
104 return str_replace($keys, $this->values, $this->template);
/plugin/authgoogle/google/contrib/
H A DGoogle_FreebaseService.php169 public $values; variable in Google_TopicPropertyvalue
185 $this->values = $values;
188 return $this->values;
202 public $values; variable in Google_TopicStatslinkcount
211 $this->values = $values;
214 return $this->values;
223 public $values; variable in Google_TopicStatslinkcountValues
238 $this->values = $values;
241 return $this->values;
250 public $values; variable in Google_TopicStatslinkcountValuesValues
[all …]
/plugin/freechat/phpfreechat/lib/csstidy-1.2/
H A Dclass.csstidy_optimise.php229 else $values = $value;
231 $values = explode(' ',$values);
235 if($values[0] == $values[1] && $values[0] == $values[2] && $values[0] == $values[3])
239 elseif($values[1] == $values[3] && $values[0] == $values[2])
241 return $values[0].' '.$values[1].$important;
243 elseif($values[1] == $values[3])
245 return $values[0].' '.$values[1].' '.$values[2].$important;
250 if($values[0] == $values[1] && $values[0] == $values[2])
254 elseif($values[0] == $values[2])
256 return $values[0].' '.$values[1].$important;
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Node/
H A DSetTest.php26 $values = new Node([new ConstantExpression('foo', 1)], [], 1);
27 $node = new SetNode(false, $names, $values, 1);
30 $this->assertEquals($values, $node->getNode('values'));
39 $values = new Node([new ConstantExpression('foo', 1)], [], 1);
40 $node = new SetNode(false, $names, $values, 1);
48 $values = new Node([new PrintNode(new ConstantExpression('foo', 1), 1)], [], 1);
49 $node = new SetNode(true, $names, $values, 1);
59 $values = new TextNode('foo', 1);
60 $node = new SetNode(true, $names, $values, 1);
68 $values = new Node([new ConstantExpression('foo', 1), new NameExpression('bar', 1)], [], 1);
[all …]
/plugin/findologicxmlexport/vendor/findologic/libflexport/src/FINDOLOGIC/Export/Helpers/
H A DUsergroupAwareMultiValue.php16 private $values = []; variable in FINDOLOGIC\\Export\\Helpers\\UsergroupAwareMultiValue
27 if (!array_key_exists($value->getUsergroup(), $this->values)) {
28 $this->values[$value->getUsergroup()] = [];
31 array_push($this->values[$value->getUsergroup()], $value);
34 public function setAllValues($values) argument
36 $this->values = $values;
47 foreach ($this->values as $usergroup => $usergroupValues) {
70 if (array_key_exists('', $this->values)) {
71 foreach ($this->values[''] as $value) {

12345678910>>...37