Collection::current |
function |
drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Collections/Collection.php |
Gets the element of the collection at the current iterator position. |
Collection::indexOf |
function |
drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Collections/Collection.php |
Gets the index/key of a given element. The comparison of two elements is strict,
that means not only the value but also the type must match.
For objects this means reference equality. |
MemoryDataCollector |
class |
drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/DataCollector/MemoryDataCollector.php |
MemoryDataCollector. |
RouterDataCollector |
class |
drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/DataCollector/RouterDataCollector.php |
RouterDataCollector. |
ConfigDataCollector |
class |
drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/DataCollector/ConfigDataCollector.php |
ConfigDataCollector. |
RouteCollection.php |
file |
drupal/core/vendor/symfony/routing/Symfony/Component/Routing/RouteCollection.php |
|
Collection::toArray |
function |
drupal/core/vendor/guzzle/common/Guzzle/Common/Collection.php |
Get the array representation of an object |
Collection::getKeys |
function |
drupal/core/vendor/guzzle/common/Guzzle/Common/Collection.php |
Get all keys in the collection |
ExceptionCollection |
class |
drupal/core/vendor/guzzle/common/Guzzle/Common/Exception/ExceptionCollection.php |
Collection of exceptions |
CollectionValidator |
class |
drupal/core/vendor/symfony/validator/Symfony/Component/Validator/Constraints/CollectionValidator.php |
@author Bernhard Schussek <bschussek@gmail.com> |
RouteCollectionTest |
class |
drupal/core/vendor/symfony/routing/Symfony/Component/Routing/Tests/RouteCollectionTest.php |
|
Collection::replace |
function |
drupal/core/vendor/guzzle/common/Guzzle/Common/Collection.php |
Replace the data of the object with the value of an array |
Collection::getPath |
function |
drupal/core/vendor/guzzle/common/Guzzle/Common/Collection.php |
Gets a value from the collection using an array path (e.g. foo/baz/bar would retrieve bar from two nested arrays)
Allows for wildcard searches which recursively combine matches up to the level at which the wildcard occurs. This
can be useful for… |
ArrayCollection.php |
file |
drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Collections/ArrayCollection.php |
|
Router::$collection |
property |
drupal/core/vendor/symfony/routing/Symfony/Component/Routing/Router.php |
|
Collection::$fields |
property |
drupal/core/vendor/symfony/validator/Symfony/Component/Validator/Constraints/Collection.php |
|
AssetCollection.php |
file |
drupal/core/vendor/kriswallsmith/assetic/src/Assetic/Asset/AssetCollection.php |
|
LoggerDataCollector |
class |
drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/DataCollector/LoggerDataCollector.php |
LogDataCollector. |
RouteCollection::add |
function |
drupal/core/vendor/symfony/routing/Symfony/Component/Routing/RouteCollection.php |
Adds a route. |
RouteCollection::all |
function |
drupal/core/vendor/symfony/routing/Symfony/Component/Routing/RouteCollection.php |
Returns all routes in this collection. |
AssetCollection::all |
function |
drupal/core/vendor/kriswallsmith/assetic/src/Assetic/Asset/AssetCollection.php |
Returns all child assets. |
RouteCollection::get |
function |
drupal/core/vendor/symfony/routing/Symfony/Component/Routing/RouteCollection.php |
Gets a route by name. |
AssetCollection::add |
function |
drupal/core/vendor/kriswallsmith/assetic/src/Assetic/Asset/AssetCollection.php |
Adds an asset to the current collection. |
RequestDataCollector |
class |
drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/DataCollector/RequestDataCollector.php |
RequestDataCollector. |
Collection::contains |
function |
drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Collections/Collection.php |
Checks whether an element is contained in the collection.
This is an O(n) operation, where n is the size of the collection. |
ArrayCollection::key |
function |
drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Collections/ArrayCollection.php |
Gets the current key/index at the current internal iterator position. |
ArrayCollection::get |
function |
drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Collections/ArrayCollection.php |
Gets the element with the given key/index. |
ArrayCollection::set |
function |
drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Collections/ArrayCollection.php |
Adds/sets an element in the collection at the index / with the specified key. |
ArrayCollection::add |
function |
drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Collections/ArrayCollection.php |
Adds an element to the collection. |
ArrayCollection::map |
function |
drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Collections/ArrayCollection.php |
Applies the given function to each element in the collection and returns
a new collection with the elements returned by the function. |
DataCollector::$data |
property |
drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/DataCollector/DataCollector.php |
|
Profile::$collectors |
property |
drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Profiler/Profile.php |
|
Collection::hasValue |
function |
drupal/core/vendor/guzzle/common/Guzzle/Common/Collection.php |
Checks if any keys contains a certain value |
FilterCollection.php |
file |
drupal/core/vendor/kriswallsmith/assetic/src/Assetic/Filter/FilterCollection.php |
|
DumperCollectionTest |
class |
drupal/core/vendor/symfony/routing/Symfony/Component/Routing/Tests/Matcher/Dumper/DumperCollectionTest.php |
|
DumperCollection.php |
file |
drupal/core/vendor/symfony/routing/Symfony/Component/Routing/Matcher/Dumper/DumperCollection.php |
|
AssetCollection::load |
function |
drupal/core/vendor/kriswallsmith/assetic/src/Assetic/Asset/AssetCollection.php |
Loads the asset into memory and applies load filters. |
AssetCollection::dump |
function |
drupal/core/vendor/kriswallsmith/assetic/src/Assetic/Asset/AssetCollection.php |
Applies dump filters and returns the asset as a string. |
Collection::getValues |
function |
drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Collections/Collection.php |
Gets all values of the collection. |
Collection::partition |
function |
drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Collections/Collection.php |
Partitions this collection in two collections according to a predicate.
Keys are preserved in the resulting collections. |
ArrayCollection::last |
function |
drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Collections/ArrayCollection.php |
Sets the internal iterator to the last element in the collection and
returns this element. |
ArrayCollection::next |
function |
drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Collections/ArrayCollection.php |
Moves the internal iterator position to the next element. |
ClassCollectionLoader |
class |
drupal/core/vendor/symfony/class-loader/Symfony/Component/ClassLoader/ClassCollectionLoader.php |
ClassCollectionLoader. |
CollectionTest::setUp |
function |
drupal/core/vendor/doctrine/common/tests/Doctrine/Tests/Common/Collections/CollectionTest.php |
|
TimeDataCollector.php |
file |
drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/DataCollector/TimeDataCollector.php |
|
TimeDataCollectorTest |
class |
drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/DataCollector/TimeDataCollectorTest.php |
|
Profiler::$collectors |
property |
drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Profiler/Profiler.php |
|
MatcherCollection.php |
file |
drupal/core/vendor/phpunit/phpunit-mock-objects/PHPUnit/Framework/MockObject/Stub/MatcherCollection.php |
|
GarbageCollectionTest |
class |
drupal/core/modules/system/lib/Drupal/system/Tests/KeyValueStore/GarbageCollectionTest.php |
Tests garbage collection for DatabaseStorageExpirable. |
FilterCollection::all |
function |
drupal/core/vendor/kriswallsmith/assetic/src/Assetic/Filter/FilterCollection.php |
|