Home
last modified time | relevance | path

Searched refs:array (Results 451 – 475 of 765) sorted by path

1...<<11121314151617181920>>...31

/plugin/findologicxmlexport/vendor/symfony/yaml/Tests/Fixtures/
H A DnumericMappingKeys.yml2 test: A sequence with an unordered array
4 A sequence with an unordered array
H A DsfTests.yml135 test: Document as a simple array
136 brief: Document as a simple array
/plugin/findologicxmlexport/vendor/symfony/yaml/Tests/
H A DInlineTest.php291 public function testIsHash($array, $expected) argument
293 $this->assertSame($expected, Inline::isHash($array));
/plugin/findologicxmlexport/vendor/twig/extensions/doc/
H A Di18n.rst162 $twig = new Twig_Environment($loader, array(
H A Dindex.rst10 array
35 * :doc:`Array <array>`: Provides useful filters for array manipulation;
/plugin/findologicxmlexport/vendor/twig/extensions/lib/Twig/Extensions/Extension/
H A DArray.php41 * @param array|Traversable $array An array
45 function twig_shuffle_filter($array) argument
47 if ($array instanceof Traversable) {
48 $array = iterator_to_array($array, false);
51 shuffle($array);
53 return $array;
/plugin/findologicxmlexport/vendor/twig/twig/
H A DCHANGELOG26 * fixed batch filter clobbers array keys when fill parameter is used
48 * switched generated code to use the PHP short array notation
82 * fixed possible array to string conversion concealing actual error
450 * fixed getting a boolean or float key on an array, so it is consistent with PHP's array access:
451 `{{ array[false] }}` behaves the same as `echo $array[false];` (equals `$array[0]`)
864 attributes via getAttribute() (instead of array access)
969 upgrade, replace "array" with "new Twig_Filter_Function", and replace the
973 'even' => array('twig_is_even_filter', false),
974 'escape' => array('twig_escape_filter', true),
1007 * fixed loop.last when the array only has one item
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/doc/
H A Dadvanced.rst181 The ``\Twig\TwigFilter`` class takes an array of options as its last
241 last argument to the filter call as an array::
243 $filter = new \Twig\TwigFilter('thumbnail', function ($file, array $options = []) {
249 option array.
503 array of several possible values.
641 * @return array<array> First array of unary operators, second array of binary operators
648 * @return array An array of global variables
733 method. This method must return an array of filters to add to the Twig
752 ``getTokenParsers()`` method. This method must return an array of tags to add
H A Dadvanced_legacy.rst443 array of several possible values.
583 * @return array<array> First array of unary operators, second array of binary operators
590 * @return array An array of global variables
681 method. This method must return an array of filters to add to the Twig
696 As you can see in the above code, the ``getFilters()`` method returns an array
772 ``getTokenParsers()`` method. This method must return an array of tags to add
H A Dapi.rst39 Notice that the second argument of the environment is an array of options.
84 When creating a new ``\Twig\Environment`` instance, you can pass an array of
184 It can also look for templates in an array of directories::
227 ``\Twig\Loader\ArrayLoader`` loads a template from a PHP array. It's passed an array
H A Dinternals.rst127 protected function doDisplay(array $context, array $blocks = [])
H A Drecipes.rst508 Now that the ``base.twig`` templates is defined in an array loader, you can
H A Dtemplates.rst76 properties of a PHP object, or items of a PHP array), or the so-called
108 * check if ``foo`` is an array and ``bar`` a valid element;
118 * check if ``foo`` is an array and ``bar`` a valid element;
/plugin/findologicxmlexport/vendor/twig/twig/doc/filters/
H A Dkeys.rst4 The ``keys`` filter returns the keys of an array. It is useful when you want to
5 iterate over the keys of an array:
9 {% for key in array|keys %}
H A Dmerge.rst4 The ``merge`` filter merges an array with another array:
32 If you want to ensure that some values are defined in an array (by given
H A Dslice.rst66 * ``preserve_keys``: Whether to preserve key or not (when the input is an array)
H A Dsort.rst4 The ``sort`` filter sorts an array:
H A Dsplit.rst17 * If ``limit`` is positive, the returned array will contain a maximum of
H A Durl_encode.rst5 Support for encoding an array as query string was added in Twig 1.12.3.
12 or an array as query string:
/plugin/findologicxmlexport/vendor/twig/twig/doc/functions/
H A Dattribute.rst14 {{ attribute(array, item) }}
H A Dcycle.rst4 The ``cycle`` function cycles on an array of values:
15 The array can contain any number of values:
/plugin/findologicxmlexport/vendor/twig/twig/doc/tags/
H A Dextends.rst170 The possibility to pass an array of templates has been added in Twig 1.2.
H A Dfor.rst18 A sequence can be either an array or an object implementing the
H A Dif.rst15 You can also test if an array is not empty:
75 empty array false
77 non-empty array true
H A Dinclude.rst104 The possibility to pass an array of templates has been added in Twig 1.2.

1...<<11121314151617181920>>...31