Home
last modified time | relevance | path

Searched refs:attribute (Results 226 – 250 of 449) sorted by last modified time

12345678910>>...18

/plugin/bureaucracy-au/helper/
H A Dfieldusers.php52 $attribute = isset($matches['attribute']) ? $matches['attribute'] : '';
57 switch($attribute) {
62 return implode($delimiter, array_map(function ($user) use ($auth, $attribute) {
63 return $auth->getUserData($user)[$attribute];
/plugin/findologicxmlexport/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/
H A DDocParser.php527 foreach ($annotation->value as $attribute) {
543 $attribute = new Attribute();
546 $attribute->name = $property->name;
551 $this->collectAttributeTypeMetadata($metadata, $attribute);
584 * @param Attribute $attribute
591 $type = isset(self::$typeMap[$attribute->type])
592 ? self::$typeMap[$attribute->type]
593 : $attribute->type;
627 $metadata['attribute_types'][$attribute->name]['type'] = $type;
628 $metadata['attribute_types'][$attribute->name]['value'] = $attribute->type;
[all …]
/plugin/findologicxmlexport/vendor/findologic/libflexport/src/FINDOLOGIC/Export/CSV/
H A DCSVItem.php83 foreach ($this->attributes as $attribute) {
84 $attributes .= sprintf('%s&', $attribute->getCsvFragment());
/plugin/findologicxmlexport/vendor/findologic/libflexport/tests/FINDOLOGIC/Export/Tests/
H A DXmlSerializationTest.php133 $attribute = new Attribute('&quot;</>', ['&quot;</>', 'regular']);
134 $item->addAttribute($attribute);
/plugin/findologicxmlexport/vendor/twig/twig/doc/
H A Dtemplates.rst84 When the attribute contains special characters (like ``-`` that would be
85 interpreted as the minus operator), use the ``attribute`` function instead to
86 access the variable attribute:
91 {{ attribute(foo, 'data-foo') }}
99 If a variable or attribute does not exist, you will receive a ``null`` value
123 If you want to access a dynamic attribute of a variable, use the
124 :doc:`attribute<functions/attribute>` function instead.
805 * ``.``, ``[]``: Gets an attribute of an object.
/plugin/findologicxmlexport/vendor/twig/twig/src/TokenParser/
H A DForTokenParser.php110 $attribute = $node->getNode('attribute');
111 …if ($attribute instanceof ConstantExpression && \in_array($attribute->getAttribute('value'), ['len…
112 …The "loop.%s" variable is not defined when looping with a condition.', $attribute->getAttribute('v…
/plugin/findologicxmlexport/vendor/sebastian/global-state/src/
H A DSnapshot.php343 foreach ($class->getProperties() as $attribute) {
344 if ($attribute->isStatic()) {
345 $name = $attribute->getName();
351 $attribute->setAccessible(true);
352 $value = $attribute->getValue();
/plugin/findologicxmlexport/vendor/sebastian/global-state/tests/_fixture/
H A DBlacklistedClass.php17 private static $attribute; variable in SebastianBergmann\\GlobalState\\TestFixture\\BlacklistedClass
H A DBlacklistedImplementor.php17 private static $attribute; variable in SebastianBergmann\\GlobalState\\TestFixture\\BlacklistedImplementor
/plugin/findologicxmlexport/vendor/twig/extensions/lib/Twig/Extensions/
H A DSimpleTokenParser.php54 …protected function getAttribute($node, $attribute, $arguments = array(), $type = Twig_Node_Express… argument
58 …$attribute instanceof Twig_Node ? $attribute : new Twig_Node_Expression_Constant($attribute, $line…
65 protected function call($node, $attribute, $arguments = array(), $line = -1) argument
67 …return $this->getAttribute($node, $attribute, $arguments, Twig_Node_Expression_GetAttr::TYPE_METHO…
/plugin/findologicxmlexport/vendor/jms/serializer/doc/reference/
H A Dannotations.rst535 | attribute | use an attribute instead of a child node |
542 Example for "attribute":
553 * @XmlDiscriminator(attribute=true)
578 * @XmlDiscriminator(attribute=true)
670 You can also specify the entry tag namespace using the ``namespace`` attribute (``@XmlList(inline =…
H A Dxml_reference.rst12 <xml-discriminator attribute="true" cdata="false" namespace=""/>
27 xml-attribute="true"
36 xml-attribute-map="true"
43 …<xml-map inline="true" key-attribute-name="foo" entry-name="bar" namespace="http://www.w3.org/2005…
63 xml-attribute="true"
71 xml-attribute-map="true"
82 xml-attribute="true"
90 xml-attribute-map="true"
101 …<xml-map inline="true" key-attribute-name="foo" entry-name="bar" namespace="http://www.w3.org/2005…
/plugin/findologicxmlexport/vendor/twig/twig/doc/functions/
H A Dindex.rst7 attribute
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tests/
H A Ddefined_for_attribute.test2 "defined" support for attribute
4 {{ attribute(nested, "definedVar") is defined ? 'ok' : 'ko' }}
5 {{ attribute(nested, "undefinedVar") is not defined ? 'ok' : 'ko' }}
6 {{ attribute(nested, definedVarName) is defined ? 'ok' : 'ko' }}
7 {{ attribute(nested, undefinedVarName) is not defined ? 'ok' : 'ko' }}
/plugin/findologicxmlexport/vendor/findologic/libflexport/
H A DREADME.md18 * No encoding issues as the encoding attribute is provided in the XML response `<?xml version="1.0"…
/plugin/findologicxmlexport/vendor/findologic/libflexport/src/FINDOLOGIC/Export/XML/
H A DXMLItem.php95 foreach ($this->attributes as $key => $attribute) {
96 $attributes->appendChild($attribute->getDomSubtree($document));
/plugin/findologicxmlexport/vendor/twig/twig/doc/tests/
H A Dsameas.rst12 {% if foo.attribute is same as(false) %}
13 the foo attribute really is the 'false' PHP value
/plugin/findologicxmlexport/vendor/twig/twig/src/Node/
H A DNode.php98 $node->appendChild($attribute = $dom->createElement('attribute'));
99 $attribute->setAttribute('name', $name);
100 $attribute->appendChild($dom->createTextNode($value));
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/regression/
H A Dcombined_debug_info.test15 Twig\Error\RuntimeError: Impossible to access an attribute ("bar") on a string variable ("foo") in …
/plugin/findologicxmlexport/vendor/myclabs/deep-copy/
H A DREADME.md150 - `DeepCopy\Matcher` applies on a object attribute.
193 - `DeepCopy\Filter` applies a transformation to the object attribute matched by `DeepCopy\Matcher`
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/
H A DAssert.php2375 public static function attribute(PHPUnit_Framework_Constraint $constraint, $attributeName) function in PHPUnit_Framework_Assert
2474 return static::attribute(
2878 $attribute = new ReflectionProperty($object, $attributeName);
2884 $attribute = $reflector->getProperty($attributeName);
2891 if (isset($attribute)) {
2892 if (!$attribute || $attribute->isPublic()) {
2896 $attribute->setAccessible(true);
2897 $value = $attribute->getValue($object);
2898 $attribute->setAccessible(false);
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/Framework/
H A DAssertTest.php2739 $this->attribute(
2753 $this->attribute(
/plugin/findologicxmlexport/vendor/jms/serializer/src/Metadata/Driver/
H A DXmlDriver.php127 if (isset($xmlDiscriminator->attributes()->attribute)) {
128 …tadata->xmlDiscriminatorAttribute = 'true' === (string) $xmlDiscriminator->attributes()->attribute;
/plugin/findologicxmlexport/vendor/jms/serializer/src/
H A DXmlSerializationVisitor.php454 $attribute = 'xmlns';
456 $attribute .= ':' . $prefix;
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Fixtures/
H A DAccessorSetter.php71 protected $attribute; variable in JMS\\Serializer\\Tests\\Fixtures\\AccessorSetterElement
87 return $this->attribute;
91 * @param string $attribute
93 public function setAttributeDifferent($attribute) argument
95 $this->attribute = $attribute . '-different';

12345678910>>...18