diff --git a/classes/HeimrichHannot-UtilsBundle-Accordion-AccordionUtil.html b/classes/HeimrichHannot-UtilsBundle-Accordion-AccordionUtil.html new file mode 100644 index 00000000..e450e613 --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-Accordion-AccordionUtil.html @@ -0,0 +1,625 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
+

Contao Utils Bundle

+ + + + + +
+ +
+
+ + + + +
+ + +
+

+ AccordionUtil + + +
+ in package + +
+ + +

+ + + + + + +
+ Tags + +
+
+
+ deprecated +
+
+ + +
+
+ codeCoverageIgnore +
+
+ + +
+
+ + + + + + +

+ Table of Contents + +

+ +
+
+ $accordionSingleCache + +  : array<string|int, mixed> +
+
Single cache.
+ +
+ $accordionStartStopCache + +  : array<string|int, mixed> +
+
Start/Stop cache.
+ +
+ $framework + +  : ContaoFramework +
+
+ +
+ $container + +  : ContainerInterface +
+
+ +
+ __construct() + +  : mixed +
+
+ +
+ structureAccordionSingle() + +  : void +
+
Adds the following flags to the template data: +- first +- last +- parentId.
+ +
+ structureAccordionStartStop() + +  : mixed +
+
Adds the following flags to the template data: +- first +- last +- parentId.
+ +
+ + + + + + +
+

+ Properties + +

+
+

+ $accordionSingleCache + + + +

+ + +

Single cache.

+ + + protected + array<string|int, mixed> + $accordionSingleCache + = [] + + + + + +
+
+

+ $accordionStartStopCache + + + +

+ + +

Start/Stop cache.

+ + + protected + array<string|int, mixed> + $accordionStartStopCache + = [] + + + + + +
+
+

+ $framework + + + +

+ + + + + protected + ContaoFramework + $framework + + + + + + +
+
+

+ $container + + + +

+ + + + + private + ContainerInterface + $container + + + + + + +
+
+ +
+

+ Methods + +

+
+

+ __construct() + +

+ + + + + public + __construct(ContainerInterface $container) : mixed + +
+ +
Parameters
+
+
+ $container + : ContainerInterface +
+
+
+ +
+
+ + + +
Return values
+ mixed + — + + +
+
+

+ structureAccordionSingle() + +

+ + +

Adds the following flags to the template data: +- first +- last +- parentId.

+ + + public + structureAccordionSingle(array<string|int, mixed> &$data[, string $prefix = 'accordion_' ]) : void + +

This is needed if your want to group multiple single accordion elements into an accordion wrapper like in bootstrap 4.

+
+ +
Parameters
+
+
+ $data + : array<string|int, mixed> +
+
+

Data describing the accordion. Usually this is taken from \Contao\Template::getData().

+
+ +
+
+ $prefix + : string + = 'accordion_'
+
+

The prefix for the flags

+
+ +
+
+ + + +
Return values
+ void + — + + +
+
+

+ structureAccordionStartStop() + +

+ + +

Adds the following flags to the template data: +- first +- last +- parentId.

+ + + public + structureAccordionStartStop(array<string|int, mixed> &$data[, string $prefix = 'accordion_' ]) : mixed + + +
Parameters
+
+
+ $data + : array<string|int, mixed> +
+
+

Data describing the accordion. Usually this is taken from \Contao\Template::getData().

+
+ +
+
+ $prefix + : string + = 'accordion_'
+
+

The prefix for the flags

+
+ +
+
+ + +
+ Tags + +
+
+
+ deprecated +
+
+ +

Use Utils service instead

+
+ +
+
+ codeCoverageIgnore +
+
+ + +
+
+ +
Return values
+ mixed + — + + +
+
+ + + + +
+
+
+
+

Search results

+ +
+
+
    +
    +
    +
    +
    +
    + + +
    + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-Arrays-ArrayUtil.html b/classes/HeimrichHannot-UtilsBundle-Arrays-ArrayUtil.html new file mode 100644 index 00000000..616c555d --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-Arrays-ArrayUtil.html @@ -0,0 +1,1073 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
    +

    Contao Utils Bundle

    + + + + + +
    + +
    +
    + + + + +
    + + +
    +

    + ArrayUtil + + +
    + in package + +
    + + +

    + + + + +
    + + + + + + + + +

    + Table of Contents + +

    + +
    +
    + $framework + +  : ContaoFramework +
    +
    + +
    + $container + +  : ContainerInterface +
    +
    + +
    + __construct() + +  : mixed +
    +
    + +
    + aasort() + +  : mixed +
    +
    sort an array alphabetically by some key in the second layer (x => array(key1, key2, key3)).
    + +
    + arrayToObject() + +  : stdClass +
    +
    Creates a stdClass from array.
    + +
    + filterByPrefixes() + +  : array<string|int, mixed> +
    +
    Filter an Array by given prefixes.
    + +
    + flattenArray() + +  : array<string|int, mixed> +
    +
    Flattens an multidimensional array to one dimension. Keys are not preserved.
    + +
    + getArrayRowByFieldValue() + +  : mixed +
    +
    Returns a row of an multidimensional array by field value. Returns false, if no row found.
    + +
    + implodeRecursive() + +  : mixed +
    +
    + +
    + insertBeforeKey() + +  : mixed +
    +
    Insert a new entry before an specific key in array.
    + +
    + insertInArrayByName() + +  : mixed +
    +
    Insert a value into an existing array by key name.
    + +
    + removePrefix() + +  : array<string|int, mixed> +
    +
    + +
    + removeValue() + +  : bool +
    +
    Removes a value in an array.
    + +
    + + + + + + +
    +

    + Properties + +

    +
    +

    + $framework + + + +

    + + + + + protected + ContaoFramework + $framework + + + + + + +
    +
    +

    + $container + + + +

    + + + + + private + ContainerInterface + $container + + + + + + +
    +
    + +
    +

    + Methods + +

    +
    +

    + __construct() + +

    + + + + + public + __construct(ContainerInterface $container) : mixed + +
    + +
    Parameters
    +
    +
    + $container + : ContainerInterface +
    +
    +
    + +
    +
    + + + +
    Return values
    + mixed + — + + +
    +
    +

    + aasort() + +

    + + +

    sort an array alphabetically by some key in the second layer (x => array(key1, key2, key3)).

    + + + public + aasort(array<string|int, mixed> &$array, mixed $key) : mixed + + +
    Parameters
    +
    +
    + $array + : array<string|int, mixed> +
    +
    +
    + +
    +
    + $key + : mixed +
    +
    +
    + +
    +
    + + + +
    Return values
    + mixed + — + + +
    +
    +

    + arrayToObject() + +

    + + +

    Creates a stdClass from array.

    + + + public + arrayToObject( $array) : stdClass + + +
    Parameters
    +
    +
    + $array + : +
    +
    + +
    +
    + + + +
    Return values
    + stdClass + — + + +
    +
    +

    + filterByPrefixes() + +

    + + +

    Filter an Array by given prefixes.

    + + + public + filterByPrefixes([array<string|int, mixed> $data = [] ][, array<string|int, mixed> $prefixes = [] ]) : array<string|int, mixed> + + +
    Parameters
    +
    +
    + $data + : array<string|int, mixed> + = []
    +
    +
    + +
    +
    + $prefixes + : array<string|int, mixed> + = []
    +
    + +
    +
    + + + +
    Return values
    + array<string|int, mixed> + — +

    the filtered array or $arrData if $prefix is empty

    +
    + + +
    +
    +

    + flattenArray() + +

    + + +

    Flattens an multidimensional array to one dimension. Keys are not preserved.

    + + + public + flattenArray(array<string|int, mixed> $array) : array<string|int, mixed> + + +
    Parameters
    +
    +
    + $array + : array<string|int, mixed> +
    +
    +
    + +
    +
    + + + +
    Return values
    + array<string|int, mixed> + — + + +
    +
    +

    + getArrayRowByFieldValue() + +

    + + +

    Returns a row of an multidimensional array by field value. Returns false, if no row found.

    + + + public + getArrayRowByFieldValue(string|int $key, mixed $value, array<string|int, mixed> $haystack[, bool $strictType = false ]) : mixed + + +
    Parameters
    +
    +
    + $key + : string|int +
    +
    +

    The array key (fieldname)

    +
    + +
    +
    + $value + : mixed +
    +
    + +
    +
    + $haystack + : array<string|int, mixed> +
    +
    +

    a multidimensional array

    +
    + +
    +
    + $strictType + : bool + = false
    +
    +

    Specifiy if type comparison should be strict (type-safe)

    +
    + +
    +
    + + + +
    Return values
    + mixed + — + + +
    +
    +

    + implodeRecursive() + +

    + + + + + public + implodeRecursive(mixed $var[, mixed $binary = false ]) : mixed + +
    + +
    Parameters
    +
    +
    + $var + : mixed +
    +
    +
    + +
    +
    + $binary + : mixed + = false
    +
    +
    + +
    +
    + + + +
    Return values
    + mixed + — + + +
    +
    +

    + insertBeforeKey() + +

    + + +

    Insert a new entry before an specific key in array.

    + + + public + static insertBeforeKey(array<string|int, mixed> &$array, string $key, string $newKey, mixed $newValue) : mixed + +

    If key not exist, the new entry is added to the end of the array. +Array is passed as reference.

    +

    Usage example: contao config.php to make your hook entry run before another.

    +
    + +
    Parameters
    +
    +
    + $array + : array<string|int, mixed> +
    +
    +

    Array the new entry should inserted to

    +
    + +
    +
    + $key + : string +
    +
    +

    The key where the new entry should be added before

    +
    + +
    +
    + $newKey + : string +
    +
    +

    The key of the entry that should be added

    +
    + +
    +
    + $newValue + : mixed +
    +
    +

    The value of the entry that should be added

    +
    + +
    +
    + + +
    + Tags + +
    +
    +
    + deprecated +
    +
    + +

    Use Utils::insertBeforeKey() instead

    +
    + +
    +
    + +
    Return values
    + mixed + — + + +
    +
    +

    + insertInArrayByName() + +

    + + +

    Insert a value into an existing array by key name.

    + + + public + insertInArrayByName(array<string|int, mixed> &$current, string $key, mixed $value, int $offset[, bool $strict = false ]) : mixed + + +
    Parameters
    +
    +
    + $current + : array<string|int, mixed> +
    +
    +

    The target array

    +
    + +
    +
    + $key + : string +
    +
    +

    the existing target key in the array

    +
    + +
    +
    + $value + : mixed +
    +
    +

    the new value to be inserted

    +
    + +
    +
    + $offset + : int +
    +
    +

    offset for inserting the new value

    +
    + +
    +
    + $strict + : bool + = false
    +
    +

    use strict behavior for array search

    +
    + +
    +
    + + +
    + Tags + +
    +
    +
    + deprecated +
    +
    + +

    Use utils service instead

    +
    + +
    +
    + codeCoverageIgnore +
    +
    + + +
    +
    + +
    Return values
    + mixed + — + + +
    +
    +

    + removePrefix() + +

    + + + + + public + removePrefix(string $prefix, array<string|int, mixed> $array) : array<string|int, mixed> + +
    + +
    Parameters
    +
    +
    + $prefix + : string +
    +
    +
    + +
    +
    + $array + : array<string|int, mixed> +
    +
    +
    + +
    +
    + + + +
    Return values
    + array<string|int, mixed> + — + + +
    +
    +

    + removeValue() + +

    + + +

    Removes a value in an array.

    + + + public + removeValue( $value, array<string|int, mixed> &$array) : bool + + +
    Parameters
    +
    +
    + $value + : +
    +
    + +
    +
    + $array + : array<string|int, mixed> +
    +
    +
    + +
    +
    + + +
    + Tags + +
    +
    +
    + deprecated +
    +
    + +

    Use Utils service instead

    +
    + +
    +
    + codeCoverageIgnore +
    +
    + + +
    +
    + +
    Return values
    + bool + — +

    Returns true if the value has been found and removed, false in other cases

    +
    + + +
    +
    + + + + +
    +
    +
    +
    +

    Search results

    + +
    +
    +
      +
      +
      +
      +
      +
      + + +
      + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-Cache-DatabaseCacheUtil.html b/classes/HeimrichHannot-UtilsBundle-Cache-DatabaseCacheUtil.html new file mode 100644 index 00000000..80db6d1a --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-Cache-DatabaseCacheUtil.html @@ -0,0 +1,623 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
      +

      Contao Utils Bundle

      + + + + + +
      + +
      +
      + + + + +
      + + +
      +

      + DatabaseCacheUtil + + +
      + in package + +
      + + +

      + + + + +
      + + + + + + + + +

      + Table of Contents + +

      + +
      +
      + DEFAULT_MAX_CACHE_TIME + +  = ['unit' => 'd', 'value' => 1] +
      +
      + +
      + $container + +  : ContainerInterface +
      +
      + +
      + $database + +  : Database +
      +
      + +
      + $framework + +  : ContaoFrameworkInterface +
      +
      + +
      + __construct() + +  : mixed +
      +
      + +
      + cacheValue() + +  : bool +
      +
      Store a given value to cache.
      + +
      + getValue() + +  : mixed +
      +
      Retrieve a value from cache.
      + +
      + keyExists() + +  : bool +
      +
      Check for a given cache key.
      + +
      + + + + +
      +

      + Constants + +

      +
      +

      + DEFAULT_MAX_CACHE_TIME + +

      + + + + + + public + mixed + DEFAULT_MAX_CACHE_TIME + = ['unit' => 'd', 'value' => 1] + + + +
      + +
      + + + +
      +
      + + +
      +

      + Properties + +

      +
      +

      + $container + + + +

      + + + + + protected + ContainerInterface + $container + + + + + + +
      +
      +

      + $database + + + +

      + + + + + protected + Database + $database + + + + + + +
      +
      +

      + $framework + + + +

      + + + + + protected + ContaoFrameworkInterface + $framework + + + + + + +
      +
      + +
      +

      + Methods + +

      +
      +

      + __construct() + +

      + + + + + public + __construct(ContainerInterface $container) : mixed + +
      + +
      Parameters
      +
      +
      + $container + : ContainerInterface +
      +
      +
      + +
      +
      + + + +
      Return values
      + mixed + — + + +
      +
      +

      + cacheValue() + +

      + + +

      Store a given value to cache.

      + + + public + cacheValue(string $key,  $value) : bool + + +
      Parameters
      +
      +
      + $key + : string +
      +
      +
      + +
      +
      + $value + : +
      +
      + +
      +
      + + +
      + Tags + +
      +
      +
      + throws +
      +
      + Exception + + +
      +
      + +
      Return values
      + bool + — + + +
      +
      +

      + getValue() + +

      + + +

      Retrieve a value from cache.

      + + + public + getValue(string $key) : mixed + + +
      Parameters
      +
      +
      + $key + : string +
      +
      +
      + +
      +
      + + + +
      Return values
      + mixed + — + + +
      +
      +

      + keyExists() + +

      + + +

      Check for a given cache key.

      + + + public + keyExists(string $key) : bool + + +
      Parameters
      +
      +
      + $key + : string +
      +
      +
      + +
      +
      + + + +
      Return values
      + bool + — + + +
      +
      + + + + +
      +
      +
      +
      +

      Search results

      + +
      +
      +
        +
        +
        +
        +
        +
        + + +
        + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-Cache-DatabaseTreeCache.html b/classes/HeimrichHannot-UtilsBundle-Cache-DatabaseTreeCache.html new file mode 100644 index 00000000..213343cd --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-Cache-DatabaseTreeCache.html @@ -0,0 +1,1330 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
        +

        Contao Utils Bundle

        + + + + + +
        + +
        +
        + + + + +
        + + +
        +

        + DatabaseTreeCache + + +
        + in package + +
        + + +

        + + + + +
        + + + + + + + + +

        + Table of Contents + +

        + +
        +
        + $cache + +  : array<string|int, mixed> +
        +
        Cache tree.
        + +
        + $cacheDir + +  : string +
        +
        Tree cache directory.
        + +
        + $containerUtil + +  : ContainerUtil +
        +
        + +
        + $database + +  : Database +
        +
        + +
        + $filesystem + +  : Filesystem +
        +
        + +
        + $framework + +  : ContaoFrameworkInterface +
        +
        + +
        + $modelUtil + +  : ModelUtil +
        +
        + +
        + $requestStack + +  : RequestStack +
        +
        + +
        + __construct() + +  : mixed +
        +
        + +
        + addConfigToTreeCache() + +  : mixed +
        +
        + +
        + generateAllCacheTree() + +  : mixed +
        +
        Generate all cache trees.
        + +
        + generateCacheTree() + +  : array<string|int, mixed> +
        +
        Generate the flat cache tree.
        + +
        + getChildRecords() + +  : array<string|int, mixed> +
        +
        Get all child records for given parent entities.
        + +
        + getParentRecords() + +  : array<string|int, mixed> +
        +
        Get all parent records for given child entity.
        + +
        + getTreeCache() + +  : array<string|int, mixed>|null +
        +
        Get the tree cache for a given table and key.
        + +
        + loadDataContainer() + +  : mixed +
        +
        Generate tree cache.
        + +
        + purgeCacheTree() + +  : mixed +
        +
        Purge the tree cache completely in order to take table relations into consideration.
        + +
        + registerDcaToCacheTree() + +  : bool +
        +
        Register a dca to the tree cache.
        + +
        + isCompleteInstallation() + +  : mixed +
        +
        + +
        + + + + + + +
        +

        + Properties + +

        +
        +

        + $cache + + + +

        + + +

        Cache tree.

        + + + protected + static array<string|int, mixed> + $cache + = [] + + + + + +
        +
        +

        + $cacheDir + + + +

        + + +

        Tree cache directory.

        + + + protected + string + $cacheDir + + + + + + +
        + +
        +

        + $database + + + +

        + + + + + protected + Database + $database + + + + + + +
        +
        +

        + $filesystem + + + +

        + + + + + protected + Filesystem + $filesystem + + + + + + +
        +
        +

        + $framework + + + +

        + + + + + protected + ContaoFrameworkInterface + $framework + + + + + + +
        + +
        +

        + $requestStack + + + +

        + + + + + protected + RequestStack + $requestStack + + + + + + +
        +
        + +
        +

        + Methods + +

        +
        +

        + __construct() + +

        + + + + + public + __construct(ContaoFrameworkInterface $framework, Filesystem $filesystem, ModelUtil $modelUtil, ContainerUtil $containerUtil, RequestStack $requestStack) : mixed + +
        + +
        Parameters
        +
        +
        + $framework + : ContaoFrameworkInterface +
        +
        +
        + +
        +
        + $filesystem + : Filesystem +
        +
        +
        + +
        +
        + $modelUtil + : ModelUtil +
        +
        +
        + +
        +
        + $containerUtil + : ContainerUtil +
        +
        +
        + +
        +
        + $requestStack + : RequestStack +
        +
        +
        + +
        +
        + + + +
        Return values
        + mixed + — + + +
        +
        +

        + addConfigToTreeCache() + +

        + + + + + public + addConfigToTreeCache(string $table, string $key[, array<string|int, mixed> $config = [] ]) : mixed + +
        + +
        Parameters
        +
        +
        + $table + : string +
        +
        +
        + +
        +
        + $key + : string +
        +
        +
        + +
        +
        + $config + : array<string|int, mixed> + = []
        +
        +
        + +
        +
        + + + +
        Return values
        + mixed + — + + +
        +
        +

        + generateAllCacheTree() + +

        + + +

        Generate all cache trees.

        + + + public + generateAllCacheTree( $cacheDir) : mixed + + +
        Parameters
        +
        +
        + $cacheDir + : +
        +
        + +
        +
        + + + +
        Return values
        + mixed + — + + +
        +
        +

        + generateCacheTree() + +

        + + +

        Generate the flat cache tree.

        + + + public + generateCacheTree(string $table[, array<string|int, mixed> $ids = [] ][, string $key = 'id' ][, array<string|int, mixed> $config = [] ][, array<string|int, mixed> $return = [] ]) : array<string|int, mixed> + + +
        Parameters
        +
        +
        + $table + : string +
        +
        +

        The database table

        +
        + +
        +
        + $ids + : array<string|int, mixed> + = []
        +
        +

        Root identifiers (parent ids)

        +
        + +
        +
        + $key + : string + = 'id'
        +
        +

        Custom index key (default: primary key from model)

        +
        + +
        +
        + $config + : array<string|int, mixed> + = []
        +
        +

        Tree config

        +
        + +
        +
        + $return + : array<string|int, mixed> + = []
        +
        +

        Internal return array

        +
        + +
        +
        + + + +
        Return values
        + array<string|int, mixed> + — +

        The flat cache tree

        +
        + + +
        +
        +

        + getChildRecords() + +

        + + +

        Get all child records for given parent entities.

        + + + public + getChildRecords(string $table[, array<string|int, mixed> $ids = [] ][, int $maxLevels = null ][, string $key = 'id' ][, array<string|int, mixed> $children = [] ], int $level) : array<string|int, mixed> + + +
        Parameters
        +
        +
        + $table + : string +
        +
        +

        The database table

        +
        + +
        +
        + $ids + : array<string|int, mixed> + = []
        +
        +

        The parent entity ids

        +
        + +
        +
        + $maxLevels + : int + = null
        +
        +

        The max stop level

        +
        + +
        +
        + $key + : string + = 'id'
        +
        +
        + +
        +
        + $children + : array<string|int, mixed> + = []
        +
        +

        Internal children return array

        +
        + +
        +
        + $level + : int +
        +
        +

        Internal depth attribute

        +
        + +
        +
        + + + +
        Return values
        + array<string|int, mixed> + — +

        An array containing all children for given parent entities

        +
        + + +
        +
        +

        + getParentRecords() + +

        + + +

        Get all parent records for given child entity.

        + + + public + getParentRecords(string $table, int $id[, int $maxLevels = null ][, string $key = 'id' ][, array<string|int, mixed> $parents = [] ], int $level) : array<string|int, mixed> + + +
        Parameters
        +
        +
        + $table + : string +
        +
        +

        The database table

        +
        + +
        +
        + $id + : int +
        +
        +

        The current entity id

        +
        + +
        +
        + $maxLevels + : int + = null
        +
        +

        The max stop level

        +
        + +
        +
        + $key + : string + = 'id'
        +
        +
        + +
        +
        + $parents + : array<string|int, mixed> + = []
        +
        +

        Internal children return array

        +
        + +
        +
        + $level + : int +
        +
        +

        Internal depth attribute

        +
        + +
        +
        + + + +
        Return values
        + array<string|int, mixed> + — +

        An array containing all children for given parent entities

        +
        + + +
        +
        +

        + getTreeCache() + +

        + + +

        Get the tree cache for a given table and key.

        + + + public + getTreeCache(string $table, mixed $key) : array<string|int, mixed>|null + + +
        Parameters
        +
        +
        + $table + : string +
        +
        +

        The database table

        +
        + +
        +
        + $key + : mixed +
        +
        +
        + +
        +
        + + + +
        Return values
        + array<string|int, mixed>|null + — + + +
        +
        +

        + loadDataContainer() + +

        + + +

        Generate tree cache.

        + + + public + loadDataContainer(mixed $table) : mixed + + +
        Parameters
        +
        +
        + $table + : mixed +
        +
        +
        + +
        +
        + + + +
        Return values
        + mixed + — + + +
        +
        +

        + purgeCacheTree() + +

        + + +

        Purge the tree cache completely in order to take table relations into consideration.

        + + + public + purgeCacheTree() : mixed + + + + + +
        Return values
        + mixed + — + + +
        +
        +

        + registerDcaToCacheTree() + +

        + + +

        Register a dca to the tree cache.

        + + + public + registerDcaToCacheTree(string $table[, array<string|int, mixed> $columns = [] ][, array<string|int, mixed> $values = [] ][, array<string|int, mixed> $options = [] ][, string $key = 'id' ]) : bool + + +
        Parameters
        +
        +
        + $table + : string +
        +
        +

        (The dca table)

        +
        + +
        +
        + $columns + : array<string|int, mixed> + = []
        +
        +

        Parent sql filter columns (e.g. tl_page.type)

        +
        + +
        +
        + $values + : array<string|int, mixed> + = []
        +
        +

        Parent sql filter values (e.g. root for tl_page.type)

        +
        + +
        +
        + $options + : array<string|int, mixed> + = []
        +
        +

        SQL Options for sorting

        +
        + +
        +
        + $key + : string + = 'id'
        +
        +
        + +
        +
        + + + +
        Return values
        + bool + — +

        Acknowledge state if register succeeded

        +
        + + +
        +
        +

        + isCompleteInstallation() + +

        + + + + + private + isCompleteInstallation(mixed $table) : mixed + +
        + +
        Parameters
        +
        +
        + $table + : mixed +
        +
        +
        + +
        +
        + + + +
        Return values
        + mixed + — + + +
        +
        + + + + +
        +
        +
        +
        +

        Search results

        + +
        +
        +
          +
          +
          +
          +
          +
          + + +
          + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-Cache-FileCache.html b/classes/HeimrichHannot-UtilsBundle-Cache-FileCache.html new file mode 100644 index 00000000..b995ad9c --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-Cache-FileCache.html @@ -0,0 +1,1372 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
          +

          Contao Utils Bundle

          + + + + + +
          + +
          +
          + + + + +
          + + +
          +

          + FileCache + + +
          + in package + +
          + + +

          + + + +

          Class FileCache.

          + +

          The cache will be created in the cache folder defined by the config (default the huh.utils.filecache.folder parameter) +Within the cache folder you can specify a namespace serving as subfolder.

          +
          + + +
          + Tags + +
          +
          +
          + deprecated +
          +
          + +

          Will be removed in version 3.0. Use FileStorageUtil instead.

          +
          + +
          +
          + codeCoverageIgnore +
          +
          + + +
          +
          + + + + + + +

          + Table of Contents + +

          + +
          +
          + $cacheFolder + +  : string +
          +
          The folder where the images should be cached.
          + +
          + $cacheFolderWithNamespace + +  : string +
          +
          The complete path to the current cache folder including namespace.
          + +
          + $container + +  : ContainerInterface +
          +
          + +
          + $namespace + +  : string +
          +
          The subfolder within the cache folder.
          + +
          + $fileUtil + +  : FileUtil +
          +
          + +
          + $projectDir + +  : string +
          +
          + +
          + __construct() + +  : mixed +
          +
          + +
          + exist() + +  : bool +
          +
          Checks if a cached file already exist in cache. Namespace is taken into account.
          + +
          + generateCacheName() + +  : string +
          +
          Generate a file name for cache.
          + +
          + get() + +  : bool|string +
          +
          Get the file path for the given identifier. Namespace is taken into account.
          + +
          + getAbsoluteCachePath() + +  : string +
          +
          Returns the absolute path to the cache folder.
          + +
          + getCacheFileName() + +  : string +
          +
          Get the cache file name by the given identifier.
          + +
          + getCacheFilePath() + +  : string +
          +
          Same as generateCacheName, but returns complete path to cache.
          + +
          + getCacheFolder() + +  : string +
          +
          The cache folder (without namespace).
          + +
          + getCacheFolderWithNamespace() + +  : string +
          +
          Get the cache folder (including namespace).
          + +
          + getNamespace() + +  : string +
          +
          + +
          + setCacheFolder() + +  : mixed +
          +
          Set cache folder (without namespace).
          + +
          + setNamespace() + +  : mixed +
          +
          + +
          + generatePath() + +  : mixed +
          +
          Recreates the path to the current cache folder.
          + +
          + + + + + + +
          +

          + Properties + +

          +
          +

          + $cacheFolder + + + +

          + + +

          The folder where the images should be cached.

          + + + protected + string + $cacheFolder + + + + + + +
          +
          +

          + $cacheFolderWithNamespace + + + +

          + + +

          The complete path to the current cache folder including namespace.

          + + + protected + string + $cacheFolderWithNamespace + + + + + + +
          +
          +

          + $container + + + +

          + + + + + protected + ContainerInterface + $container + + + + + + +
          +
          +

          + $namespace + + + +

          + + +

          The subfolder within the cache folder.

          + + + protected + string + $namespace + = '' + + + + + +
          +
          +

          + $fileUtil + + + +

          + + + + + private + FileUtil + $fileUtil + + + + + + +
          +
          +

          + $projectDir + + + +

          + + + + + private + string + $projectDir + + + + + + +
          +
          + +
          +

          + Methods + +

          +
          +

          + __construct() + +

          + + + + + public + __construct(ContainerInterface $container) : mixed + +
          + +
          Parameters
          +
          +
          + $container + : ContainerInterface +
          +
          +
          + +
          +
          + + + +
          Return values
          + mixed + — + + +
          +
          +

          + exist() + +

          + + +

          Checks if a cached file already exist in cache. Namespace is taken into account.

          + + + public + exist(string $identifier[, string $fileExtension = '' ]) : bool + + +
          Parameters
          +
          +
          + $identifier + : string +
          +
          +

          The identifier

          +
          + +
          +
          + $fileExtension + : string + = ''
          +
          +

          If not set, a file with no file extension is searched

          +
          + +
          +
          + + +
          + Tags + +
          +
          +
          + throws +
          +
          + Exception + + +
          +
          + deprecated +
          +
          + +

          Will be removed in 3.0. Use FileStorageUtil instead

          +
          + +
          +
          + +
          Return values
          + bool + — + + +
          +
          +

          + generateCacheName() + +

          + + +

          Generate a file name for cache.

          + + + public + generateCacheName([string $identifier = '' ][, string $prefix = '' ][, bool $more_entropy = true ][, string $fileExtension = '' ]) : string + +

          If a identifier is given, you get the resulting file name. +If no identifier is given, if will return a unique file name without extension.

          +
          + +
          Parameters
          +
          +
          + $identifier + : string + = ''
          +
          +

          An identifier for the cache. For example be the source file name or path. If empty, a unique filename will be generated.

          +
          + +
          +
          + $prefix + : string + = ''
          +
          +

          Adds a prefix to the generated name. Only if $identifier is empty.

          +
          + +
          +
          + $more_entropy + : bool + = true
          +
          +

          A longer name for the unique filename. Only if $identifier is empty. Default

          +
          + +
          +
          + $fileExtension + : string + = ''
          +
          +

          optional: If set, the file extension will be appended to the generated file name

          +
          + +
          +
          + + +
          + Tags + +
          +
          +
          + deprecated +
          +
          + +

          Will be removed in 3.0. Use FileStorageUtil instead

          +
          + +
          +
          + +
          Return values
          + string + — +

          a unique filename for caching

          +
          + + +
          +
          +

          + get() + +

          + + +

          Get the file path for the given identifier. Namespace is taken into account.

          + + + public + get(string $identifier[, string $fileExtension = '' ][, callable $saveCallback = null ]) : bool|string + + +
          Parameters
          +
          +
          + $identifier + : string +
          +
          +
          + +
          +
          + $fileExtension + : string + = ''
          +
          +
          + +
          +
          + $saveCallback + : callable + = null
          +
          +

          A callback handles the file save functionality. Get filepath, filename and the identifier as parameter. Expects a boolean return value.

          +
          + +
          +
          + + +
          + Tags + +
          +
          +
          + throws +
          +
          + Exception + + +
          +
          + deprecated +
          +
          + +

          Will be removed in 3.0. Use FileStorageUtil instead

          +
          + +
          +
          + +
          Return values
          + bool|string + — +

          returns the path of the cached file or false, if cached file could not be found

          +
          + + +
          +
          +

          + getAbsoluteCachePath() + +

          + + +

          Returns the absolute path to the cache folder.

          + + + public + getAbsoluteCachePath() : string + + + + +
          + Tags + +
          +
          +
          + deprecated +
          +
          + +

          Will be removed in 3.0. Use FileStorageUtil instead

          +
          + +
          +
          + +
          Return values
          + string + — + + +
          +
          +

          + getCacheFileName() + +

          + + +

          Get the cache file name by the given identifier.

          + + + public + getCacheFileName( $identifier) : string + + +
          Parameters
          +
          +
          + $identifier + : +
          +
          + +
          +
          + + +
          + Tags + +
          +
          +
          + deprecated +
          +
          + +

          Will be removed in 3.0. Use FileStorageUtil instead

          +
          + +
          +
          + +
          Return values
          + string + — + + +
          +
          +

          + getCacheFilePath() + +

          + + +

          Same as generateCacheName, but returns complete path to cache.

          + + + public + getCacheFilePath([string $filename = '' ][, string $prefix = '' ][, bool $more_entropy = true ]) : string + +

          If no filename is given, you need to add the file extension by yourself!

          +
          + +
          Parameters
          +
          +
          + $filename + : string + = ''
          +
          +

          The filename of the file that should be cached. If empty, a unique filename will be generated.

          +
          + +
          +
          + $prefix + : string + = ''
          +
          +

          Adds a prefix to the generated name. Only if $filename is empty.

          +
          + +
          +
          + $more_entropy + : bool + = true
          +
          +

          A longer name for the unique filename. Only if filename is empty. Default

          +
          + +
          +
          + + +
          + Tags + +
          +
          +
          + deprecated +
          +
          + +

          Will be removed in 3.0. Use FileStorageUtil instead

          +
          + +
          +
          + +
          Return values
          + string + — +

          the path including the filename to save the file to the cache

          +
          + + +
          +
          +

          + getCacheFolder() + +

          + + +

          The cache folder (without namespace).

          + + + public + getCacheFolder() : string + + + + +
          + Tags + +
          +
          +
          + deprecated +
          +
          + +

          Will be removed in 3.0. Use FileStorageUtil instead

          +
          + +
          +
          + +
          Return values
          + string + — + + +
          +
          +

          + getCacheFolderWithNamespace() + +

          + + +

          Get the cache folder (including namespace).

          + + + public + getCacheFolderWithNamespace() : string + + + + +
          + Tags + +
          +
          +
          + deprecated +
          +
          + +

          Will be removed in 3.0. Use FileStorageUtil instead

          +
          + +
          +
          + +
          Return values
          + string + — + + +
          +
          +

          + getNamespace() + +

          + + + + + public + getNamespace() : string + + + + +
          + Tags + +
          +
          +
          + deprecated +
          +
          + +

          Will be removed in 3.0. Use FileStorageUtil instead

          +
          + +
          +
          + +
          Return values
          + string + — + + +
          +
          +

          + setCacheFolder() + +

          + + +

          Set cache folder (without namespace).

          + + + public + setCacheFolder(string $cacheFolder) : mixed + + +
          Parameters
          +
          +
          + $cacheFolder + : string +
          +
          +
          + +
          +
          + + +
          + Tags + +
          +
          +
          + deprecated +
          +
          + +

          Will be removed in 3.0. Use FileStorageUtil instead

          +
          + +
          +
          + +
          Return values
          + mixed + — + + +
          +
          +

          + setNamespace() + +

          + + + + + public + setNamespace(string $namespace) : mixed + + +
          Parameters
          +
          +
          + $namespace + : string +
          +
          +
          + +
          +
          + + +
          + Tags + +
          +
          +
          + deprecated +
          +
          + +

          Will be removed in 3.0. Use FileStorageUtil instead

          +
          + +
          +
          + +
          Return values
          + mixed + — + + +
          +
          +

          + generatePath() + +

          + + +

          Recreates the path to the current cache folder.

          + + + protected + generatePath() : mixed + + + + + +
          Return values
          + mixed + — + + +
          +
          + + + + +
          +
          +
          +
          +

          Search results

          + +
          +
          +
            +
            +
            +
            +
            +
            + + +
            + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-Cache-RemoteImageCache.html b/classes/HeimrichHannot-UtilsBundle-Cache-RemoteImageCache.html new file mode 100644 index 00000000..4047f8e4 --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-Cache-RemoteImageCache.html @@ -0,0 +1,464 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
            +

            Contao Utils Bundle

            + + + + + +
            + +
            +
            + + + + +
            + + +
            +

            + RemoteImageCache + + +
            + in package + +
            + + +

            + + + + +
            + + + + + + + + +

            + Table of Contents + +

            + +
            +
            + $framework + +  : ContaoFrameworkInterface +
            +
            + +
            + $container + +  : ContainerInterface +
            +
            + +
            + __construct() + +  : mixed +
            +
            + +
            + get() + +  : bool|string +
            +
            Get a remote file from cache and cache file, if not already in cache.
            + +
            + + + + + + +
            +

            + Properties + +

            +
            +

            + $framework + + + +

            + + + + + protected + ContaoFrameworkInterface + $framework + + + + + + +
            +
            +

            + $container + + + +

            + + + + + private + ContainerInterface + $container + + + + + + +
            +
            + +
            +

            + Methods + +

            +
            +

            + __construct() + +

            + + + + + public + __construct(ContainerInterface $container) : mixed + +
            + +
            Parameters
            +
            +
            + $container + : ContainerInterface +
            +
            +
            + +
            +
            + + + +
            Return values
            + mixed + — + + +
            +
            +

            + get() + +

            + + +

            Get a remote file from cache and cache file, if not already in cache.

            + + + public + get(string $identifier, string $folder, string $remoteUrl[, bool $returnUuid = false ]) : bool|string + +

            Returns false, if remote file could not be fetched or given uuid is not valid. +Else returns the url or, if $returnUuid is set true, the uuid of the image.

            +
            + +
            Parameters
            +
            +
            + $identifier + : string +
            +
            +

            Used as filename of the cached image. Should be unique within the folder scope

            +
            + +
            +
            + $folder + : string +
            +
            +

            Folder path or uuid of the file

            +
            + +
            +
            + $remoteUrl + : string +
            +
            +

            The url of the cached (or to cache) file

            +
            + +
            +
            + $returnUuid + : bool + = false
            +
            +

            Return uuid instead of the path

            +
            + +
            +
            + + +
            + Tags + +
            +
            +
            + throws +
            +
            + Exception + + +
            +
            + +
            Return values
            + bool|string + — + + +
            +
            + + + + +
            +
            +
            +
            +

            Search results

            + +
            +
            +
              +
              +
              +
              +
              +
              + + +
              + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-Cache-UtilCacheWarmer.html b/classes/HeimrichHannot-UtilsBundle-Cache-UtilCacheWarmer.html new file mode 100644 index 00000000..1cd18754 --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-Cache-UtilCacheWarmer.html @@ -0,0 +1,741 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
              +

              Contao Utils Bundle

              + + + + + +
              + +
              +
              + + + + +
              + + +
              +

              + UtilCacheWarmer + + +
              + in package + +
              + + + implements + CacheWarmerInterface + +

              + + + + +
              + + + + + + +

              + Interfaces, Classes and Traits + +

              + +
              +
              CacheWarmerInterface
              +
              + + +
              + + +

              + Table of Contents + +

              + +
              +
              + $connection + +  : Connection +
              +
              + +
              + $filesystem + +  : Filesystem +
              +
              + +
              + $framework + +  : ContaoFrameworkInterface +
              +
              + +
              + $templateUtil + +  : TemplateUtil +
              +
              + +
              + __construct() + +  : mixed +
              +
              Constructor.
              + +
              + isOptional() + +  : mixed +
              +
              {@inheritdoc}
              + +
              + warmUp() + +  : mixed +
              +
              {@inheritdoc}
              + +
              + generateDatabaseTreeCache() + +  : mixed +
              +
              + +
              + generateTemplateMapper() + +  : mixed +
              +
              Generates the template mapper array.
              + +
              + isCompleteInstallation() + +  : bool +
              +
              Checks if the installation is complete.
              + +
              + + + + + + +
              +

              + Properties + +

              +
              +

              + $connection + + + +

              + + + + + private + Connection + $connection + + + + + + +
              +
              +

              + $filesystem + + + +

              + + + + + private + Filesystem + $filesystem + + + + + + +
              +
              +

              + $framework + + + +

              + + + + + private + ContaoFrameworkInterface + $framework + + + + + + +
              + +
              + +
              +

              + Methods + +

              +
              +

              + __construct() + +

              + + +

              Constructor.

              + + + public + __construct(Filesystem $filesystem, ResourceFinderInterface $finder, FileLocator $locator, string $rootDir, Connection $connection, TemplateUtil $templateUtil, ContaoFrameworkInterface $framework) : mixed + + +
              Parameters
              +
              +
              + $filesystem + : Filesystem +
              +
              +
              + +
              +
              + $finder + : ResourceFinderInterface +
              +
              +
              + +
              +
              + $locator + : FileLocator +
              +
              +
              + +
              +
              + $rootDir + : string +
              +
              + +
              +
              + $connection + : Connection +
              +
              +
              + +
              +
              + $templateUtil + : TemplateUtil +
              +
              +
              + +
              +
              + $framework + : ContaoFrameworkInterface +
              +
              +
              + +
              +
              + + + +
              Return values
              + mixed + — + + +
              +
              +

              + isOptional() + +

              + + +

              {@inheritdoc}

              + + + public + isOptional() : mixed + + + + + +
              Return values
              + mixed + — + + +
              +
              +

              + warmUp() + +

              + + +

              {@inheritdoc}

              + + + public + warmUp(mixed $cacheDir) : mixed + + +
              Parameters
              +
              +
              + $cacheDir + : mixed +
              +
              +
              + +
              +
              + + + +
              Return values
              + mixed + — + + +
              +
              +

              + generateDatabaseTreeCache() + +

              + + + + + private + generateDatabaseTreeCache(mixed $cacheDir) : mixed + +
              + +
              Parameters
              +
              +
              + $cacheDir + : mixed +
              +
              +
              + +
              +
              + + + +
              Return values
              + mixed + — + + +
              +
              +

              + generateTemplateMapper() + +

              + + +

              Generates the template mapper array.

              + + + private + generateTemplateMapper(string $cacheDir) : mixed + + +
              Parameters
              +
              +
              + $cacheDir + : string +
              +
              +

              The cache directory

              +
              + +
              +
              + + + +
              Return values
              + mixed + — + + +
              +
              +

              + isCompleteInstallation() + +

              + + +

              Checks if the installation is complete.

              + + + private + isCompleteInstallation() : bool + + + + + +
              Return values
              + bool + — + + +
              +
              + + + + +
              +
              +
              +
              +

              Search results

              + +
              +
              +
                +
                +
                +
                +
                +
                + + +
                + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-Choice-AbstractChoice.html b/classes/HeimrichHannot-UtilsBundle-Choice-AbstractChoice.html new file mode 100644 index 00000000..d2db97f6 --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-Choice-AbstractChoice.html @@ -0,0 +1,718 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                +

                Contao Utils Bundle

                + + + + + +
                + +
                +
                + + + + +
                + + +
                +

                + AbstractChoice + + +
                + in package + +
                + + +

                + + + + +
                + + + + + + + + +

                + Table of Contents + +

                + +
                +
                + $cache + +  : FilesystemAdapter +
                +
                Current file cache.
                + +
                + $cacheKey + +  : string +
                +
                Current cache key name.
                + +
                + $context + +  : mixed +
                +
                Current context.
                + +
                + $data + +  : array<string|int, mixed> +
                +
                Context data.
                + +
                + $framework + +  : ContaoFrameworkInterface +
                +
                + +
                + __construct() + +  : mixed +
                +
                + +
                + getCachedChoices() + +  : mixed +
                +
                + +
                + getChoices() + +  : mixed +
                +
                + +
                + getContext() + +  : mixed +
                +
                + +
                + setContext() + +  : mixed +
                +
                + +
                + collect() + +  : array<string|int, mixed> +
                +
                + +
                + + + + + + +
                +

                + Properties + +

                +
                +

                + $cache + + + +

                + + +

                Current file cache.

                + + + protected + FilesystemAdapter + $cache + = null + + + + + +
                +
                +

                + $cacheKey + + + +

                + + +

                Current cache key name.

                + + + protected + string + $cacheKey + + + + + + +
                +
                +

                + $context + + + +

                + + +

                Current context.

                + + + protected + mixed + $context + + + + + + +
                +
                +

                + $data + + + +

                + + +

                Context data.

                + + + protected + array<string|int, mixed> + $data + = [] + + + + + +
                +
                +

                + $framework + + + +

                + + + + + protected + ContaoFrameworkInterface + $framework + + + + + + +
                +
                + +
                +

                + Methods + +

                +
                +

                + __construct() + +

                + + + + + public + __construct(ContaoFrameworkInterface $framework) : mixed + +
                + +
                Parameters
                +
                +
                + $framework + : ContaoFrameworkInterface +
                +
                +
                + +
                +
                + + + +
                Return values
                + mixed + — + + +
                +
                +

                + getCachedChoices() + +

                + + + + + public + getCachedChoices([mixed $context = [] ]) : mixed + +
                + +
                Parameters
                +
                +
                + $context + : mixed + = []
                +
                +
                + +
                +
                + + + +
                Return values
                + mixed + — + + +
                +
                +

                + getChoices() + +

                + + + + + public + getChoices([mixed $context = [] ]) : mixed + +
                + +
                Parameters
                +
                +
                + $context + : mixed + = []
                +
                +
                + +
                +
                + + + +
                Return values
                + mixed + — + + +
                +
                +

                + getContext() + +

                + + + + + public + getContext() : mixed + + + + + +
                Return values
                + mixed + — + + +
                +
                +

                + setContext() + +

                + + + + + public + setContext(mixed $context) : mixed + + +
                Parameters
                +
                +
                + $context + : mixed +
                +
                + +
                +
                + + + +
                Return values
                + mixed + — + + +
                +
                +

                + collect() + +

                + + + + + protected + abstract collect() : array<string|int, mixed> + + + + + +
                Return values
                + array<string|int, mixed> + — + + +
                +
                + + + + +
                +
                +
                +
                +

                Search results

                + +
                +
                +
                  +
                  +
                  +
                  +
                  +
                  + + +
                  + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-Choice-DataContainerChoice.html b/classes/HeimrichHannot-UtilsBundle-Choice-DataContainerChoice.html new file mode 100644 index 00000000..33eb2a54 --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-Choice-DataContainerChoice.html @@ -0,0 +1,721 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                  +

                  Contao Utils Bundle

                  + + + + + +
                  + +
                  +
                  + + + + +
                  + + +
                  +

                  + DataContainerChoice + + + extends AbstractChoice + + +
                  + in package + +
                  + + +

                  + + + + +
                  + + + + + + + + +

                  + Table of Contents + +

                  + +
                  +
                  + $cache + +  : FilesystemAdapter +
                  +
                  Current file cache.
                  + +
                  + $cacheKey + +  : string +
                  +
                  Current cache key name.
                  + +
                  + $context + +  : mixed +
                  +
                  Current context.
                  + +
                  + $data + +  : array<string|int, mixed> +
                  +
                  Context data.
                  + +
                  + $framework + +  : ContaoFrameworkInterface +
                  +
                  + +
                  + __construct() + +  : mixed +
                  +
                  + +
                  + getCachedChoices() + +  : mixed +
                  +
                  + +
                  + getChoices() + +  : mixed +
                  +
                  + +
                  + getContext() + +  : mixed +
                  +
                  + +
                  + setContext() + +  : mixed +
                  +
                  + +
                  + collect() + +  : array<string|int, mixed> +
                  +
                  + +
                  + + + + + + +
                  +

                  + Properties + +

                  +
                  +

                  + $cache + + + +

                  + + +

                  Current file cache.

                  + + + protected + FilesystemAdapter + $cache + = null + + + + + +
                  +
                  +

                  + $cacheKey + + + +

                  + + +

                  Current cache key name.

                  + + + protected + string + $cacheKey + + + + + + +
                  +
                  +

                  + $context + + + +

                  + + +

                  Current context.

                  + + + protected + mixed + $context + + + + + + +
                  +
                  +

                  + $data + + + +

                  + + +

                  Context data.

                  + + + protected + array<string|int, mixed> + $data + = [] + + + + + +
                  +
                  +

                  + $framework + + + +

                  + + + + + protected + ContaoFrameworkInterface + $framework + + + + + + +
                  +
                  + +
                  +

                  + Methods + +

                  +
                  +

                  + __construct() + +

                  + + + + + public + __construct(ContaoFrameworkInterface $framework) : mixed + +
                  + +
                  Parameters
                  +
                  +
                  + $framework + : ContaoFrameworkInterface +
                  +
                  +
                  + +
                  +
                  + + + +
                  Return values
                  + mixed + — + + +
                  +
                  +

                  + getCachedChoices() + +

                  + + + + + public + getCachedChoices([mixed $context = [] ]) : mixed + +
                  + +
                  Parameters
                  +
                  +
                  + $context + : mixed + = []
                  +
                  +
                  + +
                  +
                  + + + +
                  Return values
                  + mixed + — + + +
                  +
                  +

                  + getChoices() + +

                  + + + + + public + getChoices([mixed $context = [] ]) : mixed + +
                  + +
                  Parameters
                  +
                  +
                  + $context + : mixed + = []
                  +
                  +
                  + +
                  +
                  + + + +
                  Return values
                  + mixed + — + + +
                  +
                  +

                  + getContext() + +

                  + + + + + public + getContext() : mixed + + + + + +
                  Return values
                  + mixed + — + + +
                  +
                  +

                  + setContext() + +

                  + + + + + public + setContext(mixed $context) : mixed + + +
                  Parameters
                  +
                  +
                  + $context + : mixed +
                  +
                  + +
                  +
                  + + + +
                  Return values
                  + mixed + — + + +
                  +
                  +

                  + collect() + +

                  + + + + + protected + collect() : array<string|int, mixed> + + + + + +
                  Return values
                  + array<string|int, mixed> + — + + +
                  +
                  + + + + +
                  +
                  +
                  +
                  +

                  Search results

                  + +
                  +
                  +
                    +
                    +
                    +
                    +
                    +
                    + + +
                    + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-Choice-FieldChoice.html b/classes/HeimrichHannot-UtilsBundle-Choice-FieldChoice.html new file mode 100644 index 00000000..b8e93b9c --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-Choice-FieldChoice.html @@ -0,0 +1,721 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                    +

                    Contao Utils Bundle

                    + + + + + +
                    + +
                    +
                    + + + + +
                    + + +
                    +

                    + FieldChoice + + + extends AbstractChoice + + +
                    + in package + +
                    + + +

                    + + + + +
                    + + + + + + + + +

                    + Table of Contents + +

                    + +
                    +
                    + $cache + +  : FilesystemAdapter +
                    +
                    Current file cache.
                    + +
                    + $cacheKey + +  : string +
                    +
                    Current cache key name.
                    + +
                    + $context + +  : mixed +
                    +
                    Current context.
                    + +
                    + $data + +  : array<string|int, mixed> +
                    +
                    Context data.
                    + +
                    + $framework + +  : ContaoFrameworkInterface +
                    +
                    + +
                    + __construct() + +  : mixed +
                    +
                    + +
                    + getCachedChoices() + +  : mixed +
                    +
                    + +
                    + getChoices() + +  : mixed +
                    +
                    + +
                    + getContext() + +  : mixed +
                    +
                    + +
                    + setContext() + +  : mixed +
                    +
                    + +
                    + collect() + +  : array<string|int, mixed> +
                    +
                    + +
                    + + + + + + +
                    +

                    + Properties + +

                    +
                    +

                    + $cache + + + +

                    + + +

                    Current file cache.

                    + + + protected + FilesystemAdapter + $cache + = null + + + + + +
                    +
                    +

                    + $cacheKey + + + +

                    + + +

                    Current cache key name.

                    + + + protected + string + $cacheKey + + + + + + +
                    +
                    +

                    + $context + + + +

                    + + +

                    Current context.

                    + + + protected + mixed + $context + + + + + + +
                    +
                    +

                    + $data + + + +

                    + + +

                    Context data.

                    + + + protected + array<string|int, mixed> + $data + = [] + + + + + +
                    +
                    +

                    + $framework + + + +

                    + + + + + protected + ContaoFrameworkInterface + $framework + + + + + + +
                    +
                    + +
                    +

                    + Methods + +

                    +
                    +

                    + __construct() + +

                    + + + + + public + __construct(ContaoFrameworkInterface $framework) : mixed + +
                    + +
                    Parameters
                    +
                    +
                    + $framework + : ContaoFrameworkInterface +
                    +
                    +
                    + +
                    +
                    + + + +
                    Return values
                    + mixed + — + + +
                    +
                    +

                    + getCachedChoices() + +

                    + + + + + public + getCachedChoices([mixed $context = [] ]) : mixed + +
                    + +
                    Parameters
                    +
                    +
                    + $context + : mixed + = []
                    +
                    +
                    + +
                    +
                    + + + +
                    Return values
                    + mixed + — + + +
                    +
                    +

                    + getChoices() + +

                    + + + + + public + getChoices([mixed $context = [] ]) : mixed + +
                    + +
                    Parameters
                    +
                    +
                    + $context + : mixed + = []
                    +
                    +
                    + +
                    +
                    + + + +
                    Return values
                    + mixed + — + + +
                    +
                    +

                    + getContext() + +

                    + + + + + public + getContext() : mixed + + + + + +
                    Return values
                    + mixed + — + + +
                    +
                    +

                    + setContext() + +

                    + + + + + public + setContext(mixed $context) : mixed + + +
                    Parameters
                    +
                    +
                    + $context + : mixed +
                    +
                    + +
                    +
                    + + + +
                    Return values
                    + mixed + — + + +
                    +
                    +

                    + collect() + +

                    + + + + + protected + collect() : array<string|int, mixed> + + + + + +
                    Return values
                    + array<string|int, mixed> + — + + +
                    +
                    + + + + +
                    +
                    +
                    +
                    +

                    Search results

                    + +
                    +
                    +
                      +
                      +
                      +
                      +
                      +
                      + + +
                      + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-Choice-MessageChoice.html b/classes/HeimrichHannot-UtilsBundle-Choice-MessageChoice.html new file mode 100644 index 00000000..c5f20deb --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-Choice-MessageChoice.html @@ -0,0 +1,721 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                      +

                      Contao Utils Bundle

                      + + + + + +
                      + +
                      +
                      + + + + +
                      + + +
                      +

                      + MessageChoice + + + extends AbstractChoice + + +
                      + in package + +
                      + + +

                      + + + + +
                      + + + + + + + + +

                      + Table of Contents + +

                      + +
                      +
                      + $cache + +  : FilesystemAdapter +
                      +
                      Current file cache.
                      + +
                      + $cacheKey + +  : string +
                      +
                      Current cache key name.
                      + +
                      + $context + +  : mixed +
                      +
                      Current context.
                      + +
                      + $data + +  : array<string|int, mixed> +
                      +
                      Context data.
                      + +
                      + $framework + +  : ContaoFrameworkInterface +
                      +
                      + +
                      + __construct() + +  : mixed +
                      +
                      + +
                      + getCachedChoices() + +  : mixed +
                      +
                      + +
                      + getChoices() + +  : mixed +
                      +
                      + +
                      + getContext() + +  : mixed +
                      +
                      + +
                      + setContext() + +  : mixed +
                      +
                      + +
                      + collect() + +  : array<string|int, mixed> +
                      +
                      + +
                      + + + + + + +
                      +

                      + Properties + +

                      +
                      +

                      + $cache + + + +

                      + + +

                      Current file cache.

                      + + + protected + FilesystemAdapter + $cache + = null + + + + + +
                      +
                      +

                      + $cacheKey + + + +

                      + + +

                      Current cache key name.

                      + + + protected + string + $cacheKey + + + + + + +
                      +
                      +

                      + $context + + + +

                      + + +

                      Current context.

                      + + + protected + mixed + $context + + + + + + +
                      +
                      +

                      + $data + + + +

                      + + +

                      Context data.

                      + + + protected + array<string|int, mixed> + $data + = [] + + + + + +
                      +
                      +

                      + $framework + + + +

                      + + + + + protected + ContaoFrameworkInterface + $framework + + + + + + +
                      +
                      + +
                      +

                      + Methods + +

                      +
                      +

                      + __construct() + +

                      + + + + + public + __construct(ContaoFrameworkInterface $framework) : mixed + +
                      + +
                      Parameters
                      +
                      +
                      + $framework + : ContaoFrameworkInterface +
                      +
                      +
                      + +
                      +
                      + + + +
                      Return values
                      + mixed + — + + +
                      +
                      +

                      + getCachedChoices() + +

                      + + + + + public + getCachedChoices([mixed $context = [] ]) : mixed + +
                      + +
                      Parameters
                      +
                      +
                      + $context + : mixed + = []
                      +
                      +
                      + +
                      +
                      + + + +
                      Return values
                      + mixed + — + + +
                      +
                      +

                      + getChoices() + +

                      + + + + + public + getChoices([mixed $context = [] ]) : mixed + +
                      + +
                      Parameters
                      +
                      +
                      + $context + : mixed + = []
                      +
                      +
                      + +
                      +
                      + + + +
                      Return values
                      + mixed + — + + +
                      +
                      +

                      + getContext() + +

                      + + + + + public + getContext() : mixed + + + + + +
                      Return values
                      + mixed + — + + +
                      +
                      +

                      + setContext() + +

                      + + + + + public + setContext(mixed $context) : mixed + + +
                      Parameters
                      +
                      +
                      + $context + : mixed +
                      +
                      + +
                      +
                      + + + +
                      Return values
                      + mixed + — + + +
                      +
                      +

                      + collect() + +

                      + + + + + protected + collect() : array<string|int, mixed> + + + + + +
                      Return values
                      + array<string|int, mixed> + — + + +
                      +
                      + + + + +
                      +
                      +
                      +
                      +

                      Search results

                      + +
                      +
                      +
                        +
                        +
                        +
                        +
                        +
                        + + +
                        + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-Choice-ModelInstanceChoice.html b/classes/HeimrichHannot-UtilsBundle-Choice-ModelInstanceChoice.html new file mode 100644 index 00000000..8e0496bb --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-Choice-ModelInstanceChoice.html @@ -0,0 +1,763 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                        +

                        Contao Utils Bundle

                        + + + + + +
                        + +
                        +
                        + + + + +
                        + + +
                        +

                        + ModelInstanceChoice + + + extends AbstractChoice + + +
                        + in package + +
                        + + +

                        + + + + +
                        + + + + + + + + +

                        + Table of Contents + +

                        + +
                        +
                        + TITLE_FIELDS + +  = ['name', 'title', 'headline'] +
                        +
                        + +
                        + $cache + +  : FilesystemAdapter +
                        +
                        Current file cache.
                        + +
                        + $cacheKey + +  : string +
                        +
                        Current cache key name.
                        + +
                        + $context + +  : mixed +
                        +
                        Current context.
                        + +
                        + $data + +  : array<string|int, mixed> +
                        +
                        Context data.
                        + +
                        + $framework + +  : ContaoFrameworkInterface +
                        +
                        + +
                        + __construct() + +  : mixed +
                        +
                        + +
                        + getCachedChoices() + +  : mixed +
                        +
                        + +
                        + getChoices() + +  : mixed +
                        +
                        + +
                        + getContext() + +  : mixed +
                        +
                        + +
                        + setContext() + +  : mixed +
                        +
                        + +
                        + collect() + +  : array<string|int, mixed> +
                        +
                        + +
                        + + + + +
                        +

                        + Constants + +

                        +
                        +

                        + TITLE_FIELDS + +

                        + + + + + + public + mixed + TITLE_FIELDS + = ['name', 'title', 'headline'] + + + +
                        + +
                        + + + +
                        +
                        + + +
                        +

                        + Properties + +

                        +
                        +

                        + $cache + + + +

                        + + +

                        Current file cache.

                        + + + protected + FilesystemAdapter + $cache + = null + + + + + +
                        +
                        +

                        + $cacheKey + + + +

                        + + +

                        Current cache key name.

                        + + + protected + string + $cacheKey + + + + + + +
                        +
                        +

                        + $context + + + +

                        + + +

                        Current context.

                        + + + protected + mixed + $context + + + + + + +
                        +
                        +

                        + $data + + + +

                        + + +

                        Context data.

                        + + + protected + array<string|int, mixed> + $data + = [] + + + + + +
                        +
                        +

                        + $framework + + + +

                        + + + + + protected + ContaoFrameworkInterface + $framework + + + + + + +
                        +
                        + +
                        +

                        + Methods + +

                        +
                        +

                        + __construct() + +

                        + + + + + public + __construct(ContaoFrameworkInterface $framework) : mixed + +
                        + +
                        Parameters
                        +
                        +
                        + $framework + : ContaoFrameworkInterface +
                        +
                        +
                        + +
                        +
                        + + + +
                        Return values
                        + mixed + — + + +
                        +
                        +

                        + getCachedChoices() + +

                        + + + + + public + getCachedChoices([mixed $context = [] ]) : mixed + +
                        + +
                        Parameters
                        +
                        +
                        + $context + : mixed + = []
                        +
                        +
                        + +
                        +
                        + + + +
                        Return values
                        + mixed + — + + +
                        +
                        +

                        + getChoices() + +

                        + + + + + public + getChoices([mixed $context = [] ]) : mixed + +
                        + +
                        Parameters
                        +
                        +
                        + $context + : mixed + = []
                        +
                        +
                        + +
                        +
                        + + + +
                        Return values
                        + mixed + — + + +
                        +
                        +

                        + getContext() + +

                        + + + + + public + getContext() : mixed + + + + + +
                        Return values
                        + mixed + — + + +
                        +
                        +

                        + setContext() + +

                        + + + + + public + setContext(mixed $context) : mixed + + +
                        Parameters
                        +
                        +
                        + $context + : mixed +
                        +
                        + +
                        +
                        + + + +
                        Return values
                        + mixed + — + + +
                        +
                        +

                        + collect() + +

                        + + + + + protected + collect() : array<string|int, mixed> + + + + + +
                        Return values
                        + array<string|int, mixed> + — + + +
                        +
                        + + + + +
                        +
                        +
                        +
                        +

                        Search results

                        + +
                        +
                        +
                          +
                          +
                          +
                          +
                          +
                          + + +
                          + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-Choice-TwigTemplateChoice.html b/classes/HeimrichHannot-UtilsBundle-Choice-TwigTemplateChoice.html new file mode 100644 index 00000000..76897321 --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-Choice-TwigTemplateChoice.html @@ -0,0 +1,721 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                          +

                          Contao Utils Bundle

                          + + + + + +
                          + +
                          +
                          + + + + +
                          + + +
                          +

                          + TwigTemplateChoice + + + extends AbstractChoice + + +
                          + in package + +
                          + + +

                          + + + + +
                          + + + + + + + + +

                          + Table of Contents + +

                          + +
                          +
                          + $cache + +  : FilesystemAdapter +
                          +
                          Current file cache.
                          + +
                          + $cacheKey + +  : string +
                          +
                          Current cache key name.
                          + +
                          + $context + +  : mixed +
                          +
                          Current context.
                          + +
                          + $data + +  : array<string|int, mixed> +
                          +
                          Context data.
                          + +
                          + $framework + +  : ContaoFrameworkInterface +
                          +
                          + +
                          + __construct() + +  : mixed +
                          +
                          + +
                          + getCachedChoices() + +  : mixed +
                          +
                          + +
                          + getChoices() + +  : mixed +
                          +
                          + +
                          + getContext() + +  : mixed +
                          +
                          + +
                          + setContext() + +  : mixed +
                          +
                          + +
                          + collect() + +  : array<string|int, mixed> +
                          +
                          + +
                          + + + + + + +
                          +

                          + Properties + +

                          +
                          +

                          + $cache + + + +

                          + + +

                          Current file cache.

                          + + + protected + FilesystemAdapter + $cache + = null + + + + + +
                          +
                          +

                          + $cacheKey + + + +

                          + + +

                          Current cache key name.

                          + + + protected + string + $cacheKey + + + + + + +
                          +
                          +

                          + $context + + + +

                          + + +

                          Current context.

                          + + + protected + mixed + $context + + + + + + +
                          +
                          +

                          + $data + + + +

                          + + +

                          Context data.

                          + + + protected + array<string|int, mixed> + $data + = [] + + + + + +
                          +
                          +

                          + $framework + + + +

                          + + + + + protected + ContaoFrameworkInterface + $framework + + + + + + +
                          +
                          + +
                          +

                          + Methods + +

                          +
                          +

                          + __construct() + +

                          + + + + + public + __construct(ContaoFrameworkInterface $framework) : mixed + +
                          + +
                          Parameters
                          +
                          +
                          + $framework + : ContaoFrameworkInterface +
                          +
                          +
                          + +
                          +
                          + + + +
                          Return values
                          + mixed + — + + +
                          +
                          +

                          + getCachedChoices() + +

                          + + + + + public + getCachedChoices([mixed $context = [] ]) : mixed + +
                          + +
                          Parameters
                          +
                          +
                          + $context + : mixed + = []
                          +
                          +
                          + +
                          +
                          + + + +
                          Return values
                          + mixed + — + + +
                          +
                          +

                          + getChoices() + +

                          + + + + + public + getChoices([mixed $context = [] ]) : mixed + +
                          + +
                          Parameters
                          +
                          +
                          + $context + : mixed + = []
                          +
                          +
                          + +
                          +
                          + + + +
                          Return values
                          + mixed + — + + +
                          +
                          +

                          + getContext() + +

                          + + + + + public + getContext() : mixed + + + + + +
                          Return values
                          + mixed + — + + +
                          +
                          +

                          + setContext() + +

                          + + + + + public + setContext(mixed $context) : mixed + + +
                          Parameters
                          +
                          +
                          + $context + : mixed +
                          +
                          + +
                          +
                          + + + +
                          Return values
                          + mixed + — + + +
                          +
                          +

                          + collect() + +

                          + + + + + protected + collect() : array<string|int, mixed> + + + + + +
                          Return values
                          + array<string|int, mixed> + — + + +
                          +
                          + + + + +
                          +
                          +
                          +
                          +

                          Search results

                          + +
                          +
                          +
                            +
                            +
                            +
                            +
                            +
                            + + +
                            + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-Classes-ClassUtil.html b/classes/HeimrichHannot-UtilsBundle-Classes-ClassUtil.html new file mode 100644 index 00000000..aafef9ec --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-Classes-ClassUtil.html @@ -0,0 +1,830 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                            +

                            Contao Utils Bundle

                            + + + + + +
                            + +
                            +
                            + + + + +
                            + + +
                            +

                            + ClassUtil + + +
                            + in package + +
                            + + +

                            + + + + +
                            + + + + + + + + +

                            + Table of Contents + +

                            + +
                            +
                            + $arrayUtil + +  : ArrayUtil +
                            +
                            + +
                            + $stringUtil + +  : StringUtil +
                            +
                            + +
                            + __construct() + +  : mixed +
                            +
                            ClassUtil constructor.
                            + +
                            + callInaccessibleMethod() + +  : mixed|null +
                            +
                            Calls an object's method which is inaccessible.
                            + +
                            + getChildClasses() + +  : array<string|int, mixed> +
                            +
                            Returns all children of a given class.
                            + +
                            + getClassesInNamespace() + +  : array<string|int, mixed> +
                            +
                            Returns all classes in the given namespace.
                            + +
                            + getConstantsByPrefixes() + +  : array<string|int, mixed> +
                            +
                            Filter class constants by given prefixes and return the extracted constants.
                            + +
                            + getParentClasses() + +  : array<string|int, mixed> +
                            +
                            + +
                            + jsonSerialize() + +  : array<string|int, mixed> +
                            +
                            Serialize a class object to JSON by iterating over all public getters (get(), is(), ...).
                            + +
                            + getMethodNameStartIndex() + +  : int|null +
                            +
                            + +
                            + + + + + + +
                            +

                            + Properties + +

                            +
                            +

                            + $arrayUtil + + + +

                            + + + + + protected + ArrayUtil + $arrayUtil + + + + + + +
                            + +
                            + +
                            +

                            + Methods + +

                            +
                            +

                            + __construct() + +

                            + + +

                            ClassUtil constructor.

                            + + + public + __construct(ArrayUtil $arrayUtil, StringUtil $stringUtil) : mixed + + +
                            Parameters
                            +
                            +
                            + $arrayUtil + : ArrayUtil +
                            +
                            +
                            + +
                            +
                            + $stringUtil + : StringUtil +
                            +
                            +
                            + +
                            +
                            + + + +
                            Return values
                            + mixed + — + + +
                            +
                            +

                            + callInaccessibleMethod() + +

                            + + +

                            Calls an object's method which is inaccessible.

                            + + + public + callInaccessibleMethod( $entity, string $method) : mixed|null + + +
                            Parameters
                            +
                            +
                            + $entity + : +
                            +
                            + +
                            +
                            + $method + : string +
                            +
                            +
                            + +
                            +
                            + + +
                            + Tags + +
                            +
                            +
                            + throws +
                            +
                            + ReflectionException + + +
                            +
                            + +
                            Return values
                            + mixed|null + — + + +
                            +
                            +

                            + getChildClasses() + +

                            + + +

                            Returns all children of a given class.

                            + + + public + getChildClasses(string $qualifiedClassName) : array<string|int, mixed> + + +
                            Parameters
                            +
                            +
                            + $qualifiedClassName + : string +
                            +
                            +
                            + +
                            +
                            + + + +
                            Return values
                            + array<string|int, mixed> + — + + +
                            +
                            +

                            + getClassesInNamespace() + +

                            + + +

                            Returns all classes in the given namespace.

                            + + + public + getClassesInNamespace(string $namespace) : array<string|int, mixed> + + +
                            Parameters
                            +
                            +
                            + $namespace + : string +
                            +
                            +
                            + +
                            +
                            + + + +
                            Return values
                            + array<string|int, mixed> + — + + +
                            +
                            +

                            + getConstantsByPrefixes() + +

                            + + +

                            Filter class constants by given prefixes and return the extracted constants.

                            + + + public + getConstantsByPrefixes(string $class[, array<string|int, mixed> $prefixes = [] ][, bool $returnValueAsKey = true ]) : array<string|int, mixed> + + +
                            Parameters
                            +
                            +
                            + $class + : string +
                            +
                            +

                            the class that should be searched for constants in

                            +
                            + +
                            +
                            + $prefixes + : array<string|int, mixed> + = []
                            +
                            +

                            an array of prefixes that should be used to filter the class constants

                            +
                            + +
                            +
                            + $returnValueAsKey + : bool + = true
                            +
                            +

                            boolean Return the extracted array keys from its value, if true

                            +
                            + +
                            +
                            + + +
                            + Tags + +
                            +
                            +
                            + throws +
                            +
                            + ReflectionException + + +
                            +
                            + +
                            Return values
                            + array<string|int, mixed> + — +

                            the extracted constants as array

                            +
                            + + +
                            +
                            +

                            + getParentClasses() + +

                            + + + + + public + getParentClasses(string $class[, array<string|int, mixed> $parents = [] ]) : array<string|int, mixed> + + +
                            Parameters
                            +
                            +
                            + $class + : string +
                            +
                            +
                            + +
                            +
                            + $parents + : array<string|int, mixed> + = []
                            +
                            +
                            + +
                            +
                            + + + +
                            Return values
                            + array<string|int, mixed> + — + + +
                            +
                            +

                            + jsonSerialize() + +

                            + + +

                            Serialize a class object to JSON by iterating over all public getters (get(), is(), ...).

                            + + + public + jsonSerialize( $object[, array<string|int, mixed> $data = [] ][, array<string|int, mixed> $options = [] ]) : array<string|int, mixed> + + +
                            Parameters
                            +
                            +
                            + $object + : +
                            +
                            + +
                            +
                            + $data + : array<string|int, mixed> + = []
                            +
                            + +
                            +
                            + $options + : array<string|int, mixed> + = []
                            +
                            + +
                            +
                            + + +
                            + Tags + +
                            +
                            +
                            + throws +
                            +
                            + ReflectionException + +

                            if the class or method does not exist

                            +
                            + +
                            +
                            + +
                            Return values
                            + array<string|int, mixed> + — + + +
                            +
                            +

                            + getMethodNameStartIndex() + +

                            + + + + + private + static getMethodNameStartIndex( $method, ReflectionClass $rc) : int|null + + +
                            Parameters
                            +
                            +
                            + $method + : +
                            +
                            + +
                            +
                            + $rc + : ReflectionClass +
                            +
                            + +
                            +
                            + + + +
                            Return values
                            + int|null + — + + +
                            +
                            + + + + +
                            +
                            +
                            +
                            +

                            Search results

                            + +
                            +
                            +
                              +
                              +
                              +
                              +
                              +
                              + + +
                              + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-Command-CreateImageSizeItemsCommand.html b/classes/HeimrichHannot-UtilsBundle-Command-CreateImageSizeItemsCommand.html new file mode 100644 index 00000000..4336fc01 --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-Command-CreateImageSizeItemsCommand.html @@ -0,0 +1,817 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                              +

                              Contao Utils Bundle

                              + + + + + +
                              + +
                              +
                              + + + + +
                              + + +
                              +

                              + CreateImageSizeItemsCommand + + + extends Command + + +
                              + in package + +
                              + + +

                              + + + + +
                              + + + + + + + + +

                              + Table of Contents + +

                              + +
                              +
                              + DEFAULT_BREAKPOINTS + +  = [576, 768, 992, 1200, 1400] +
                              +
                              + +
                              + MODE_FIRST + +  = 1 +
                              +
                              + +
                              + MODE_INTERMEDIATE + +  = 2 +
                              +
                              + +
                              + MODE_LAST + +  = 3 +
                              +
                              + +
                              + $defaultName + +  : mixed +
                              +
                              + +
                              + $contaoFramework + +  : ContaoFramework +
                              +
                              + +
                              + $utils + +  : Utils +
                              +
                              + +
                              + __construct() + +  : mixed +
                              +
                              + +
                              + configure() + +  : mixed +
                              +
                              {@inheritdoc}
                              + +
                              + createItem() + +  : mixed +
                              +
                              + +
                              + execute() + +  : mixed +
                              +
                              {@inheritdoc}
                              + +
                              + createImageSizes() + +  : mixed +
                              +
                              + +
                              + + + + +
                              +

                              + Constants + +

                              +
                              +

                              + DEFAULT_BREAKPOINTS + +

                              + + + + + + public + mixed + DEFAULT_BREAKPOINTS + = [576, 768, 992, 1200, 1400] + + + +
                              + +
                              + + + +
                              + + + +
                              + + +
                              +

                              + Properties + +

                              +
                              +

                              + $defaultName + + + +

                              + + + + + protected + static mixed + $defaultName + = 'huh:utils:create-image-size-items' + +
                              + +
                              + + + +
                              + + +
                              + +
                              +

                              + Methods + +

                              +
                              +

                              + __construct() + +

                              + + + + + public + __construct(ContaoFramework $contaoFramework, Utils $utils) : mixed + +
                              + +
                              Parameters
                              +
                              +
                              + $contaoFramework + : ContaoFramework +
                              +
                              +
                              + +
                              +
                              + $utils + : Utils +
                              +
                              +
                              + +
                              +
                              + + + +
                              Return values
                              + mixed + — + + +
                              +
                              +

                              + configure() + +

                              + + +

                              {@inheritdoc}

                              + + + protected + configure() : mixed + + + + + +
                              Return values
                              + mixed + — + + +
                              +
                              +

                              + createItem() + +

                              + + + + + protected + createItem(ImageSizeModel $imageSize, int $index, int $breakpoint, int|null $nextBreakpoint, int $mode) : mixed + + +
                              Parameters
                              +
                              +
                              + $imageSize + : ImageSizeModel +
                              +
                              + +
                              +
                              + $index + : int +
                              +
                              +
                              + +
                              +
                              + $breakpoint + : int +
                              +
                              +
                              + +
                              +
                              + $nextBreakpoint + : int|null +
                              +
                              +
                              + +
                              +
                              + $mode + : int +
                              +
                              +
                              + +
                              +
                              + + + +
                              Return values
                              + mixed + — + + +
                              +
                              +

                              + execute() + +

                              + + +

                              {@inheritdoc}

                              + + + protected + execute(InputInterface $input, OutputInterface $output) : mixed + + +
                              Parameters
                              +
                              +
                              + $input + : InputInterface +
                              +
                              +
                              + +
                              +
                              + $output + : OutputInterface +
                              +
                              +
                              + +
                              +
                              + + + +
                              Return values
                              + mixed + — + + +
                              +
                              +

                              + createImageSizes() + +

                              + + + + + private + createImageSizes(SymfonyStyle $io, array<string|int, mixed> $breakpoints[, array<string|int, mixed> $imageSizeIds = [] ]) : mixed + +
                              + +
                              Parameters
                              +
                              +
                              + $io + : SymfonyStyle +
                              +
                              +
                              + +
                              +
                              + $breakpoints + : array<string|int, mixed> +
                              +
                              +
                              + +
                              +
                              + $imageSizeIds + : array<string|int, mixed> + = []
                              +
                              +
                              + +
                              +
                              + + + +
                              Return values
                              + mixed + — + + +
                              +
                              + + + + +
                              +
                              +
                              +
                              +

                              Search results

                              + +
                              +
                              +
                                +
                                +
                                +
                                +
                                +
                                + + +
                                + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-Command-EntityFinderCommand.html b/classes/HeimrichHannot-UtilsBundle-Command-EntityFinderCommand.html index 7c2ebc8a..da973c3c 100644 --- a/classes/HeimrichHannot-UtilsBundle-Command-EntityFinderCommand.html +++ b/classes/HeimrichHannot-UtilsBundle-Command-EntityFinderCommand.html @@ -131,13 +131,6 @@

                                - $defaultDescription - -  : mixed -
                                -
                                - -
                                $defaultName  : mixed @@ -182,14 +175,14 @@

                                configure() -  : void +  : mixed
                                execute() -  : int +  : mixed
                                @@ -260,40 +253,6 @@

                                -property -protected -static " -> -

                                - $defaultDescription - - - -

                                - - - - - protected - static mixed - $defaultDescription - = 'A command to find where an entity is included.' - -
                                - -
                                - - - - -

                                $defaultName @@ -338,7 +297,7 @@

                                @@ -349,10 +308,8 @@

                                $connection -
                                - -
                                - + +

                                @@ -372,7 +329,7 @@

                                @@ -383,10 +340,8 @@

                                $contaoFramework -
                                - -
                                - + + @@ -406,7 +361,7 @@

                                @@ -417,10 +372,8 @@

                                $entityFinderHelper -
                                - -
                                - + + @@ -440,7 +393,7 @@

                                @@ -451,10 +404,8 @@

                                $eventDispatcher -
                                - -
                                - + + @@ -478,7 +429,7 @@

                                @@ -546,14 +497,14 @@

                                protected - configure() : void + configure() : mixed
                                @@ -561,7 +512,7 @@

                                Return values
                                - void + mixed — @@ -579,14 +530,14 @@

                                protected - execute(InputInterface $input, OutputInterface $output) : int + execute(InputInterface $input, OutputInterface $output) : mixed
                                @@ -613,7 +564,7 @@

                                Parameters
                                Return values
                                - int + mixed — @@ -631,7 +582,7 @@

                                @@ -683,7 +634,7 @@

                                @@ -751,7 +702,7 @@

                                @@ -803,7 +754,7 @@

                                @@ -847,7 +798,7 @@

                                @@ -899,7 +850,7 @@

                                @@ -967,7 +918,7 @@

                                diff --git a/classes/HeimrichHannot-UtilsBundle-Comparison-CompareUtil.html b/classes/HeimrichHannot-UtilsBundle-Comparison-CompareUtil.html new file mode 100644 index 00000000..0527f3b9 --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-Comparison-CompareUtil.html @@ -0,0 +1,960 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                +

                                Contao Utils Bundle

                                + + + + + +
                                + +
                                +
                                + + + + +
                                + + +
                                +

                                + CompareUtil + + +
                                + in package + +
                                + + +

                                + + + + +
                                + + + + + + + + +

                                + Table of Contents + +

                                + +
                                +
                                + PHP_OPERATOR_EQUAL + +  = 'equal' +
                                +
                                + +
                                + PHP_OPERATOR_GREATER + +  = 'greater' +
                                +
                                + +
                                + PHP_OPERATOR_GREATER_EQUAL + +  = 'greaterequal' +
                                +
                                + +
                                + PHP_OPERATOR_IN_ARRAY + +  = 'inarray' +
                                +
                                + +
                                + PHP_OPERATOR_IS_NOT_NULL + +  = 'isnotnull' +
                                +
                                + +
                                + PHP_OPERATOR_IS_NULL + +  = 'isnull' +
                                +
                                + +
                                + PHP_OPERATOR_LIKE + +  = 'like' +
                                +
                                + +
                                + PHP_OPERATOR_LOWER + +  = 'lower' +
                                +
                                + +
                                + PHP_OPERATOR_LOWER_EQUAL + +  = 'lowerequal' +
                                +
                                + +
                                + PHP_OPERATOR_NOT_IN_ARRAY + +  = 'notinarray' +
                                +
                                + +
                                + PHP_OPERATOR_UNEQUAL + +  = 'unequal' +
                                +
                                + +
                                + PHP_OPERATOR_UNLIKE + +  = 'unlike' +
                                +
                                + +
                                + PHP_OPERATORS + +  = [self::PHP_OPERATOR_EQUAL, self::PHP_OPERATOR_UNEQUAL, self::PHP_OPERATOR_LIKE, self::PHP_OPERATOR_UNLIKE, self::PHP_OPERATOR_IN_ARRAY, self::PHP_OPERATOR_NOT_IN_ARRAY, self::PHP_OPERATOR_LOWER, self::PHP_OPERATOR_LOWER_EQUAL, self::PHP_OPERATOR_GREATER, self::PHP_OPERATOR_GREATER_EQUAL, self::PHP_OPERATOR_IS_NULL, self::PHP_OPERATOR_IS_NOT_NULL] +
                                +
                                + +
                                + PHP_SINGLE_VALUE_OPERATORS + +  = [self::PHP_OPERATOR_IS_NULL, self::PHP_OPERATOR_IS_NOT_NULL] +
                                +
                                + +
                                + $framework + +  : ContaoFrameworkInterface +
                                +
                                + +
                                + __construct() + +  : mixed +
                                +
                                + +
                                + compareSingleValue() + +  : bool +
                                +
                                + +
                                + compareValue() + +  : bool +
                                +
                                + +
                                + + + + +
                                +

                                + Constants + +

                                +
                                +

                                + PHP_OPERATOR_EQUAL + +

                                + + + + + + public + mixed + PHP_OPERATOR_EQUAL + = 'equal' + + + +
                                + +
                                + + + +
                                +
                                +

                                + PHP_OPERATOR_GREATER + +

                                + + + + + + public + mixed + PHP_OPERATOR_GREATER + = 'greater' + + + +
                                + +
                                + + + +
                                +
                                +

                                + PHP_OPERATOR_GREATER_EQUAL + +

                                + + + + + + public + mixed + PHP_OPERATOR_GREATER_EQUAL + = 'greaterequal' + + + +
                                + +
                                + + + +
                                +
                                +

                                + PHP_OPERATOR_IN_ARRAY + +

                                + + + + + + public + mixed + PHP_OPERATOR_IN_ARRAY + = 'inarray' + + + +
                                + +
                                + + + +
                                +
                                +

                                + PHP_OPERATOR_IS_NOT_NULL + +

                                + + + + + + public + mixed + PHP_OPERATOR_IS_NOT_NULL + = 'isnotnull' + + + +
                                + +
                                + + + +
                                +
                                +

                                + PHP_OPERATOR_IS_NULL + +

                                + + + + + + public + mixed + PHP_OPERATOR_IS_NULL + = 'isnull' + + + +
                                + +
                                + + + +
                                +
                                +

                                + PHP_OPERATOR_LIKE + +

                                + + + + + + public + mixed + PHP_OPERATOR_LIKE + = 'like' + + + +
                                + +
                                + + + +
                                +
                                +

                                + PHP_OPERATOR_LOWER + +

                                + + + + + + public + mixed + PHP_OPERATOR_LOWER + = 'lower' + + + +
                                + +
                                + + + +
                                +
                                +

                                + PHP_OPERATOR_LOWER_EQUAL + +

                                + + + + + + public + mixed + PHP_OPERATOR_LOWER_EQUAL + = 'lowerequal' + + + +
                                + +
                                + + + +
                                +
                                +

                                + PHP_OPERATOR_NOT_IN_ARRAY + +

                                + + + + + + public + mixed + PHP_OPERATOR_NOT_IN_ARRAY + = 'notinarray' + + + +
                                + +
                                + + + +
                                +
                                +

                                + PHP_OPERATOR_UNEQUAL + +

                                + + + + + + public + mixed + PHP_OPERATOR_UNEQUAL + = 'unequal' + + + +
                                + +
                                + + + +
                                +
                                +

                                + PHP_OPERATOR_UNLIKE + +

                                + + + + + + public + mixed + PHP_OPERATOR_UNLIKE + = 'unlike' + + + +
                                + +
                                + + + +
                                +
                                +

                                + PHP_OPERATORS + +

                                + + + + + + public + mixed + PHP_OPERATORS + = [self::PHP_OPERATOR_EQUAL, self::PHP_OPERATOR_UNEQUAL, self::PHP_OPERATOR_LIKE, self::PHP_OPERATOR_UNLIKE, self::PHP_OPERATOR_IN_ARRAY, self::PHP_OPERATOR_NOT_IN_ARRAY, self::PHP_OPERATOR_LOWER, self::PHP_OPERATOR_LOWER_EQUAL, self::PHP_OPERATOR_GREATER, self::PHP_OPERATOR_GREATER_EQUAL, self::PHP_OPERATOR_IS_NULL, self::PHP_OPERATOR_IS_NOT_NULL] + + + +
                                + +
                                + + + +
                                +
                                +

                                + PHP_SINGLE_VALUE_OPERATORS + +

                                + + + + + + public + mixed + PHP_SINGLE_VALUE_OPERATORS + = [self::PHP_OPERATOR_IS_NULL, self::PHP_OPERATOR_IS_NOT_NULL] + + + +
                                + +
                                + + + +
                                +
                                + + +
                                +

                                + Properties + +

                                +
                                +

                                + $framework + + + +

                                + + + + + protected + ContaoFrameworkInterface + $framework + + + + + + +
                                +
                                + +
                                +

                                + Methods + +

                                +
                                +

                                + __construct() + +

                                + + + + + public + __construct(ContaoFrameworkInterface $framework) : mixed + +
                                + +
                                Parameters
                                +
                                +
                                + $framework + : ContaoFrameworkInterface +
                                +
                                +
                                + +
                                +
                                + + + +
                                Return values
                                + mixed + — + + +
                                +
                                +

                                + compareSingleValue() + +

                                + + + + + public + compareSingleValue( $value, string $operator) : bool + + +
                                Parameters
                                +
                                +
                                + $value + : +
                                +
                                + +
                                +
                                + $operator + : string +
                                +
                                +
                                + +
                                +
                                + + + +
                                Return values
                                + bool + — + + +
                                +
                                +

                                + compareValue() + +

                                + + + + + public + compareValue(string $operator,  $value1[,  $value2 = null ]) : bool + + +
                                Parameters
                                +
                                +
                                + $operator + : string +
                                +
                                +
                                + +
                                +
                                + $value1 + : +
                                +
                                + +
                                +
                                + $value2 + : + = null
                                +
                                + +
                                +
                                + + + +
                                Return values
                                + bool + — + + +
                                +
                                + + + + +
                                +
                                +
                                +
                                +

                                Search results

                                + +
                                +
                                +
                                  +
                                  +
                                  +
                                  +
                                  +
                                  + + +
                                  + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-Container-ContainerUtil.html b/classes/HeimrichHannot-UtilsBundle-Container-ContainerUtil.html new file mode 100644 index 00000000..943282d5 --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-Container-ContainerUtil.html @@ -0,0 +1,1500 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                  +

                                  Contao Utils Bundle

                                  + + + + + +
                                  + +
                                  +
                                  + + + + +
                                  + + +
                                  +

                                  + ContainerUtil + + +
                                  + in package + +
                                  + + +

                                  + + + +

                                  Class ContainerUtil.

                                  + + + +
                                  + Tags + +
                                  +
                                  +
                                  + deprecated +
                                  +
                                  + +

                                  use utils service instead

                                  +
                                  + +
                                  +
                                  + + + + + + +

                                  + Table of Contents + +

                                  + +
                                  +
                                  + $container + +  : ContainerInterface +
                                  +
                                  + +
                                  + $utils + +  : Utils +
                                  +
                                  + +
                                  + __construct() + +  : mixed +
                                  +
                                  + +
                                  + getActiveBundles() + +  : array<string|int, mixed> +
                                  +
                                  Returns the active bundles.
                                  + +
                                  + getBundlePath() + +  : bool|string +
                                  +
                                  Returns the path to the bundle in vendor folder +Attention: resolves symlinks!
                                  + +
                                  + getBundleResourcePath() + +  : bool|string|array<string|int, mixed> +
                                  +
                                  Returns the path or paths to a ressource within a bundle +Attention: resolves symlinks!
                                  + +
                                  + getCurrentRequest() + +  : mixed +
                                  +
                                  + +
                                  + getProjectDir() + +  : mixed +
                                  +
                                  Returns the project root path.
                                  + +
                                  + getWebDir() + +  : mixed +
                                  +
                                  Returns the web folder path.
                                  + +
                                  + isBackend() + +  : bool +
                                  +
                                  + +
                                  + isBundleActive() + +  : bool +
                                  +
                                  Checks if some bundle is active. Pass in the class name (e.g. 'HeimrichHannot\FilterBundle\HeimrichHannotContaoFilterBundle' or the legacy Contao 3 name like 'news').
                                  + +
                                  + isDev() + +  : bool +
                                  +
                                  + +
                                  + isFrontend() + +  : bool +
                                  +
                                  + +
                                  + isFrontendCron() + +  : bool +
                                  +
                                  + +
                                  + isInstall() + +  : bool +
                                  +
                                  + +
                                  + isMaintenanceModeActive() + +  : bool +
                                  +
                                  + +
                                  + isPreviewMode() + +  : bool +
                                  +
                                  + +
                                  + log() + +  : mixed +
                                  +
                                  + +
                                  + mergeConfigFile() + +  : array<string|int, mixed> +
                                  +
                                  Recursively merges a config.yml with a $extensionConfigs array in the context of ExtensionPluginInterface::getExtensionConfig().
                                  + +
                                  + + + + + + +
                                  +

                                  + Properties + +

                                  +
                                  +

                                  + $container + + + +

                                  + + + + + protected + ContainerInterface + $container + + + + + + +
                                  + +
                                  + +
                                  +

                                  + Methods + +

                                  +
                                  +

                                  + __construct() + +

                                  + + + + + public + __construct(ContainerInterface $container, Utils $utils) : mixed + +
                                  + +
                                  Parameters
                                  +
                                  +
                                  + $container + : ContainerInterface +
                                  +
                                  +
                                  + +
                                  +
                                  + $utils + : Utils +
                                  +
                                  +
                                  + +
                                  +
                                  + + + +
                                  Return values
                                  + mixed + — + + +
                                  +
                                  +

                                  + getActiveBundles() + +

                                  + + +

                                  Returns the active bundles.

                                  + + + public + getActiveBundles() : array<string|int, mixed> + + + + +
                                  + Tags + +
                                  +
                                  +
                                  + codeCoverageIgnore +
                                  +
                                  + + +
                                  +
                                  + deprecated +
                                  +
                                  + +

                                  Use kernel.bundles parameter or KernelInterface::getBundles()

                                  +
                                  + +
                                  +
                                  + +
                                  Return values
                                  + array<string|int, mixed> + — + + +
                                  +
                                  +

                                  + getBundlePath() + +

                                  + + +

                                  Returns the path to the bundle in vendor folder +Attention: resolves symlinks!

                                  + + + public + getBundlePath(string $bundleClass) : bool|string + + +
                                  Parameters
                                  +
                                  +
                                  + $bundleClass + : string +
                                  +
                                  +

                                  The bundle class class constant (VendorMyBundle::class)

                                  +
                                  + +
                                  +
                                  + + +
                                  + Tags + +
                                  +
                                  +
                                  + codeCoverageIgnore +
                                  +
                                  + + +
                                  +
                                  + deprecated +
                                  +
                                  + +

                                  Use utils service instead

                                  +
                                  + +
                                  +
                                  + +
                                  Return values
                                  + bool|string + — +

                                  False on error

                                  +
                                  + + +
                                  +
                                  +

                                  + getBundleResourcePath() + +

                                  + + +

                                  Returns the path or paths to a ressource within a bundle +Attention: resolves symlinks!

                                  + + + public + getBundleResourcePath(string $bundleClass[, string $ressourcePath = '' ][, bool $first = false ]) : bool|string|array<string|int, mixed> + + +
                                  Parameters
                                  +
                                  +
                                  + $bundleClass + : string +
                                  +
                                  +

                                  The bundle class class constant (VendorMyBundle::class)

                                  +
                                  + +
                                  +
                                  + $ressourcePath + : string + = ''
                                  +
                                  +

                                  a ressource or path to ressource

                                  +
                                  + +
                                  +
                                  + $first + : bool + = false
                                  +
                                  +

                                  Returns only first occurrence if multiple paths found

                                  +
                                  + +
                                  +
                                  + + +
                                  + Tags + +
                                  +
                                  +
                                  + codeCoverageIgnore +
                                  +
                                  + + +
                                  +
                                  + deprecated +
                                  +
                                  + +

                                  Use utils service instead

                                  +
                                  + +
                                  +
                                  + +
                                  Return values
                                  + bool|string|array<string|int, mixed> + — +

                                  False on error

                                  +
                                  + + +
                                  +
                                  +

                                  + getCurrentRequest() + +

                                  + + + + + public + getCurrentRequest() : mixed + + + + +
                                  + Tags + +
                                  +
                                  +
                                  + codeCoverageIgnore +
                                  +
                                  + + +
                                  +
                                  + deprecated +
                                  +
                                  + +

                                  Use RequestStack::getCurrentRequest() instead

                                  +
                                  + +
                                  +
                                  + +
                                  Return values
                                  + mixed + — + + +
                                  +
                                  +

                                  + getProjectDir() + +

                                  + + +

                                  Returns the project root path.

                                  + + + public + getProjectDir() : mixed + + + + +
                                  + Tags + +
                                  +
                                  +
                                  + codeCoverageIgnore +
                                  +
                                  + + +
                                  +
                                  + deprecated +
                                  +
                                  + +

                                  Use KernelInterface::getProjectDir or kernel.project_dir parameter

                                  +
                                  + +
                                  +
                                  + +
                                  Return values
                                  + mixed + — + + +
                                  +
                                  +

                                  + getWebDir() + +

                                  + + +

                                  Returns the web folder path.

                                  + + + public + getWebDir() : mixed + + + + +
                                  + Tags + +
                                  +
                                  +
                                  + codeCoverageIgnore +
                                  +
                                  + + +
                                  +
                                  + deprecated +
                                  +
                                  + +

                                  Use contao.web_dir parameter

                                  +
                                  + +
                                  +
                                  + +
                                  Return values
                                  + mixed + — + + +
                                  +
                                  +

                                  + isBackend() + +

                                  + + + + + public + isBackend() : bool + + + + +
                                  + Tags + +
                                  +
                                  +
                                  + codeCoverageIgnore +
                                  +
                                  + + +
                                  +
                                  + deprecated +
                                  +
                                  + +

                                  Use utils service instead

                                  +
                                  + +
                                  +
                                  + +
                                  Return values
                                  + bool + — + + +
                                  +
                                  +

                                  + isBundleActive() + +

                                  + + +

                                  Checks if some bundle is active. Pass in the class name (e.g. 'HeimrichHannot\FilterBundle\HeimrichHannotContaoFilterBundle' or the legacy Contao 3 name like 'news').

                                  + + + public + isBundleActive(string $bundleName) : bool + + +
                                  Parameters
                                  +
                                  +
                                  + $bundleName + : string +
                                  +
                                  +
                                  + +
                                  +
                                  + + +
                                  + Tags + +
                                  +
                                  +
                                  + codeCoverageIgnore +
                                  +
                                  + + +
                                  +
                                  + deprecated +
                                  +
                                  + +

                                  Use utils service instead

                                  +
                                  + +
                                  +
                                  + +
                                  Return values
                                  + bool + — + + +
                                  +
                                  +

                                  + isDev() + +

                                  + + + + + public + isDev() : bool + + + + +
                                  + Tags + +
                                  +
                                  +
                                  + codeCoverageIgnore +
                                  +
                                  + + +
                                  +
                                  + deprecated +
                                  +
                                  + +

                                  Use utils service instead

                                  +
                                  + +
                                  +
                                  + +
                                  Return values
                                  + bool + — + + +
                                  +
                                  +

                                  + isFrontend() + +

                                  + + + + + public + isFrontend() : bool + + + + +
                                  + Tags + +
                                  +
                                  +
                                  + codeCoverageIgnore +
                                  +
                                  + + +
                                  +
                                  + deprecated +
                                  +
                                  + +

                                  Use utils service instead

                                  +
                                  + +
                                  +
                                  + +
                                  Return values
                                  + bool + — + + +
                                  +
                                  +

                                  + isFrontendCron() + +

                                  + + + + + public + isFrontendCron() : bool + + + + +
                                  + Tags + +
                                  +
                                  +
                                  + codeCoverageIgnore +
                                  +
                                  + + +
                                  +
                                  + deprecated +
                                  +
                                  + +

                                  Use utils service instead

                                  +
                                  + +
                                  +
                                  + +
                                  Return values
                                  + bool + — + + +
                                  +
                                  +

                                  + isInstall() + +

                                  + + + + + public + isInstall() : bool + + + + +
                                  + Tags + +
                                  +
                                  +
                                  + codeCoverageIgnore +
                                  +
                                  + + +
                                  +
                                  + deprecated +
                                  +
                                  + +

                                  Use utils service instead

                                  +
                                  + +
                                  +
                                  + +
                                  Return values
                                  + bool + — + + +
                                  +
                                  +

                                  + isMaintenanceModeActive() + +

                                  + + + + + public + isMaintenanceModeActive() : bool + + + + +
                                  + Tags + +
                                  +
                                  +
                                  + codeCoverageIgnore +
                                  +
                                  + + +
                                  +
                                  + deprecated +
                                  +
                                  + +

                                  Use utils service instead

                                  +
                                  + +
                                  +
                                  + +
                                  Return values
                                  + bool + — + + +
                                  +
                                  +

                                  + isPreviewMode() + +

                                  + + + + + public + isPreviewMode() : bool + + + + +
                                  + Tags + +
                                  +
                                  +
                                  + codeCoverageIgnore +
                                  +
                                  + + +
                                  +
                                  + deprecated +
                                  +
                                  + +

                                  Use utils service instead

                                  +
                                  + +
                                  +
                                  + +
                                  Return values
                                  + bool + — + + +
                                  +
                                  +

                                  + log() + +

                                  + + + + + public + log(string $text, string $function, string $category) : mixed + + +
                                  Parameters
                                  +
                                  +
                                  + $text + : string +
                                  +
                                  +
                                  + +
                                  +
                                  + $function + : string +
                                  +
                                  +
                                  + +
                                  +
                                  + $category + : string +
                                  +
                                  +

                                  Use constants in ContaoContext

                                  +
                                  + +
                                  +
                                  + + +
                                  + Tags + +
                                  +
                                  +
                                  + codeCoverageIgnore +
                                  +
                                  + + +
                                  +
                                  + deprecated +
                                  +
                                  + +

                                  Use utils service instead

                                  +
                                  + +
                                  +
                                  + +
                                  Return values
                                  + mixed + — + + +
                                  +
                                  +

                                  + mergeConfigFile() + +

                                  + + +

                                  Recursively merges a config.yml with a $extensionConfigs array in the context of ExtensionPluginInterface::getExtensionConfig().

                                  + + + public + static mergeConfigFile(string $activeExtensionName, string $extensionName, array<string|int, mixed> $extensionConfigs, string $configFile) : array<string|int, mixed> + +

                                  Must be static, because on Plugin::getExtensionConfig() no contao.framework nor service huh.utils.container is available.

                                  +
                                  + +
                                  Parameters
                                  +
                                  +
                                  + $activeExtensionName + : string +
                                  +
                                  +
                                  + +
                                  +
                                  + $extensionName + : string +
                                  +
                                  +
                                  + +
                                  +
                                  + $extensionConfigs + : array<string|int, mixed> +
                                  +
                                  +
                                  + +
                                  +
                                  + $configFile + : string +
                                  +
                                  +
                                  + +
                                  +
                                  + + +
                                  + Tags + +
                                  +
                                  +
                                  + codeCoverageIgnore +
                                  +
                                  + + +
                                  +
                                  + deprecated +
                                  +
                                  + +

                                  Use ConfigPluginInterface with class_exist instead

                                  +
                                  + +
                                  +
                                  + +
                                  Return values
                                  + array<string|int, mixed> + — + + +
                                  +
                                  + + + + +
                                  +
                                  +
                                  +
                                  +

                                  Search results

                                  + +
                                  +
                                  +
                                    +
                                    +
                                    +
                                    +
                                    +
                                    + + +
                                    + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-ContaoManager-Plugin.html b/classes/HeimrichHannot-UtilsBundle-ContaoManager-Plugin.html index ba64c3ae..ceae9fdb 100644 --- a/classes/HeimrichHannot-UtilsBundle-ContaoManager-Plugin.html +++ b/classes/HeimrichHannot-UtilsBundle-ContaoManager-Plugin.html @@ -110,7 +110,7 @@

                                    @@ -183,7 +183,7 @@

                                    @@ -227,7 +227,7 @@

                                    Plugin.php : - 36 + 40 diff --git a/classes/HeimrichHannot-UtilsBundle-Content-ContentUtil.html b/classes/HeimrichHannot-UtilsBundle-Content-ContentUtil.html new file mode 100644 index 00000000..c94dcd0c --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-Content-ContentUtil.html @@ -0,0 +1,427 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                    +

                                    Contao Utils Bundle

                                    + + + + + +
                                    + +
                                    +
                                    + + + + +
                                    + + +
                                    +

                                    + ContentUtil + + +
                                    + in package + +
                                    + + +

                                    + + + + +
                                    + + + + + + + + +

                                    + Table of Contents + +

                                    + +
                                    +
                                    + $framework + +  : ContaoFrameworkInterface +
                                    +
                                    + +
                                    + $container + +  : ContainerInterface +
                                    +
                                    + +
                                    + __construct() + +  : mixed +
                                    +
                                    + +
                                    + getMultilingualElements() + +  : mixed +
                                    +
                                    + +
                                    + + + + + + +
                                    +

                                    + Properties + +

                                    +
                                    +

                                    + $framework + + + +

                                    + + + + + protected + ContaoFrameworkInterface + $framework + + + + + + +
                                    +
                                    +

                                    + $container + + + +

                                    + + + + + private + ContainerInterface + $container + + + + + + +
                                    +
                                    + +
                                    +

                                    + Methods + +

                                    +
                                    +

                                    + __construct() + +

                                    + + + + + public + __construct(ContainerInterface $container) : mixed + +
                                    + +
                                    Parameters
                                    +
                                    +
                                    + $container + : ContainerInterface +
                                    +
                                    +
                                    + +
                                    +
                                    + + + +
                                    Return values
                                    + mixed + — + + +
                                    +
                                    +

                                    + getMultilingualElements() + +

                                    + + + + + public + getMultilingualElements(mixed $id, mixed $ptable) : mixed + +
                                    + +
                                    Parameters
                                    +
                                    +
                                    + $id + : mixed +
                                    +
                                    +
                                    + +
                                    +
                                    + $ptable + : mixed +
                                    +
                                    +
                                    + +
                                    +
                                    + + + +
                                    Return values
                                    + mixed + — + + +
                                    +
                                    + + + + +
                                    +
                                    +
                                    +
                                    +

                                    Search results

                                    + +
                                    +
                                    +
                                      +
                                      +
                                      +
                                      +
                                      +
                                      + + +
                                      + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-Database-DatabaseUtil.html b/classes/HeimrichHannot-UtilsBundle-Database-DatabaseUtil.html new file mode 100644 index 00000000..d305d2e4 --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-Database-DatabaseUtil.html @@ -0,0 +1,2336 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                      +

                                      Contao Utils Bundle

                                      + + + + + +
                                      + +
                                      +
                                      + + + + +
                                      + + +
                                      +

                                      + DatabaseUtil + + +
                                      + in package + +
                                      + + +

                                      + + + + +
                                      + + + + + + + + +

                                      + Table of Contents + +

                                      + +
                                      +
                                      + NEGATIVE_OPERATORS + +  = [self::OPERATOR_UNLIKE, self::OPERATOR_UNEQUAL, self::OPERATOR_NOT_IN, self::OPERATOR_IS_NULL, self::OPERATOR_IS_EMPTY, self::OPERATOR_NOT_REGEXP] +
                                      +
                                      + +
                                      + ON_DUPLICATE_KEY_IGNORE + +  = 'IGNORE' +
                                      +
                                      + +
                                      + ON_DUPLICATE_KEY_UPDATE + +  = 'UPDATE' +
                                      +
                                      + +
                                      + OPERATOR_EQUAL + +  = 'equal' +
                                      +
                                      + +
                                      + OPERATOR_GREATER + +  = 'greater' +
                                      +
                                      + +
                                      + OPERATOR_GREATER_EQUAL + +  = 'greaterequal' +
                                      +
                                      + +
                                      + OPERATOR_IN + +  = 'in' +
                                      +
                                      + +
                                      + OPERATOR_IS_EMPTY + +  = 'isempty' +
                                      +
                                      + +
                                      + OPERATOR_IS_NOT_EMPTY + +  = 'isnotempty' +
                                      +
                                      + +
                                      + OPERATOR_IS_NOT_NULL + +  = 'isnotnull' +
                                      +
                                      + +
                                      + OPERATOR_IS_NULL + +  = 'isnull' +
                                      +
                                      + +
                                      + OPERATOR_LIKE + +  = 'like' +
                                      +
                                      + +
                                      + OPERATOR_LOWER + +  = 'lower' +
                                      +
                                      + +
                                      + OPERATOR_LOWER_EQUAL + +  = 'lowerequal' +
                                      +
                                      + +
                                      + OPERATOR_MAPPING + +  = [self::OPERATOR_LIKE => 'like', self::OPERATOR_UNLIKE => 'notLike', self::OPERATOR_EQUAL => 'eq', self::OPERATOR_UNEQUAL => 'neq', self::OPERATOR_LOWER => 'lt', self::OPERATOR_LOWER_EQUAL => 'lte', self::OPERATOR_GREATER => 'gt', self::OPERATOR_GREATER_EQUAL => 'gte', self::OPERATOR_IN => 'in', self::OPERATOR_NOT_IN => 'notIn', self::OPERATOR_IS_NULL => 'isNull', self::OPERATOR_IS_NOT_NULL => 'isNotNull'] +
                                      +
                                      Maps operators of this class to its corresponding Doctrine ExpressionBuilder method.
                                      + +
                                      + OPERATOR_NOT_IN + +  = 'notin' +
                                      +
                                      + +
                                      + OPERATOR_NOT_REGEXP + +  = 'notregexp' +
                                      +
                                      + +
                                      + OPERATOR_REGEXP + +  = 'regexp' +
                                      +
                                      + +
                                      + OPERATOR_UNEQUAL + +  = 'unequal' +
                                      +
                                      + +
                                      + OPERATOR_UNLIKE + +  = 'unlike' +
                                      +
                                      + +
                                      + OPERATORS + +  = [self::OPERATOR_LIKE, self::OPERATOR_UNLIKE, self::OPERATOR_EQUAL, self::OPERATOR_UNEQUAL, self::OPERATOR_LOWER, self::OPERATOR_LOWER_EQUAL, self::OPERATOR_GREATER, self::OPERATOR_GREATER_EQUAL, self::OPERATOR_IN, self::OPERATOR_NOT_IN, self::OPERATOR_IS_NULL, self::OPERATOR_IS_NOT_NULL, self::OPERATOR_IS_EMPTY, self::OPERATOR_IS_NOT_EMPTY, self::OPERATOR_REGEXP, self::OPERATOR_NOT_REGEXP] +
                                      +
                                      + +
                                      + SQL_CONDITION_AND + +  = 'AND' +
                                      +
                                      + +
                                      + SQL_CONDITION_OR + +  = 'OR' +
                                      +
                                      + +
                                      + $framework + +  : ContaoFrameworkInterface +
                                      +
                                      + +
                                      + __construct() + +  : mixed +
                                      +
                                      + +
                                      + beginTransaction() + +  : mixed +
                                      +
                                      + +
                                      + commitTransaction() + +  : mixed +
                                      +
                                      + +
                                      + composeWhereForQueryBuilder() + +  : string +
                                      +
                                      + +
                                      + computeCondition() + +  : array<string|int, mixed> +
                                      +
                                      Computes a MySQL condition appropriate for the given operator.
                                      + +
                                      + createWhereForSerializedBlob() + +  : array<string|int, mixed> +
                                      +
                                      Create a where condition for a field that contains a serialized blob.
                                      + +
                                      + delete() + +  : mixed +
                                      +
                                      + +
                                      + doBulkInsert() + +  : mixed +
                                      +
                                      Bulk insert SQL of given data.
                                      + +
                                      + findOneResultBy() + +  : mixed +
                                      +
                                      Return a single database result by table and search criteria.
                                      + +
                                      + findResultByPk() + +  : mixed +
                                      +
                                      Returns a database result for a given table and id(primary key).
                                      + +
                                      + findResultsBy() + +  : mixed +
                                      +
                                      + +
                                      + getChildRecords() + +  : array<string|int, mixed> +
                                      +
                                      + +
                                      + insert() + +  : mixed +
                                      +
                                      + +
                                      + processInPieces() + +  : bool|int +
                                      +
                                      Process a query in pieces, run callback within each cycle.
                                      + +
                                      + transformVerboseOperator() + +  : string|false +
                                      +
                                      Transforms verbose operators to valid MySQL operators (aka junctors).
                                      + +
                                      + update() + +  : mixed +
                                      +
                                      + +
                                      + createQueryWithoutRelations() + +  : string +
                                      +
                                      Adapted from \Contao\Model\QueryBuilder::find().
                                      + +
                                      + + + + +
                                      +

                                      + Constants + +

                                      +
                                      +

                                      + NEGATIVE_OPERATORS + +

                                      + + + + + + public + mixed + NEGATIVE_OPERATORS + = [self::OPERATOR_UNLIKE, self::OPERATOR_UNEQUAL, self::OPERATOR_NOT_IN, self::OPERATOR_IS_NULL, self::OPERATOR_IS_EMPTY, self::OPERATOR_NOT_REGEXP] + + + +
                                      + +
                                      + + + +
                                      +
                                      +

                                      + ON_DUPLICATE_KEY_IGNORE + +

                                      + + + + + + public + mixed + ON_DUPLICATE_KEY_IGNORE + = 'IGNORE' + + + +
                                      + +
                                      + + + +
                                      +
                                      +

                                      + ON_DUPLICATE_KEY_UPDATE + +

                                      + + + + + + public + mixed + ON_DUPLICATE_KEY_UPDATE + = 'UPDATE' + + + +
                                      + +
                                      + + + +
                                      +
                                      +

                                      + OPERATOR_EQUAL + +

                                      + + + + + + public + mixed + OPERATOR_EQUAL + = 'equal' + + + +
                                      + +
                                      + + + +
                                      +
                                      +

                                      + OPERATOR_GREATER + +

                                      + + + + + + public + mixed + OPERATOR_GREATER + = 'greater' + + + +
                                      + +
                                      + + + +
                                      +
                                      +

                                      + OPERATOR_GREATER_EQUAL + +

                                      + + + + + + public + mixed + OPERATOR_GREATER_EQUAL + = 'greaterequal' + + + +
                                      + +
                                      + + + +
                                      +
                                      +

                                      + OPERATOR_IN + +

                                      + + + + + + public + mixed + OPERATOR_IN + = 'in' + + + +
                                      + +
                                      + + + +
                                      +
                                      +

                                      + OPERATOR_IS_EMPTY + +

                                      + + + + + + public + mixed + OPERATOR_IS_EMPTY + = 'isempty' + + + +
                                      + +
                                      + + + +
                                      +
                                      +

                                      + OPERATOR_IS_NOT_EMPTY + +

                                      + + + + + + public + mixed + OPERATOR_IS_NOT_EMPTY + = 'isnotempty' + + + +
                                      + +
                                      + + + +
                                      +
                                      +

                                      + OPERATOR_IS_NOT_NULL + +

                                      + + + + + + public + mixed + OPERATOR_IS_NOT_NULL + = 'isnotnull' + + + +
                                      + +
                                      + + + +
                                      +
                                      +

                                      + OPERATOR_IS_NULL + +

                                      + + + + + + public + mixed + OPERATOR_IS_NULL + = 'isnull' + + + +
                                      + +
                                      + + + +
                                      +
                                      +

                                      + OPERATOR_LIKE + +

                                      + + + + + + public + mixed + OPERATOR_LIKE + = 'like' + + + +
                                      + +
                                      + + + +
                                      +
                                      +

                                      + OPERATOR_LOWER + +

                                      + + + + + + public + mixed + OPERATOR_LOWER + = 'lower' + + + +
                                      + +
                                      + + + +
                                      +
                                      +

                                      + OPERATOR_LOWER_EQUAL + +

                                      + + + + + + public + mixed + OPERATOR_LOWER_EQUAL + = 'lowerequal' + + + +
                                      + +
                                      + + + +
                                      +
                                      +

                                      + OPERATOR_MAPPING + +

                                      + + + +

                                      Maps operators of this class to its corresponding Doctrine ExpressionBuilder method.

                                      + + + public + mixed + OPERATOR_MAPPING + = [self::OPERATOR_LIKE => 'like', self::OPERATOR_UNLIKE => 'notLike', self::OPERATOR_EQUAL => 'eq', self::OPERATOR_UNEQUAL => 'neq', self::OPERATOR_LOWER => 'lt', self::OPERATOR_LOWER_EQUAL => 'lte', self::OPERATOR_GREATER => 'gt', self::OPERATOR_GREATER_EQUAL => 'gte', self::OPERATOR_IN => 'in', self::OPERATOR_NOT_IN => 'notIn', self::OPERATOR_IS_NULL => 'isNull', self::OPERATOR_IS_NOT_NULL => 'isNotNull'] + + + + +
                                      + + + +
                                      +
                                      +

                                      + OPERATOR_NOT_IN + +

                                      + + + + + + public + mixed + OPERATOR_NOT_IN + = 'notin' + + + +
                                      + +
                                      + + + +
                                      +
                                      +

                                      + OPERATOR_NOT_REGEXP + +

                                      + + + + + + public + mixed + OPERATOR_NOT_REGEXP + = 'notregexp' + + + +
                                      + +
                                      + + + +
                                      +
                                      +

                                      + OPERATOR_REGEXP + +

                                      + + + + + + public + mixed + OPERATOR_REGEXP + = 'regexp' + + + +
                                      + +
                                      + + + +
                                      +
                                      +

                                      + OPERATOR_UNEQUAL + +

                                      + + + + + + public + mixed + OPERATOR_UNEQUAL + = 'unequal' + + + +
                                      + +
                                      + + + +
                                      +
                                      +

                                      + OPERATOR_UNLIKE + +

                                      + + + + + + public + mixed + OPERATOR_UNLIKE + = 'unlike' + + + +
                                      + +
                                      + + + +
                                      +
                                      +

                                      + OPERATORS + +

                                      + + + + + + public + mixed + OPERATORS + = [self::OPERATOR_LIKE, self::OPERATOR_UNLIKE, self::OPERATOR_EQUAL, self::OPERATOR_UNEQUAL, self::OPERATOR_LOWER, self::OPERATOR_LOWER_EQUAL, self::OPERATOR_GREATER, self::OPERATOR_GREATER_EQUAL, self::OPERATOR_IN, self::OPERATOR_NOT_IN, self::OPERATOR_IS_NULL, self::OPERATOR_IS_NOT_NULL, self::OPERATOR_IS_EMPTY, self::OPERATOR_IS_NOT_EMPTY, self::OPERATOR_REGEXP, self::OPERATOR_NOT_REGEXP] + + + +
                                      + +
                                      + + + +
                                      +
                                      +

                                      + SQL_CONDITION_AND + +

                                      + + + + + + public + mixed + SQL_CONDITION_AND + = 'AND' + + + +
                                      + +
                                      + + + +
                                      +
                                      +

                                      + SQL_CONDITION_OR + +

                                      + + + + + + public + mixed + SQL_CONDITION_OR + = 'OR' + + + +
                                      + +
                                      + + + +
                                      +
                                      + + +
                                      +

                                      + Properties + +

                                      +
                                      +

                                      + $framework + + + +

                                      + + + + + protected + ContaoFrameworkInterface + $framework + + + + + + +
                                      +
                                      + +
                                      +

                                      + Methods + +

                                      +
                                      +

                                      + __construct() + +

                                      + + + + + public + __construct(ContaoFrameworkInterface $framework) : mixed + +
                                      + +
                                      Parameters
                                      +
                                      +
                                      + $framework + : ContaoFrameworkInterface +
                                      +
                                      +
                                      + +
                                      +
                                      + + + +
                                      Return values
                                      + mixed + — + + +
                                      +
                                      +

                                      + beginTransaction() + +

                                      + + + + + public + beginTransaction() : mixed + +
                                      + + + + +
                                      Return values
                                      + mixed + — + + +
                                      +
                                      +

                                      + commitTransaction() + +

                                      + + + + + public + commitTransaction() : mixed + +
                                      + + + + +
                                      Return values
                                      + mixed + — + + +
                                      +
                                      +

                                      + composeWhereForQueryBuilder() + +

                                      + + + + + public + composeWhereForQueryBuilder(QueryBuilder $queryBuilder, string $field, string $operator[, array<string|int, mixed> $dca = null ][, null $value = null ][, array<string|int, mixed> $options = [] ]) : string + + +
                                      Parameters
                                      +
                                      +
                                      + $queryBuilder + : QueryBuilder +
                                      +
                                      +
                                      + +
                                      +
                                      + $field + : string +
                                      +
                                      +
                                      + +
                                      +
                                      + $operator + : string +
                                      +
                                      +
                                      + +
                                      +
                                      + $dca + : array<string|int, mixed> + = null
                                      +
                                      +
                                      + +
                                      +
                                      + $value + : null + = null
                                      +
                                      + +
                                      +
                                      + $options + : array<string|int, mixed> + = []
                                      +
                                      +

                                      {wildcardSuffix: string}

                                      +
                                      + +
                                      +
                                      + + + +
                                      Return values
                                      + string + — + + +
                                      +
                                      +

                                      + computeCondition() + +

                                      + + +

                                      Computes a MySQL condition appropriate for the given operator.

                                      + + + public + computeCondition(string $field, string $operator, mixed $value[, string $table = null ][, bool $skipTablePrefix = false ]) : array<string|int, mixed> + + +
                                      Parameters
                                      +
                                      +
                                      + $field + : string +
                                      +
                                      +
                                      + +
                                      +
                                      + $operator + : string +
                                      +
                                      +
                                      + +
                                      +
                                      + $value + : mixed +
                                      +
                                      + +
                                      +
                                      + $table + : string + = null
                                      +
                                      + +
                                      +
                                      + $skipTablePrefix + : bool + = false
                                      +
                                      +
                                      + +
                                      +
                                      + + + +
                                      Return values
                                      + array<string|int, mixed> + — +

                                      Returns array($strQuery, $arrValues)

                                      +
                                      + + +
                                      +
                                      +

                                      + createWhereForSerializedBlob() + +

                                      + + +

                                      Create a where condition for a field that contains a serialized blob.

                                      + + + public + createWhereForSerializedBlob(string $field, array<string|int, mixed> $values[, string $connective = self::SQL_CONDITION_OR ][, array<string|int, mixed> $options = [] ]) : array<string|int, mixed> + + +
                                      Parameters
                                      +
                                      +
                                      + $field + : string +
                                      +
                                      +

                                      The field the condition should be checked against accordances

                                      +
                                      + +
                                      +
                                      + $values + : array<string|int, mixed> +
                                      +
                                      +

                                      The values array to check the field against

                                      +
                                      + +
                                      +
                                      + $connective + : string + = self::SQL_CONDITION_OR
                                      +
                                      +

                                      SQL_CONDITION_OR | SQL_CONDITION_AND

                                      +
                                      + +
                                      +
                                      + $options + : array<string|int, mixed> + = []
                                      +
                                      +

                                      Pass additional options.

                                      +

                                      Options:

                                      +
                                        +
                                      • inline_values: (bool) Inline the values in the sql part instead of using ? ('REGEXP (':"3"')' instead of 'REGEXP (?)'). Return value not change (still an array with an values index)
                                      • +
                                      +
                                      + +
                                      +
                                      + + +
                                      + Tags + +
                                      +
                                      +
                                      + deprecated +
                                      +
                                      + +

                                      Use Utils service instead

                                      +
                                      + +
                                      +
                                      + +
                                      Return values
                                      + array<string|int, mixed> + — + + +
                                      +
                                      +

                                      + delete() + +

                                      + + + + + public + delete(string $table[, string $where = null ][, array<string|int, mixed> $whereValues = [] ][, array<string|int, mixed> $options = [] ]) : mixed + +
                                      + +
                                      Parameters
                                      +
                                      +
                                      + $table + : string +
                                      +
                                      +
                                      + +
                                      +
                                      + $where + : string + = null
                                      +
                                      +
                                      + +
                                      +
                                      + $whereValues + : array<string|int, mixed> + = []
                                      +
                                      +
                                      + +
                                      +
                                      + $options + : array<string|int, mixed> + = []
                                      +
                                      +
                                      + +
                                      +
                                      + + + +
                                      Return values
                                      + mixed + — + + +
                                      +
                                      +

                                      + doBulkInsert() + +

                                      + + +

                                      Bulk insert SQL of given data.

                                      + + + public + doBulkInsert(string $table[, array<string|int, mixed> $data = [] ][, array<string|int, mixed> $fixedValues = [] ][, mixed $onDuplicateKey = null ][, callable $callback = null ][, callable $itemCallback = null ][, int $bulkSize = 100 ][, string $pk = 'id' ]) : mixed + + +
                                      Parameters
                                      +
                                      +
                                      + $table + : string +
                                      +
                                      +

                                      The database table, where new items should be stored inside

                                      +
                                      + +
                                      +
                                      + $data + : array<string|int, mixed> + = []
                                      +
                                      +

                                      An array of values associated to its field

                                      +
                                      + +
                                      +
                                      + $fixedValues + : array<string|int, mixed> + = []
                                      +
                                      +

                                      A array of fixed values associated to its field that should be set for each row as fixed values

                                      +
                                      + +
                                      +
                                      + $onDuplicateKey + : mixed + = null
                                      +
                                      +

                                      null = Throw error on duplicates, self::ON_DUPLICATE_KEY_IGNORE = ignore error duplicates (skip this entries), +self::ON_DUPLICATE_KEY_UPDATE = update existing entries

                                      +
                                      + +
                                      +
                                      + $callback + : callable + = null
                                      +
                                      +

                                      A callback that should be triggered after each cycle, contains $arrValues of current cycle

                                      +
                                      + +
                                      +
                                      + $itemCallback + : callable + = null
                                      +
                                      +

                                      A callback to change the insert values for each items, contains $arrValues as first argument, $arrFields as +second, $arrOriginal as third, expects an array as return value with same order as $arrFields, if no array is +returned, insert of the row will be skipped item insert

                                      +
                                      + +
                                      +
                                      + $bulkSize + : int + = 100
                                      +
                                      +

                                      The bulk size

                                      +
                                      + +
                                      +
                                      + $pk + : string + = 'id'
                                      +
                                      +

                                      The primary key of the current table (default: id)

                                      +
                                      + +
                                      +
                                      + + + +
                                      Return values
                                      + mixed + — + + +
                                      +
                                      +

                                      + findOneResultBy() + +

                                      + + +

                                      Return a single database result by table and search criteria.

                                      + + + public + findOneResultBy(string $table, array<string|int, mixed>|null $columns, array<string|int, mixed>|null $values[, array<string|int, mixed> $options = [] ]) : mixed + + +
                                      Parameters
                                      +
                                      +
                                      + $table + : string +
                                      +
                                      +
                                      + +
                                      +
                                      + $columns + : array<string|int, mixed>|null +
                                      +
                                      +
                                      + +
                                      +
                                      + $values + : array<string|int, mixed>|null +
                                      +
                                      +
                                      + +
                                      +
                                      + $options + : array<string|int, mixed> + = []
                                      +
                                      +
                                      + +
                                      +
                                      + + + +
                                      Return values
                                      + mixed + — + + +
                                      +
                                      +

                                      + findResultByPk() + +

                                      + + +

                                      Returns a database result for a given table and id(primary key).

                                      + + + public + findResultByPk(string $table, mixed $pk[, array<string|int, mixed> $options = [] ]) : mixed + + +
                                      Parameters
                                      +
                                      +
                                      + $table + : string +
                                      +
                                      +
                                      + +
                                      +
                                      + $pk + : mixed +
                                      +
                                      + +
                                      +
                                      + $options + : array<string|int, mixed> + = []
                                      +
                                      +
                                      + +
                                      +
                                      + + + +
                                      Return values
                                      + mixed + — + + +
                                      +
                                      +

                                      + findResultsBy() + +

                                      + + + + + public + findResultsBy(string $table, array<string|int, mixed>|null $columns, array<string|int, mixed>|null $values[, array<string|int, mixed> $options = [] ]) : mixed + +
                                      + +
                                      Parameters
                                      +
                                      +
                                      + $table + : string +
                                      +
                                      +
                                      + +
                                      +
                                      + $columns + : array<string|int, mixed>|null +
                                      +
                                      +
                                      + +
                                      +
                                      + $values + : array<string|int, mixed>|null +
                                      +
                                      +
                                      + +
                                      +
                                      + $options + : array<string|int, mixed> + = []
                                      +
                                      +
                                      + +
                                      +
                                      + + + +
                                      Return values
                                      + mixed + — + + +
                                      +
                                      +

                                      + getChildRecords() + +

                                      + + + + + public + getChildRecords(array<string|int, mixed> $parentIds, string $table[, array<string|int, mixed> $options = [] ]) : array<string|int, mixed> + +
                                      + +
                                      Parameters
                                      +
                                      +
                                      + $parentIds + : array<string|int, mixed> +
                                      +
                                      +
                                      + +
                                      +
                                      + $table + : string +
                                      +
                                      +
                                      + +
                                      +
                                      + $options + : array<string|int, mixed> + = []
                                      +
                                      +
                                      + +
                                      +
                                      + + + +
                                      Return values
                                      + array<string|int, mixed> + — + + +
                                      +
                                      +

                                      + insert() + +

                                      + + + + + public + insert(string $table, array<string|int, mixed> $set[, array<string|int, mixed> $options = [] ]) : mixed + +
                                      + +
                                      Parameters
                                      +
                                      +
                                      + $table + : string +
                                      +
                                      +
                                      + +
                                      +
                                      + $set + : array<string|int, mixed> +
                                      +
                                      +
                                      + +
                                      +
                                      + $options + : array<string|int, mixed> + = []
                                      +
                                      +
                                      + +
                                      +
                                      + + + +
                                      Return values
                                      + mixed + — + + +
                                      +
                                      +

                                      + processInPieces() + +

                                      + + +

                                      Process a query in pieces, run callback within each cycle.

                                      + + + public + processInPieces(string $countQuery, string $query[, callable $callback = null ][, string $key = null ][, int $bulkSize = 5000 ]) : bool|int + + +
                                      Parameters
                                      +
                                      +
                                      + $countQuery + : string +
                                      +
                                      +

                                      The query that count the total rows, must contain "Select COUNT(*) as total"

                                      +
                                      + +
                                      +
                                      + $query + : string +
                                      +
                                      +

                                      The query, with the rows that should be iterated over

                                      +
                                      + +
                                      +
                                      + $callback + : callable + = null
                                      +
                                      +

                                      A callback that should be triggered after each cycle, contains $arrRows of current cycle

                                      +
                                      + +
                                      +
                                      + $key + : string + = null
                                      +
                                      +

                                      The key of the value that should be set as key identifier for the returned result array entries

                                      +
                                      + +
                                      +
                                      + $bulkSize + : int + = 5000
                                      +
                                      +

                                      The bulk size

                                      +
                                      + +
                                      +
                                      + + + +
                                      Return values
                                      + bool|int + — +

                                      False if nothing to do, otherwise return the total number of processes entities

                                      +
                                      + + +
                                      +
                                      +

                                      + transformVerboseOperator() + +

                                      + + +

                                      Transforms verbose operators to valid MySQL operators (aka junctors).

                                      + + + public + transformVerboseOperator(string $verboseOperator) : string|false + +

                                      Supports: like, unlike, equal, unequal, lower, greater, lowerequal, greaterequal, in, notin.

                                      +
                                      + +
                                      Parameters
                                      +
                                      +
                                      + $verboseOperator + : string +
                                      +
                                      +
                                      + +
                                      +
                                      + + + +
                                      Return values
                                      + string|false + — +

                                      The transformed operator or false if not supported

                                      +
                                      + + +
                                      +
                                      +

                                      + update() + +

                                      + + + + + public + update(string $table, array<string|int, mixed> $set[, string $where = null ][, array<string|int, mixed> $whereValues = [] ][, array<string|int, mixed> $options = [] ]) : mixed + +
                                      + +
                                      Parameters
                                      +
                                      +
                                      + $table + : string +
                                      +
                                      +
                                      + +
                                      +
                                      + $set + : array<string|int, mixed> +
                                      +
                                      +
                                      + +
                                      +
                                      + $where + : string + = null
                                      +
                                      +
                                      + +
                                      +
                                      + $whereValues + : array<string|int, mixed> + = []
                                      +
                                      +
                                      + +
                                      +
                                      + $options + : array<string|int, mixed> + = []
                                      +
                                      +
                                      + +
                                      +
                                      + + + +
                                      Return values
                                      + mixed + — + + +
                                      +
                                      +

                                      + createQueryWithoutRelations() + +

                                      + + +

                                      Adapted from \Contao\Model\QueryBuilder::find().

                                      + + + private + createQueryWithoutRelations(array<string|int, mixed> $options) : string + + +
                                      Parameters
                                      +
                                      +
                                      + $options + : array<string|int, mixed> +
                                      +
                                      +
                                      + +
                                      +
                                      + + + +
                                      Return values
                                      + string + — + + +
                                      +
                                      + + + + +
                                      +
                                      +
                                      +
                                      +

                                      Search results

                                      + +
                                      +
                                      +
                                        +
                                        +
                                        +
                                        +
                                        +
                                        + + +
                                        + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-Date-DateUtil.html b/classes/HeimrichHannot-UtilsBundle-Date-DateUtil.html new file mode 100644 index 00000000..0c93fc86 --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-Date-DateUtil.html @@ -0,0 +1,1262 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                        +

                                        Contao Utils Bundle

                                        + + + + + +
                                        + +
                                        +
                                        + + + + +
                                        + + +
                                        +

                                        + DateUtil + + +
                                        + in package + +
                                        + + +

                                        + + + + +
                                        + + + + + + + + +

                                        + Table of Contents + +

                                        + +
                                        +
                                        + $container + +  : ContainerInterface +
                                        +
                                        + +
                                        + $framework + +  : ContaoFramework +
                                        +
                                        + +
                                        + __construct() + +  : mixed +
                                        +
                                        + +
                                        + convertSecondsToHumanReadableFormat() + +  : mixed +
                                        +
                                        + +
                                        + getDaysBetween() + +  : float|int +
                                        +
                                        + +
                                        + getFormattedDateTime() + +  : string|null +
                                        +
                                        + +
                                        + getFormattedDateTimeByEvent() + +  : string|null +
                                        +
                                        + +
                                        + getGMTMidnightTstamp() + +  : int +
                                        +
                                        transfer a given timestamp to a gmt timestamp at midnight.
                                        + +
                                        + getMonthTranslationMap() + +  : mixed +
                                        +
                                        + +
                                        + getShortMonthTranslationMap() + +  : mixed +
                                        +
                                        + +
                                        + getTimePeriodInSeconds() + +  : float|int|null +
                                        +
                                        Returns the time in seconds of an given time period.
                                        + +
                                        + getTimeStamp() + +  : int +
                                        +
                                        Get the timestamp based on input date, no matter input is timestamp or string date.
                                        + +
                                        + isDayInDateFormat() + +  : bool +
                                        +
                                        Checks if a form of day is available in the date format.
                                        + +
                                        + isMonthInDateFormat() + +  : bool +
                                        +
                                        Checks if a form of month is available in the date format.
                                        + +
                                        + isYearInDateFormat() + +  : bool +
                                        +
                                        Checks if a form of year is available in the date format.
                                        + +
                                        + transformPhpDateFormatToISO8601() + +  : string +
                                        +
                                        Format a php date formate pattern to an ISO8601 compliant format.
                                        + +
                                        + transformPhpDateFormatToRFC3339() + +  : string +
                                        +
                                        Format a php date formate pattern to an RFC3339 compliant format.
                                        + +
                                        + translateMonths() + +  : mixed|string +
                                        +
                                        Translates available months inside a given string from English to the current language.
                                        + +
                                        + translateMonthsToEnglish() + +  : mixed|string +
                                        +
                                        Translates available months inside a given string into their English representations taking into account the current language.
                                        + +
                                        + + + + + + +
                                        +

                                        + Properties + +

                                        +
                                        +

                                        + $container + + + +

                                        + + + + + protected + ContainerInterface + $container + + + + + + +
                                        +
                                        +

                                        + $framework + + + +

                                        + + + + + protected + ContaoFramework + $framework + + + + + + +
                                        +
                                        + +
                                        +

                                        + Methods + +

                                        +
                                        +

                                        + __construct() + +

                                        + + + + + public + __construct(ContainerInterface $container) : mixed + +
                                        + +
                                        Parameters
                                        +
                                        +
                                        + $container + : ContainerInterface +
                                        +
                                        +
                                        + +
                                        +
                                        + + + +
                                        Return values
                                        + mixed + — + + +
                                        +
                                        +

                                        + convertSecondsToHumanReadableFormat() + +

                                        + + + + + public + convertSecondsToHumanReadableFormat(mixed $seconds) : mixed + +
                                        + +
                                        Parameters
                                        +
                                        +
                                        + $seconds + : mixed +
                                        +
                                        +
                                        + +
                                        +
                                        + + + +
                                        Return values
                                        + mixed + — + + +
                                        +
                                        +

                                        + getDaysBetween() + +

                                        + + + + + public + getDaysBetween(int $smallerTimestamp[, int $largerTimestamp = null ][, bool $returnFullDays = false ]) : float|int + + +
                                        Parameters
                                        +
                                        +
                                        + $smallerTimestamp + : int +
                                        +
                                        +
                                        + +
                                        +
                                        + $largerTimestamp + : int + = null
                                        +
                                        +
                                        + +
                                        +
                                        + $returnFullDays + : bool + = false
                                        +
                                        +

                                        If true, only full days are returned (0.67 -> 0)

                                        +
                                        + +
                                        +
                                        + + + +
                                        Return values
                                        + float|int + — + + +
                                        +
                                        +

                                        + getFormattedDateTime() + +

                                        + + + + + public + getFormattedDateTime(mixed $startDate, mixed $endDate[, mixed $addTime = false ], mixed $startTime, mixed $endTime[, array<string|int, mixed> $options = [] ]) : string|null + +
                                        + +
                                        Parameters
                                        +
                                        +
                                        + $startDate + : mixed +
                                        +
                                        +
                                        + +
                                        +
                                        + $endDate + : mixed +
                                        +
                                        +
                                        + +
                                        +
                                        + $addTime + : mixed + = false
                                        +
                                        +
                                        + +
                                        +
                                        + $startTime + : mixed +
                                        +
                                        +
                                        + +
                                        +
                                        + $endTime + : mixed +
                                        +
                                        +
                                        + +
                                        +
                                        + $options + : array<string|int, mixed> + = []
                                        +
                                        +
                                        + +
                                        +
                                        + + + +
                                        Return values
                                        + string|null + — + + +
                                        +
                                        +

                                        + getFormattedDateTimeByEvent() + +

                                        + + + + + public + getFormattedDateTimeByEvent(Model $event) : string|null + +
                                        + +
                                        Parameters
                                        +
                                        +
                                        + $event + : Model +
                                        +
                                        +
                                        + +
                                        +
                                        + + + +
                                        Return values
                                        + string|null + — + + +
                                        +
                                        +

                                        + getGMTMidnightTstamp() + +

                                        + + +

                                        transfer a given timestamp to a gmt timestamp at midnight.

                                        + + + public + getGMTMidnightTstamp(int $tstamp) : int + + +
                                        Parameters
                                        +
                                        +
                                        + $tstamp + : int +
                                        +
                                        +
                                        + +
                                        +
                                        + + + +
                                        Return values
                                        + int + — + + +
                                        +
                                        +

                                        + getMonthTranslationMap() + +

                                        + + + + + public + getMonthTranslationMap() : mixed + +
                                        + + + + +
                                        Return values
                                        + mixed + — + + +
                                        +
                                        +

                                        + getShortMonthTranslationMap() + +

                                        + + + + + public + getShortMonthTranslationMap() : mixed + +
                                        + + + + +
                                        Return values
                                        + mixed + — + + +
                                        +
                                        +

                                        + getTimePeriodInSeconds() + +

                                        + + +

                                        Returns the time in seconds of an given time period.

                                        + + + public + getTimePeriodInSeconds(string|array<string|int, mixed> $timePeriod) : float|int|null + + +
                                        Parameters
                                        +
                                        +
                                        + $timePeriod + : string|array<string|int, mixed> +
                                        +
                                        +

                                        Array or serialized string containing an value and an unit key

                                        +
                                        + +
                                        +
                                        + + + +
                                        Return values
                                        + float|int|null + — + + +
                                        +
                                        +

                                        + getTimeStamp() + +

                                        + + +

                                        Get the timestamp based on input date, no matter input is timestamp or string date.

                                        + + + public + getTimeStamp([string|int|DateTime|null $date = null ][, bool $replaceInsertTags = true ][, string|null $timezone = null ]) : int + + +
                                        Parameters
                                        +
                                        +
                                        + $date + : string|int|DateTime|null + = null
                                        +
                                        +

                                        The input date/timestamp/insertTag

                                        +
                                        + +
                                        +
                                        + $replaceInsertTags + : bool + = true
                                        +
                                        +

                                        Disable/enable {{date::}} insertTag support

                                        +
                                        + +
                                        +
                                        + $timezone + : string|null + = null
                                        +
                                        +

                                        A valid timezone from DateTimeZone::ALL, if provided the timezone offset will be added to the timestamp

                                        +
                                        + +
                                        +
                                        + + +
                                        + Tags + +
                                        +
                                        +
                                        + throws +
                                        +
                                        + Exception + +

                                        Throws error in case of an error when creating new DateTime instances

                                        +
                                        + +
                                        +
                                        + +
                                        Return values
                                        + int + — +

                                        The integer timestamp presentation of the input date with added timezone offset

                                        +
                                        + + +
                                        +
                                        +

                                        + isDayInDateFormat() + +

                                        + + +

                                        Checks if a form of day is available in the date format.

                                        + + + public + isDayInDateFormat(string $dateFormat) : bool + + +
                                        Parameters
                                        +
                                        +
                                        + $dateFormat + : string +
                                        +
                                        +
                                        + +
                                        +
                                        + + + +
                                        Return values
                                        + bool + — + + +
                                        +
                                        +

                                        + isMonthInDateFormat() + +

                                        + + +

                                        Checks if a form of month is available in the date format.

                                        + + + public + isMonthInDateFormat(string $dateFormat) : bool + + +
                                        Parameters
                                        +
                                        +
                                        + $dateFormat + : string +
                                        +
                                        +
                                        + +
                                        +
                                        + + + +
                                        Return values
                                        + bool + — + + +
                                        +
                                        +

                                        + isYearInDateFormat() + +

                                        + + +

                                        Checks if a form of year is available in the date format.

                                        + + + public + isYearInDateFormat(string $dateFormat) : bool + + +
                                        Parameters
                                        +
                                        +
                                        + $dateFormat + : string +
                                        +
                                        +
                                        + +
                                        +
                                        + + + +
                                        Return values
                                        + bool + — + + +
                                        +
                                        +

                                        + transformPhpDateFormatToISO8601() + +

                                        + + +

                                        Format a php date formate pattern to an ISO8601 compliant format.

                                        + + + public + transformPhpDateFormatToISO8601(string $format) : string + + +
                                        Parameters
                                        +
                                        +
                                        + $format + : string +
                                        +
                                        +

                                        The date format (e.g. "d.m.y H:i")

                                        +
                                        + +
                                        +
                                        + + + +
                                        Return values
                                        + string + — +

                                        The ISO8601 compliant format (see: https://de.wikipedia.org/wiki/ISO_8601)

                                        +
                                        + + +
                                        +
                                        +

                                        + transformPhpDateFormatToRFC3339() + +

                                        + + +

                                        Format a php date formate pattern to an RFC3339 compliant format.

                                        + + + public + transformPhpDateFormatToRFC3339(string $format) : string + + +
                                        Parameters
                                        +
                                        +
                                        + $format + : string +
                                        +
                                        +

                                        The php date format (see: http://php.net/manual/de/function.date.php#refsect1-function.date-parameters)

                                        +
                                        + +
                                        +
                                        + + + +
                                        Return values
                                        + string + — +

                                        The RFC3339 compliant format (see: http://userguide.icu-project.org/formatparse/datetime#TOC-Date-Time-Format-Syntax or http://www.unicode.org/reports/tr35/tr35-dates.html#Date_Field_Symbol_Table)

                                        +
                                        + + +
                                        +
                                        +

                                        + translateMonths() + +

                                        + + +

                                        Translates available months inside a given string from English to the current language.

                                        + + + public + translateMonths(string $date) : mixed|string + + +
                                        Parameters
                                        +
                                        +
                                        + $date + : string +
                                        +
                                        +
                                        + +
                                        +
                                        + + + +
                                        Return values
                                        + mixed|string + — + + +
                                        +
                                        +

                                        + translateMonthsToEnglish() + +

                                        + + +

                                        Translates available months inside a given string into their English representations taking into account the current language.

                                        + + + public + translateMonthsToEnglish(string $date) : mixed|string + + +
                                        Parameters
                                        +
                                        +
                                        + $date + : string +
                                        +
                                        +
                                        + +
                                        +
                                        + + + +
                                        Return values
                                        + mixed|string + — + + +
                                        +
                                        + + + + +
                                        +
                                        +
                                        +
                                        +

                                        Search results

                                        + +
                                        +
                                        +
                                          +
                                          +
                                          +
                                          +
                                          +
                                          + + +
                                          + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-Dca-AuthorField.html b/classes/HeimrichHannot-UtilsBundle-Dca-AuthorField.html index a8488c31..f53b2094 100644 --- a/classes/HeimrichHannot-UtilsBundle-Dca-AuthorField.html +++ b/classes/HeimrichHannot-UtilsBundle-Dca-AuthorField.html @@ -147,7 +147,7 @@

                                          $tables -  : array<string|int, mixed> +  : mixed
                                          @@ -168,7 +168,7 @@

                                          createOptionObject() -  : DcaFieldConfiguration|AuthorFieldConfiguration +  : AuthorFieldConfiguration
                                          @@ -285,7 +285,7 @@

                                          protected - static array<string|int, mixed> + static mixed $tables = [] @@ -392,17 +392,16 @@

                                          protected - static createOptionObject(string $table) : DcaFieldConfiguration|AuthorFieldConfiguration - -
                                          + static createOptionObject(string $table) : AuthorFieldConfiguration +

                                          Parameters
                                          @@ -410,15 +409,14 @@
                                          Parameters
                                          : string
                                          -
                                          - +
                                          Return values
                                          - DcaFieldConfiguration|AuthorFieldConfiguration + AuthorFieldConfiguration — @@ -436,7 +434,7 @@

                                          @@ -469,7 +467,7 @@

                                          diff --git a/classes/HeimrichHannot-UtilsBundle-Dca-AuthorFieldConfiguration.html b/classes/HeimrichHannot-UtilsBundle-Dca-AuthorFieldConfiguration.html index 2ec7d838..b77e6c27 100644 --- a/classes/HeimrichHannot-UtilsBundle-Dca-AuthorFieldConfiguration.html +++ b/classes/HeimrichHannot-UtilsBundle-Dca-AuthorFieldConfiguration.html @@ -156,6 +156,13 @@

                                           : bool

                                          +
                                          + +
                                          + $sorting + +  : bool +
                                          @@ -170,6 +177,13 @@

                                           : bool

                                          +
                                          + +
                                          + $flag + +  : null|int +
                                          @@ -191,6 +205,13 @@

                                           : string

                                          +
                                          + +
                                          + getFlag() + +  : int|null +
                                          @@ -215,21 +236,28 @@

                                          - isExclude() + isExclude() + +  : bool +
                                          +
                                          + +
                                          + isFilter()  : bool
                                          - isFilter() + isSearch()  : bool
                                          - isSearch() + isSorting()  : bool
                                          @@ -243,9 +271,9 @@

                                          - setExclude() + setExclude() -  : AuthorFieldConfiguration +  : DcaFieldConfiguration
                                          @@ -257,16 +285,30 @@

                                          - setFilter() + setFilter() -  : AuthorFieldConfiguration +  : DcaFieldConfiguration
                                          - setSearch() + setFlag() -  : AuthorFieldConfiguration +  : DcaFieldConfiguration +
                                          +
                                          + +
                                          + setSearch() + +  : DcaFieldConfiguration +
                                          +
                                          + +
                                          + setSorting() + +  : DcaFieldConfiguration
                                          @@ -312,7 +354,7 @@

                                          @@ -323,10 +365,8 @@

                                          $exclude = true -
                                          - -
                                          - + + @@ -346,7 +386,7 @@

                                          @@ -357,10 +397,8 @@

                                          $fieldNamePrefix = '' -
                                          - -
                                          - + + @@ -380,7 +418,7 @@

                                          @@ -391,10 +429,8 @@

                                          $filter = true -
                                          - -
                                          - + + @@ -414,7 +450,7 @@

                                          @@ -493,11 +557,41 @@

                                          $useDefaultLabel = true -
                                          + + + -
                                          + + @@ -554,7 +646,7 @@

                                          @@ -563,8 +655,7 @@

                                          public __construct(string $table) : mixed -
                                          - +

                                          Parameters
                                          @@ -572,8 +663,7 @@
                                          Parameters
                                          : string
                                          -
                                          - +
                                          @@ -598,7 +688,7 @@

                                          @@ -617,6 +707,39 @@

                                          Return values
                                          — + +
                                          +

                                          + getFlag() + +

                                          + + + + + public + getFlag() : int|null + +
                                          + + + + +
                                          Return values
                                          + int|null + — + +
                                          @@ -664,7 +787,7 @@

                                          @@ -697,7 +820,7 @@

                                          @@ -725,12 +848,12 @@

                                          Return values
                                          >

                                          isExclude() - +

                                          @@ -758,12 +881,12 @@
                                          Return values
                                          >

                                          isFilter() - +

                                          @@ -791,12 +914,12 @@
                                          Return values
                                          >

                                          isSearch() - +

                                          @@ -810,6 +933,39 @@

                                          +

                                          Return values
                                          + bool + — + + +
                                          +
                                          +

                                          + isSorting() + +

                                          + + + + + public + isSorting() : bool + +
                                          + + + +
                                          Return values
                                          bool — @@ -829,7 +985,7 @@

                                          @@ -857,19 +1013,19 @@

                                          Return values
                                          >

                                          setExclude() - +

                                          public - setExclude(bool $exclude) : AuthorFieldConfiguration + setExclude(bool $exclude) : DcaFieldConfiguration
                                          @@ -888,7 +1044,7 @@
                                          Parameters
                                          Return values
                                          - AuthorFieldConfiguration + DcaFieldConfiguration — @@ -906,7 +1062,7 @@

                                          @@ -945,19 +1101,19 @@

                                          Return values
                                          >

                                          setFilter() - +

                                          public - setFilter(bool $filter) : AuthorFieldConfiguration + setFilter(bool $filter) : DcaFieldConfiguration
                                          @@ -976,7 +1132,51 @@
                                          Parameters
                                          Return values
                                          - AuthorFieldConfiguration + DcaFieldConfiguration + — + + +
                                          +
                                          +

                                          + setFlag() + +

                                          + + + + + public + setFlag(int|null $flag) : DcaFieldConfiguration + +
                                          + +
                                          Parameters
                                          +
                                          +
                                          + $flag + : int|null +
                                          +
                                          +
                                          + +
                                          +
                                          + + + +
                                          Return values
                                          + DcaFieldConfiguration — @@ -989,19 +1189,19 @@
                                          Return values
                                          >

                                          setSearch() - +

                                          public - setSearch(bool $search) : AuthorFieldConfiguration + setSearch(bool $search) : DcaFieldConfiguration
                                          @@ -1020,7 +1220,51 @@
                                          Parameters
                                          Return values
                                          - AuthorFieldConfiguration + DcaFieldConfiguration + — + + +
                                          +
                                          +

                                          + setSorting() + +

                                          + + + + + public + setSorting(bool $sorting) : DcaFieldConfiguration + +
                                          + +
                                          Parameters
                                          +
                                          +
                                          + $sorting + : bool +
                                          +
                                          +
                                          + +
                                          +
                                          + + + +
                                          Return values
                                          + DcaFieldConfiguration — @@ -1038,7 +1282,7 @@

                                          @@ -1082,7 +1326,7 @@

                                          diff --git a/classes/HeimrichHannot-UtilsBundle-Dca-DateAddedField.html b/classes/HeimrichHannot-UtilsBundle-Dca-DateAddedField.html index d7b86f78..af3c6785 100644 --- a/classes/HeimrichHannot-UtilsBundle-Dca-DateAddedField.html +++ b/classes/HeimrichHannot-UtilsBundle-Dca-DateAddedField.html @@ -133,7 +133,7 @@

                                          $tables -  : array<string|int, mixed> +  : mixed
                                          @@ -152,7 +152,7 @@

                                          Register a dca to have an author field and update logic added.
                                          - createOptionObject() + createOptionObject()  : DcaFieldConfiguration
                                          @@ -207,7 +207,7 @@

                                          private - static array<string|int, mixed> + static mixed $tables = [] @@ -309,12 +309,12 @@

                                          Return values
                                          >

                                          createOptionObject() - +

                                          diff --git a/classes/HeimrichHannot-UtilsBundle-Dca-DcaFieldConfiguration.html b/classes/HeimrichHannot-UtilsBundle-Dca-DcaFieldConfiguration.html index dd286a09..ab11db5f 100644 --- a/classes/HeimrichHannot-UtilsBundle-Dca-DcaFieldConfiguration.html +++ b/classes/HeimrichHannot-UtilsBundle-Dca-DcaFieldConfiguration.html @@ -127,7 +127,42 @@

                                          -
                                          +
                                          + $exclude + +  : bool +
                                          +
                                          + +
                                          + $filter + +  : bool +
                                          +
                                          + +
                                          + $search + +  : bool +
                                          +
                                          + +
                                          + $sorting + +  : bool +
                                          +
                                          + +
                                          + $flag + +  : null|int +
                                          +
                                          + +
                                          $table  : string @@ -139,6 +174,13 @@

                                           : mixed

                                          +
                                          + +
                                          + getFlag() + +  : int|null +
                                          @@ -146,6 +188,69 @@

                                           : string

                                          +
                                          + +
                                          + isExclude() + +  : bool +
                                          +
                                          + +
                                          + isFilter() + +  : bool +
                                          +
                                          + +
                                          + isSearch() + +  : bool +
                                          +
                                          + +
                                          + isSorting() + +  : bool +
                                          +
                                          + +
                                          + setExclude() + +  : DcaFieldConfiguration +
                                          +
                                          + +
                                          + setFilter() + +  : DcaFieldConfiguration +
                                          +
                                          + +
                                          + setFlag() + +  : DcaFieldConfiguration +
                                          +
                                          + +
                                          + setSearch() + +  : DcaFieldConfiguration +
                                          +
                                          + +
                                          + setSorting() + +  : DcaFieldConfiguration +
                                          @@ -161,6 +266,166 @@

                                          + + + + + @@ -214,7 +477,7 @@

                                          @@ -223,8 +486,7 @@

                                          public __construct(string $table) : mixed -
                                          - +

                                          Parameters
                                          @@ -232,8 +494,7 @@
                                          Parameters
                                          : string
                                          -
                                          - +
                                          @@ -244,6 +505,39 @@
                                          Return values
                                          — +
                                          +
                                          +

                                          + getFlag() + +

                                          + + + + + public + getFlag() : int|null + +
                                          + + + + +
                                          Return values
                                          + int|null + — + +
                                          +
                                          +

                                          + isExclude() + +

                                          + + + + + public + isExclude() : bool + +
                                          + + + + +
                                          Return values
                                          + bool + — + + +
                                          +
                                          +

                                          + isFilter() + +

                                          + + + + + public + isFilter() : bool + +
                                          + + + + +
                                          Return values
                                          + bool + — + + +
                                          +
                                          +

                                          + isSearch() + +

                                          + + + + + public + isSearch() : bool + +
                                          + + + + +
                                          Return values
                                          + bool + — + + +
                                          +
                                          +

                                          + isSorting() + +

                                          + + + + + public + isSorting() : bool + +
                                          + + + + +
                                          Return values
                                          + bool + — + + +
                                          + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-Dca-DcaUtil.html b/classes/HeimrichHannot-UtilsBundle-Dca-DcaUtil.html new file mode 100644 index 00000000..17da1fb6 --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-Dca-DcaUtil.html @@ -0,0 +1,3570 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                          +

                                          Contao Utils Bundle

                                          + + + + + +
                                          + +
                                          +
                                          + + + + +
                                          + + +
                                          +

                                          + DcaUtil + + +
                                          + in package + +
                                          + + +

                                          + + + + +
                                          + + + + + + + + +

                                          + Table of Contents + +

                                          + +
                                          +
                                          + AUTHOR_TYPE_MEMBER + +  = 'member' +
                                          +
                                          + +
                                          + AUTHOR_TYPE_NONE + +  = 'none' +
                                          +
                                          + +
                                          + AUTHOR_TYPE_SESSION + +  = 'session' +
                                          +
                                          + +
                                          + AUTHOR_TYPE_USER + +  = 'user' +
                                          +
                                          + +
                                          + PROPERTY_AUTHOR + +  = 'author' +
                                          +
                                          + +
                                          + PROPERTY_AUTHOR_TYPE + +  = 'authorType' +
                                          +
                                          + +
                                          + PROPERTY_SESSION_ID + +  = 'sessionID' +
                                          +
                                          + +
                                          + $container + +  : ContainerInterface +
                                          +
                                          + +
                                          + $framework + +  : ContaoFrameworkInterface +
                                          +
                                          + +
                                          + $connection + +  : Connection +
                                          +
                                          + +
                                          + $routingUtil + +  : RoutingUtil +
                                          +
                                          + +
                                          + __construct() + +  : mixed +
                                          +
                                          + +
                                          + activateNotificationType() + +  : mixed +
                                          +
                                          + +
                                          + addAliasToDca() + +  : mixed +
                                          +
                                          Adds an alias field to the dca and to the desired palettes.
                                          + +
                                          + addAuthorFieldAndCallback() + +  : mixed +
                                          +
                                          + +
                                          + addOverridableFields() + +  : mixed +
                                          +
                                          Adds an override selector to every field in $fields to the dca associated with $destinationTable.
                                          + +
                                          + aliasExist() + +  : bool +
                                          +
                                          Return if the current alias already exist in table.
                                          + +
                                          + doGenerateDcOperationsButtons() + +  : mixed +
                                          +
                                          + +
                                          + flattenPaletteForSubEntities() + +  : mixed +
                                          +
                                          This function transforms an entity's palette (that can also contain sub palettes and concatenated type selectors) to a flatten +palette where every field can be overridden.
                                          + +
                                          + generateAlias() + +  : string +
                                          +
                                          Generate an alias with unique check.
                                          + +
                                          + generateDcOperationsButtons() + +  : mixed +
                                          +
                                          + +
                                          + generateSitemap() + +  : mixed +
                                          +
                                          + +
                                          + getArchiveModalEditLink() + +  : string +
                                          +
                                          Get a contao backend modal archive edit link.
                                          + +
                                          + getAuthorNameByUserId() + +  : mixed +
                                          +
                                          + +
                                          + getAuthorNameLinkByUserId() + +  : mixed +
                                          +
                                          + +
                                          + getConfigByArrayOrCallbackOrFunction() + +  : mixed|null +
                                          +
                                          Retrieves an array from a dca config (in most cases eval) in the following priorities:.
                                          + +
                                          + getCurrentPaletteName() + +  : string|null +
                                          +
                                          Taken from \Contao\DataContainer.
                                          + +
                                          + getDataContainers() + +  : array<string|int, mixed> +
                                          +
                                          Returns (nearly) all registered datacontainers as array.
                                          + +
                                          + getDCTable() + +  : DC_Table_Utils +
                                          +
                                          Mostly used for Form::prepareSpecialValueForOutput().
                                          + +
                                          + getEditLink() + +  : string +
                                          +
                                          Get a contao backend modal edit link.
                                          + +
                                          + getFieldLabel() + +  : mixed +
                                          +
                                          + +
                                          + getFields() + +  : array<string|int, mixed> +
                                          +
                                          Returns a list of fields as an option array for dca fields.
                                          + +
                                          + getLocalizedFieldName() + +  : mixed +
                                          +
                                          + +
                                          + getModalEditLink() + +  : string +
                                          +
                                          Get a contao backend modal edit link.
                                          + +
                                          + getNewNotificationTypeArray() + +  : array<string|int, mixed> +
                                          +
                                          + +
                                          + getNewSortingPosition() + +  : array<string|int, mixed> +
                                          +
                                          Returns the set of pid and sorting to be used in an sql update statement. Also updates the existing records according to the usage.
                                          + +
                                          + getOverridableProperty() + +  : mixed +
                                          +
                                          Retrieves a property of given contao model instances by *ascending* priority, i.e. the last instance of $instances +will have the highest priority.
                                          + +
                                          + getPopupWizardLink() + +  : string +
                                          +
                                          Get a contao backend popup link.
                                          + +
                                          + getRenderedDiff() + +  : mixed +
                                          +
                                          + +
                                          + getSubPaletteFieldSelector() + +  : string +
                                          +
                                          Returns the selector of the sub palette a field is placed in. Currently doesn't support fields in multiple sub palettes.
                                          + +
                                          + getTranslatedModuleNameByTable() + +  : mixed +
                                          +
                                          + +
                                          + isDcMultilingual() + +  : mixed +
                                          +
                                          + +
                                          + isDcMultilingual3() + +  : mixed +
                                          +
                                          + +
                                          + isSubPaletteField() + +  : bool +
                                          +
                                          Returns true if the field is in at least one sub palette.
                                          + +
                                          + loadDc() + +  : mixed +
                                          +
                                          Load a data container in a testable way.
                                          + +
                                          + loadLanguageFile() + +  : mixed +
                                          +
                                          Load a language file in a testable way.
                                          + +
                                          + modifyAuthorPaletteOnLoad() + +  : mixed +
                                          +
                                          + +
                                          + prepareRowEntryForList() + +  : mixed +
                                          +
                                          + +
                                          + setAuthorIDOnCreate() + +  : mixed +
                                          +
                                          + +
                                          + setDateAdded() + +  : mixed +
                                          +
                                          Sets the current date as the date added -> usually used on submit.
                                          + +
                                          + setDateAddedOnCopy() + +  : mixed +
                                          +
                                          Sets the current date as the date added -> usually used on copy.
                                          + +
                                          + setDefaultsFromDca() + +  : mixed +
                                          +
                                          Set initial $varData from dca.
                                          + +
                                          + setFieldsToReadOnly() + +  : mixed +
                                          +
                                          + +
                                          + combiner() + +  : mixed +
                                          +
                                          Taken from \Contao\DataContainer.
                                          + +
                                          + + + + +
                                          +

                                          + Constants + +

                                          +
                                          +

                                          + AUTHOR_TYPE_MEMBER + +

                                          + + + + + + public + mixed + AUTHOR_TYPE_MEMBER + = 'member' + + + +
                                          + +
                                          + + + +
                                          +
                                          +

                                          + AUTHOR_TYPE_NONE + +

                                          + + + + + + public + mixed + AUTHOR_TYPE_NONE + = 'none' + + + +
                                          + +
                                          + + + +
                                          +
                                          +

                                          + AUTHOR_TYPE_SESSION + +

                                          + + + + + + public + mixed + AUTHOR_TYPE_SESSION + = 'session' + + + +
                                          + +
                                          + + + +
                                          +
                                          +

                                          + AUTHOR_TYPE_USER + +

                                          + + + + + + public + mixed + AUTHOR_TYPE_USER + = 'user' + + + +
                                          + +
                                          + + + +
                                          +
                                          +

                                          + PROPERTY_AUTHOR + +

                                          + + + + + + public + mixed + PROPERTY_AUTHOR + = 'author' + + + +
                                          + +
                                          + + + +
                                          +
                                          +

                                          + PROPERTY_AUTHOR_TYPE + +

                                          + + + + + + public + mixed + PROPERTY_AUTHOR_TYPE + = 'authorType' + + + +
                                          + +
                                          + + + +
                                          +
                                          +

                                          + PROPERTY_SESSION_ID + +

                                          + + + + + + public + mixed + PROPERTY_SESSION_ID + = 'sessionID' + + + +
                                          + +
                                          + + + +
                                          +
                                          + + +
                                          +

                                          + Properties + +

                                          +
                                          +

                                          + $container + + + +

                                          + + + + + protected + ContainerInterface + $container + + + + + + +
                                          +
                                          +

                                          + $framework + + + +

                                          + + + + + protected + ContaoFrameworkInterface + $framework + + + + + + +
                                          +
                                          +

                                          + $connection + + + +

                                          + + + + + private + Connection + $connection + + + + + + +
                                          +
                                          +

                                          + $routingUtil + + + +

                                          + + + + + private + RoutingUtil + $routingUtil + + + + + + +
                                          +
                                          + +
                                          +

                                          + Methods + +

                                          +
                                          +

                                          + __construct() + +

                                          + + + + + public + __construct(ContainerInterface $container, ContaoFrameworkInterface $framework, RoutingUtil $routingUtil, Connection $connection) : mixed + +
                                          + +
                                          Parameters
                                          +
                                          +
                                          + $container + : ContainerInterface +
                                          +
                                          +
                                          + +
                                          +
                                          + $framework + : ContaoFrameworkInterface +
                                          +
                                          +
                                          + +
                                          +
                                          + $routingUtil + : RoutingUtil +
                                          +
                                          +
                                          + +
                                          +
                                          + $connection + : Connection +
                                          +
                                          +
                                          + +
                                          +
                                          + + + +
                                          Return values
                                          + mixed + — + + +
                                          +
                                          +

                                          + activateNotificationType() + +

                                          + + + + + public + activateNotificationType(mixed $strGroup, mixed $strType, mixed $arrType) : mixed + +
                                          + +
                                          Parameters
                                          +
                                          +
                                          + $strGroup + : mixed +
                                          +
                                          +
                                          + +
                                          +
                                          + $strType + : mixed +
                                          +
                                          +
                                          + +
                                          +
                                          + $arrType + : mixed +
                                          +
                                          +
                                          + +
                                          +
                                          + + + +
                                          Return values
                                          + mixed + — + + +
                                          +
                                          +

                                          + addAliasToDca() + +

                                          + + +

                                          Adds an alias field to the dca and to the desired palettes.

                                          + + + public + addAliasToDca( $dca,  $generateAliasCallback,  $paletteField[, array<string|int, mixed> $palettes = ['default'] ]) : mixed + + +
                                          Parameters
                                          +
                                          +
                                          + $dca + : +
                                          +
                                          + +
                                          +
                                          + $generateAliasCallback + : +
                                          +
                                          +

                                          mixed The callback to call for generating the alias

                                          +
                                          + +
                                          +
                                          + $paletteField + : +
                                          +
                                          +

                                          String The field after which to insert the alias field in the palettes

                                          +
                                          + +
                                          +
                                          + $palettes + : array<string|int, mixed> + = ['default']
                                          +
                                          +

                                          The palettes in which to insert the field

                                          +
                                          + +
                                          +
                                          + + + +
                                          Return values
                                          + mixed + — + + +
                                          +
                                          +

                                          + addAuthorFieldAndCallback() + +

                                          + + + + + public + addAuthorFieldAndCallback(string $table[, string $fieldPrefix = '' ]) : mixed + + +
                                          Parameters
                                          +
                                          +
                                          + $table + : string +
                                          +
                                          +
                                          + +
                                          +
                                          + $fieldPrefix + : string + = ''
                                          +
                                          +
                                          + +
                                          +
                                          + + +
                                          + Tags + +
                                          +
                                          +
                                          + deprecated +
                                          +
                                          + +

                                          Use AuthorField::register() instead

                                          +
                                          + +
                                          +
                                          + +
                                          Return values
                                          + mixed + — + + +
                                          +
                                          +

                                          + addOverridableFields() + +

                                          + + +

                                          Adds an override selector to every field in $fields to the dca associated with $destinationTable.

                                          + + + public + addOverridableFields(array<string|int, mixed> $fields, string $sourceTable, string $destinationTable[, array<string|int, mixed> $options = [] ]) : mixed + + +
                                          Parameters
                                          +
                                          +
                                          + $fields + : array<string|int, mixed> +
                                          +
                                          +
                                          + +
                                          +
                                          + $sourceTable + : string +
                                          +
                                          +
                                          + +
                                          +
                                          + $destinationTable + : string +
                                          +
                                          +
                                          + +
                                          +
                                          + $options + : array<string|int, mixed> + = []
                                          +
                                          +
                                          + +
                                          +
                                          + + + +
                                          Return values
                                          + mixed + — + + +
                                          +
                                          +

                                          + aliasExist() + +

                                          + + +

                                          Return if the current alias already exist in table.

                                          + + + public + aliasExist(string $alias, int $id, string $table[, mixed $options = [] ]) : bool + + +
                                          Parameters
                                          +
                                          +
                                          + $alias + : string +
                                          +
                                          +
                                          + +
                                          +
                                          + $id + : int +
                                          +
                                          +
                                          + +
                                          +
                                          + $table + : string +
                                          +
                                          +
                                          + +
                                          +
                                          + $options + : mixed + = []
                                          +
                                          +
                                          + +
                                          +
                                          + + +
                                          + Tags + +
                                          +
                                          +
                                          + throws +
                                          +
                                          + DBALException + + +
                                          +
                                          + +
                                          Return values
                                          + bool + — + + +
                                          +
                                          +

                                          + doGenerateDcOperationsButtons() + +

                                          + + + + + public + doGenerateDcOperationsButtons(mixed $arrRow, mixed $strTable[, mixed $arrRootIds = [] ][, mixed $blnCircularReference = false ][, mixed $arrChildRecordIds = null ][, mixed $options = [] ]) : mixed + +
                                          + +
                                          Parameters
                                          +
                                          +
                                          + $arrRow + : mixed +
                                          +
                                          +
                                          + +
                                          +
                                          + $strTable + : mixed +
                                          +
                                          +
                                          + +
                                          +
                                          + $arrRootIds + : mixed + = []
                                          +
                                          +
                                          + +
                                          +
                                          + $blnCircularReference + : mixed + = false
                                          +
                                          +
                                          + +
                                          +
                                          + $arrChildRecordIds + : mixed + = null
                                          +
                                          +
                                          + +
                                          +
                                          + $options + : mixed + = []
                                          +
                                          +
                                          + +
                                          +
                                          + + + +
                                          Return values
                                          + mixed + — + + +
                                          +
                                          +

                                          + flattenPaletteForSubEntities() + +

                                          + + +

                                          This function transforms an entity's palette (that can also contain sub palettes and concatenated type selectors) to a flatten +palette where every field can be overridden.

                                          + + + public + flattenPaletteForSubEntities(string $table, array<string|int, mixed> $overridableFields) : mixed + +

                                          CAUTION: This function assumes that you have used addOverridableFields() for adding the fields that are overridable. The latter ones +are $overridableFields

                                          +

                                          This function is useful if you want to adjust a palette for sub entities that can override properties of their ancestor(s). +Use $this->getOverridableProperty() for computing the correct value respecting the entity hierarchy.

                                          +
                                          + +
                                          Parameters
                                          +
                                          +
                                          + $table + : string +
                                          +
                                          +
                                          + +
                                          +
                                          + $overridableFields + : array<string|int, mixed> +
                                          +
                                          +
                                          + +
                                          +
                                          + + + +
                                          Return values
                                          + mixed + — + + +
                                          +
                                          +

                                          + generateAlias() + +

                                          + + +

                                          Generate an alias with unique check.

                                          + + + public + generateAlias(mixed $alias, int $id, string|null $table, string $title[, bool $keepUmlauts = true ][, mixed $options = [] ]) : string + + +
                                          Parameters
                                          +
                                          +
                                          + $alias + : mixed +
                                          +
                                          +

                                          The current alias (if available)

                                          +
                                          + +
                                          +
                                          + $id + : int +
                                          +
                                          +

                                          The entity's id

                                          +
                                          + +
                                          +
                                          + $table + : string|null +
                                          +
                                          +

                                          The entity's table (pass a comma separated list if the validation should be expanded to multiple tables like tl_news AND tl_member. ATTENTION: the first table needs to be the one we're currently in). Pass null to skip unqiue check.

                                          +
                                          + +
                                          +
                                          + $title + : string +
                                          +
                                          +

                                          The value to use as a base for the alias

                                          +
                                          + +
                                          +
                                          + $keepUmlauts + : bool + = true
                                          +
                                          +

                                          Set to true if German umlauts should be kept

                                          +
                                          + +
                                          +
                                          + $options + : mixed + = []
                                          +
                                          +
                                          + +
                                          +
                                          + + +
                                          + Tags + +
                                          +
                                          +
                                          + throws +
                                          +
                                          + Exception + + +
                                          +
                                          + +
                                          Return values
                                          + string + — + + +
                                          +
                                          +

                                          + generateDcOperationsButtons() + +

                                          + + + + + public + generateDcOperationsButtons(mixed $row, mixed $table[, mixed $rootIds = [] ][, mixed $options = [] ]) : mixed + +
                                          + +
                                          Parameters
                                          +
                                          +
                                          + $row + : mixed +
                                          +
                                          +
                                          + +
                                          +
                                          + $table + : mixed +
                                          +
                                          +
                                          + +
                                          +
                                          + $rootIds + : mixed + = []
                                          +
                                          +
                                          + +
                                          +
                                          + $options + : mixed + = []
                                          +
                                          +
                                          + +
                                          +
                                          + + + +
                                          Return values
                                          + mixed + — + + +
                                          +
                                          +

                                          + generateSitemap() + +

                                          + + + + + public + generateSitemap() : mixed + +
                                          + + + + +
                                          Return values
                                          + mixed + — + + +
                                          +
                                          + + + +

                                          Get a contao backend modal archive edit link.

                                          + + + public + getArchiveModalEditLink(string $module, int $id, string $table[, string|null $label = null ][, int $width = 1024 ]) : string + + +
                                          Parameters
                                          +
                                          +
                                          + $module + : string +
                                          +
                                          +

                                          Name of the module

                                          +
                                          + +
                                          +
                                          + $id + : int +
                                          +
                                          +

                                          Id of the entity

                                          +
                                          + +
                                          +
                                          + $table + : string +
                                          +
                                          +

                                          The dataContainer table

                                          +
                                          + +
                                          +
                                          + $label + : string|null + = null
                                          +
                                          +

                                          The label text

                                          +
                                          + +
                                          +
                                          + $width + : int + = 1024
                                          +
                                          +

                                          The modal window width

                                          +
                                          + +
                                          +
                                          + + +
                                          + Tags + +
                                          +
                                          +
                                          + deprecated +
                                          +
                                          + +

                                          Use DcaUtil::getPopupWizardLink() instead

                                          +
                                          + +
                                          +
                                          + +
                                          Return values
                                          + string + — +

                                          The modal archive edit link

                                          +
                                          + + +
                                          +
                                          +

                                          + getAuthorNameByUserId() + +

                                          + + + + + public + getAuthorNameByUserId(mixed $id) : mixed + +
                                          + +
                                          Parameters
                                          +
                                          +
                                          + $id + : mixed +
                                          +
                                          +
                                          + +
                                          +
                                          + + + +
                                          Return values
                                          + mixed + — + + +
                                          +
                                          +

                                          + getAuthorNameLinkByUserId() + +

                                          + + + + + public + getAuthorNameLinkByUserId(mixed $id) : mixed + +
                                          + +
                                          Parameters
                                          +
                                          +
                                          + $id + : mixed +
                                          +
                                          +
                                          + +
                                          +
                                          + + + +
                                          Return values
                                          + mixed + — + + +
                                          +
                                          +

                                          + getConfigByArrayOrCallbackOrFunction() + +

                                          + + +

                                          Retrieves an array from a dca config (in most cases eval) in the following priorities:.

                                          + + + public + getConfigByArrayOrCallbackOrFunction(array<string|int, mixed> $array,  $property[, array<string|int, mixed> $arguments = [] ]) : mixed|null + +
                                            +
                                          1. The value associated to $array[$property]
                                          2. +
                                          3. The value retrieved by $array[$property . '_callback'] which is a callback array like ['Class', 'method'] or ['service.id', 'method']
                                          4. +
                                          5. The value retrieved by $array[$property . '_callback'] which is a function closure array like ['Class', 'method']
                                          6. +
                                          +
                                          + +
                                          Parameters
                                          +
                                          +
                                          + $array + : array<string|int, mixed> +
                                          +
                                          +
                                          + +
                                          +
                                          + $property + : +
                                          +
                                          + +
                                          +
                                          + $arguments + : array<string|int, mixed> + = []
                                          +
                                          +
                                          + +
                                          +
                                          + + + +
                                          Return values
                                          + mixed|null + — +

                                          The value retrieved in the way mentioned above or null

                                          +
                                          + + +
                                          +
                                          +

                                          + getCurrentPaletteName() + +

                                          + + +

                                          Taken from \Contao\DataContainer.

                                          + + + public + getCurrentPaletteName(string $table, int $id) : string|null + + +
                                          Parameters
                                          +
                                          +
                                          + $table + : string +
                                          +
                                          +
                                          + +
                                          +
                                          + $id + : int +
                                          +
                                          +
                                          + +
                                          +
                                          + + + +
                                          Return values
                                          + string|null + — + + +
                                          +
                                          +

                                          + getDataContainers() + +

                                          + + +

                                          Returns (nearly) all registered datacontainers as array.

                                          + + + public + getDataContainers([array<string|int, mixed> $options = [] ]) : array<string|int, mixed> + +

                                          Options:

                                          +
                                            +
                                          • bool onlyTableType: Return only table data containers
                                          • +
                                          +
                                          + +
                                          Parameters
                                          +
                                          +
                                          + $options + : array<string|int, mixed> + = []
                                          +
                                          +
                                          + +
                                          +
                                          + + + +
                                          Return values
                                          + array<string|int, mixed> + — + + +
                                          +
                                          +

                                          + getDCTable() + +

                                          + + +

                                          Mostly used for Form::prepareSpecialValueForOutput().

                                          + + + public + getDCTable(string $table,  $activeRecord) : DC_Table_Utils + + +
                                          Parameters
                                          +
                                          +
                                          + $table + : string +
                                          +
                                          +
                                          + +
                                          +
                                          + $activeRecord + : +
                                          +
                                          + +
                                          +
                                          + + + +
                                          Return values
                                          + DC_Table_Utils + — + + +
                                          +
                                          + + + +

                                          Get a contao backend modal edit link.

                                          + + + public + getEditLink(string $module, int $id[, string|null $label = null ]) : string + + +
                                          Parameters
                                          +
                                          +
                                          + $module + : string +
                                          +
                                          +

                                          Name of the module

                                          +
                                          + +
                                          +
                                          + $id + : int +
                                          +
                                          +

                                          Id of the entity

                                          +
                                          + +
                                          +
                                          + $label + : string|null + = null
                                          +
                                          +

                                          The label text

                                          +
                                          + +
                                          +
                                          + + + +
                                          Return values
                                          + string + — +

                                          The edit link

                                          +
                                          + + +
                                          +
                                          +

                                          + getFieldLabel() + +

                                          + + + + + public + getFieldLabel(string $table, string $field) : mixed + +
                                          + +
                                          Parameters
                                          +
                                          +
                                          + $table + : string +
                                          +
                                          +
                                          + +
                                          +
                                          + $field + : string +
                                          +
                                          +
                                          + +
                                          +
                                          + + + +
                                          Return values
                                          + mixed + — + + +
                                          +
                                          +

                                          + getFields() + +

                                          + + +

                                          Returns a list of fields as an option array for dca fields.

                                          + + + public + getFields(string $table[, array<string|int, mixed> $options = [] ]) : array<string|int, mixed> + +

                                          Possible options:

                                          +
                                            +
                                          • array inputTypes Restrict to certain input types
                                          • +
                                          • array evalConditions restrict to certain dca eval
                                          • +
                                          • bool localizeLabels
                                          • +
                                          • bool skipSorting
                                          • +
                                          +
                                          + +
                                          Parameters
                                          +
                                          +
                                          + $table + : string +
                                          +
                                          +
                                          + +
                                          +
                                          + $options + : array<string|int, mixed> + = []
                                          +
                                          +
                                          + +
                                          +
                                          + + +
                                          + Tags + +
                                          +
                                          +
                                          + deprecated +
                                          +
                                          + +

                                          Use Utils service instead

                                          +
                                          + +
                                          +
                                          + codeCoverageIgnore +
                                          +
                                          + + +
                                          +
                                          + +
                                          Return values
                                          + array<string|int, mixed> + — + + +
                                          +
                                          +

                                          + getLocalizedFieldName() + +

                                          + + + + + public + getLocalizedFieldName( $strField,  $strTable) : mixed + + +
                                          Parameters
                                          +
                                          +
                                          + $strField + : +
                                          +
                                          + +
                                          +
                                          + $strTable + : +
                                          +
                                          + +
                                          +
                                          + + + +
                                          Return values
                                          + mixed + — + + +
                                          +
                                          + + + +

                                          Get a contao backend modal edit link.

                                          + + + public + getModalEditLink(string $module, int $id[, string|null $label = null ][, string $table = '' ][, int $width = 1024 ]) : string + + +
                                          Parameters
                                          +
                                          +
                                          + $module + : string +
                                          +
                                          +

                                          Name of the module

                                          +
                                          + +
                                          +
                                          + $id + : int +
                                          +
                                          +

                                          Id of the entity

                                          +
                                          + +
                                          +
                                          + $label + : string|null + = null
                                          +
                                          +

                                          The label text

                                          +
                                          + +
                                          +
                                          + $table + : string + = ''
                                          +
                                          +

                                          The dataContainer table

                                          +
                                          + +
                                          +
                                          + $width + : int + = 1024
                                          +
                                          +

                                          The modal window width

                                          +
                                          + +
                                          +
                                          + + +
                                          + Tags + +
                                          +
                                          +
                                          + deprecated +
                                          +
                                          + +

                                          Use DcaUtil::getPopupWizardLink() instead

                                          +
                                          + +
                                          +
                                          + +
                                          Return values
                                          + string + — +

                                          The modal edit link

                                          +
                                          + + +
                                          +
                                          +

                                          + getNewNotificationTypeArray() + +

                                          + + + + + public + getNewNotificationTypeArray([bool $includeNotificationCenterPlusTokens = false ]) : array<string|int, mixed> + + +
                                          Parameters
                                          +
                                          +
                                          + $includeNotificationCenterPlusTokens + : bool + = false
                                          +
                                          + +
                                          +
                                          + + + +
                                          Return values
                                          + array<string|int, mixed> + — + + +
                                          +
                                          +

                                          + getNewSortingPosition() + +

                                          + + +

                                          Returns the set of pid and sorting to be used in an sql update statement. Also updates the existing records according to the usage.

                                          + + + public + getNewSortingPosition(string $table, int $id[, mixed $pid = null ][, mixed $insertAfterId = null ]) : array<string|int, mixed> + +

                                          The method can be used in several ways:

                                          +
                                            +
                                          • Insert in an archive of a certain pid as first item: $pid must be set (0 is also ok), $insertAfterId needs to be null
                                          • +
                                          • Insert after a record of a certain id: $insertAfterId must be set, $pid can be set if necessary
                                          • +
                                          +
                                          + +
                                          Parameters
                                          +
                                          +
                                          + $table + : string +
                                          +
                                          +
                                          + +
                                          +
                                          + $id + : int +
                                          +
                                          +
                                          + +
                                          +
                                          + $pid + : mixed + = null
                                          +
                                          +
                                          + +
                                          +
                                          + $insertAfterId + : mixed + = null
                                          +
                                          +
                                          + +
                                          +
                                          + + +
                                          + Tags + +
                                          +
                                          +
                                          + example +
                                          +
                                          + +

                                          // insert a new record after another one with the ID 82

                                          +

                                          $news = new \Contao\NewsModel(); +$news->pid = 3; +$news->tstamp = time(); +$news->title = 'Something'; +$news->save(); +$set = System::getContainer()->get('huh.utils.dca')->getNewSortingPosition( +'tl_news', $news->id, 3, 82 +);

                                          +

                                          // store the returned set to the news record created above as usual

                                          +

                                          Hint: Mostly taken from DC_Table::getNewPosition(). Removed: handling if only a pid field is present, mode handling (since we don't have it in this context).

                                          +
                                          + +
                                          +
                                          + +
                                          Return values
                                          + array<string|int, mixed> + — + + +
                                          +
                                          +

                                          + getOverridableProperty() + +

                                          + + +

                                          Retrieves a property of given contao model instances by *ascending* priority, i.e. the last instance of $instances +will have the highest priority.

                                          + + + public + getOverridableProperty(string $property, array<string|int, mixed> $instances) : mixed + +

                                          CAUTION: This function assumes that you have used addOverridableFields() in this class!! That means, that a value in a +model instance is only used if it's either the first instance in $arrInstances or "overrideFieldname" is set to true +in the instance.

                                          +
                                          + +
                                          Parameters
                                          +
                                          +
                                          + $property + : string +
                                          +
                                          +

                                          The property name to retrieve

                                          +
                                          + +
                                          +
                                          + $instances + : array<string|int, mixed> +
                                          +
                                          +

                                          An array of instances in ascending priority. Instances can be passed in the following form: +['tl_some_table', $instanceId] or $objInstance

                                          +
                                          + +
                                          +
                                          + + + +
                                          Return values
                                          + mixed + — + + +
                                          +
                                          + + + +

                                          Get a contao backend popup link.

                                          + + + public + getPopupWizardLink(array<string|int, mixed> $parameter[, array<string|int, mixed> $options = [] ]) : string + +

                                          Options:

                                          +
                                            +
                                          • attributes: (array) Link attributes as key value pairs. Will override title and style option. href and onclick are not allowed and will be removed from list.
                                          • +
                                          • title: (string) Overrride default link title
                                          • +
                                          • style: (string) Override default css style properties
                                          • +
                                          • onclick: (string) Override default onclick javascript code
                                          • +
                                          • icon: (string) Link icon to show as link text. Overrides default icon.
                                          • +
                                          • linkText: (string) A linkTitle to show as link text. Will be displayed after the link icon. Default empty.
                                          • +
                                          • url-only: (boolean) Return only url instead of a complete link element
                                          • +
                                          +
                                          + +
                                          Parameters
                                          +
                                          +
                                          + $parameter + : array<string|int, mixed> +
                                          +
                                          +

                                          An array of parameter. Using string is deprecated and will be removed in a future version.

                                          +
                                          + +
                                          +
                                          + $options + : array<string|int, mixed> + = []
                                          +
                                          +
                                          + +
                                          +
                                          + + + +
                                          Return values
                                          + string + — + + +
                                          +
                                          +

                                          + getRenderedDiff() + +

                                          + + + + + public + getRenderedDiff(string $table, array<string|int, mixed> $source, array<string|int, mixed> $target[, array<string|int, mixed> $config = [] ]) : mixed + +
                                          + +
                                          Parameters
                                          +
                                          +
                                          + $table + : string +
                                          +
                                          +
                                          + +
                                          +
                                          + $source + : array<string|int, mixed> +
                                          +
                                          +
                                          + +
                                          +
                                          + $target + : array<string|int, mixed> +
                                          +
                                          +
                                          + +
                                          +
                                          + $config + : array<string|int, mixed> + = []
                                          +
                                          +
                                          + +
                                          +
                                          + + + +
                                          Return values
                                          + mixed + — + + +
                                          +
                                          +

                                          + getSubPaletteFieldSelector() + +

                                          + + +

                                          Returns the selector of the sub palette a field is placed in. Currently doesn't support fields in multiple sub palettes.

                                          + + + public + getSubPaletteFieldSelector(string $field, string $table) : string + + +
                                          Parameters
                                          +
                                          +
                                          + $field + : string +
                                          +
                                          +
                                          + +
                                          +
                                          + $table + : string +
                                          +
                                          +
                                          + +
                                          +
                                          + + + +
                                          Return values
                                          + string + — + + +
                                          +
                                          +

                                          + getTranslatedModuleNameByTable() + +

                                          + + + + + public + getTranslatedModuleNameByTable(string $table) : mixed + +
                                          + +
                                          Parameters
                                          +
                                          +
                                          + $table + : string +
                                          +
                                          +
                                          + +
                                          +
                                          + + + +
                                          Return values
                                          + mixed + — + + +
                                          +
                                          +

                                          + isDcMultilingual() + +

                                          + + + + + public + isDcMultilingual(string $table) : mixed + +
                                          + +
                                          Parameters
                                          +
                                          +
                                          + $table + : string +
                                          +
                                          +
                                          + +
                                          +
                                          + + + +
                                          Return values
                                          + mixed + — + + +
                                          +
                                          +

                                          + isDcMultilingual3() + +

                                          + + + + + public + isDcMultilingual3() : mixed + +
                                          + + + + +
                                          Return values
                                          + mixed + — + + +
                                          +
                                          +

                                          + isSubPaletteField() + +

                                          + + +

                                          Returns true if the field is in at least one sub palette.

                                          + + + public + isSubPaletteField(string $field, string $table) : bool + + +
                                          Parameters
                                          +
                                          +
                                          + $field + : string +
                                          +
                                          +
                                          + +
                                          +
                                          + $table + : string +
                                          +
                                          +
                                          + +
                                          +
                                          + + + +
                                          Return values
                                          + bool + — + + +
                                          +
                                          +

                                          + loadDc() + +

                                          + + +

                                          Load a data container in a testable way.

                                          + + + public + loadDc(string $table) : mixed + + +
                                          Parameters
                                          +
                                          +
                                          + $table + : string +
                                          +
                                          +
                                          + +
                                          +
                                          + + + +
                                          Return values
                                          + mixed + — + + +
                                          +
                                          +

                                          + loadLanguageFile() + +

                                          + + +

                                          Load a language file in a testable way.

                                          + + + public + loadLanguageFile(string $table) : mixed + + +
                                          Parameters
                                          +
                                          +
                                          + $table + : string +
                                          +
                                          +
                                          + +
                                          +
                                          + + + +
                                          Return values
                                          + mixed + — + + +
                                          +
                                          +

                                          + modifyAuthorPaletteOnLoad() + +

                                          + + + + + public + modifyAuthorPaletteOnLoad(DataContainer $dc) : mixed + +
                                          + +
                                          Parameters
                                          +
                                          +
                                          + $dc + : DataContainer +
                                          +
                                          +
                                          + +
                                          +
                                          + + + +
                                          Return values
                                          + mixed + — + + +
                                          +
                                          +

                                          + prepareRowEntryForList() + +

                                          + + + + + public + prepareRowEntryForList(mixed $table, string $field, mixed $value) : mixed + +
                                          + +
                                          Parameters
                                          +
                                          +
                                          + $table + : mixed +
                                          +
                                          +
                                          + +
                                          +
                                          + $field + : string +
                                          +
                                          +
                                          + +
                                          +
                                          + $value + : mixed +
                                          +
                                          +
                                          + +
                                          +
                                          + + + +
                                          Return values
                                          + mixed + — + + +
                                          +
                                          +

                                          + setAuthorIDOnCreate() + +

                                          + + + + + public + setAuthorIDOnCreate(string $table, int $id, array<string|int, mixed> $row, DataContainer $dc) : mixed + +
                                          + +
                                          Parameters
                                          +
                                          +
                                          + $table + : string +
                                          +
                                          +
                                          + +
                                          +
                                          + $id + : int +
                                          +
                                          +
                                          + +
                                          +
                                          + $row + : array<string|int, mixed> +
                                          +
                                          +
                                          + +
                                          +
                                          + $dc + : DataContainer +
                                          +
                                          +
                                          + +
                                          +
                                          + + + +
                                          Return values
                                          + mixed + — + + +
                                          +
                                          +

                                          + setDateAdded() + +

                                          + + +

                                          Sets the current date as the date added -> usually used on submit.

                                          + + + public + setDateAdded(DataContainer $dc) : mixed + + +
                                          Parameters
                                          +
                                          +
                                          + $dc + : DataContainer +
                                          +
                                          +
                                          + +
                                          +
                                          + + +
                                          + Tags + +
                                          +
                                          +
                                          + deprecated +
                                          +
                                          + +

                                          Use DateAddedField instead

                                          +
                                          + +
                                          +
                                          + +
                                          Return values
                                          + mixed + — + + +
                                          +
                                          +

                                          + setDateAddedOnCopy() + +

                                          + + +

                                          Sets the current date as the date added -> usually used on copy.

                                          + + + public + setDateAddedOnCopy( $insertId, DataContainer $dc) : mixed + + +
                                          Parameters
                                          +
                                          +
                                          + $insertId + : +
                                          +
                                          + +
                                          +
                                          + $dc + : DataContainer +
                                          +
                                          +
                                          + +
                                          +
                                          + + +
                                          + Tags + +
                                          +
                                          +
                                          + deprecated +
                                          +
                                          + +

                                          Use DateAddedField instead

                                          +
                                          + +
                                          +
                                          + +
                                          Return values
                                          + mixed + — + + +
                                          +
                                          +

                                          + setDefaultsFromDca() + +

                                          + + +

                                          Set initial $varData from dca.

                                          + + + public + setDefaultsFromDca(string $strTable[, mixed $varData = null ][, bool $includeSql = false ]) : mixed + + +
                                          Parameters
                                          +
                                          +
                                          + $strTable + : string +
                                          +
                                          +

                                          Dca table name

                                          +
                                          + +
                                          +
                                          + $varData + : mixed + = null
                                          +
                                          +

                                          Object or array

                                          +
                                          + +
                                          +
                                          + $includeSql + : bool + = false
                                          +
                                          +
                                          + +
                                          +
                                          + + + +
                                          Return values
                                          + mixed + — +

                                          Object or array with the default values

                                          +
                                          + + +
                                          +
                                          +

                                          + setFieldsToReadOnly() + +

                                          + + + + + public + setFieldsToReadOnly(mixed &$dca[, array<string|int, mixed> $config = [] ]) : mixed + +
                                          + +
                                          Parameters
                                          +
                                          +
                                          + $dca + : mixed +
                                          +
                                          +
                                          + +
                                          +
                                          + $config + : array<string|int, mixed> + = []
                                          +
                                          +
                                          + +
                                          +
                                          + + + +
                                          Return values
                                          + mixed + — + + +
                                          +
                                          +

                                          + combiner() + +

                                          + + +

                                          Taken from \Contao\DataContainer.

                                          + + + private + combiner(mixed $names) : mixed + + +
                                          Parameters
                                          +
                                          +
                                          + $names + : mixed +
                                          +
                                          +
                                          + +
                                          +
                                          + + + +
                                          Return values
                                          + mixed + — + + +
                                          +
                                          + + + + +
                                          +
                                          +
                                          +
                                          +

                                          Search results

                                          + +
                                          +
                                          +
                                            +
                                            +
                                            +
                                            +
                                            +
                                            + + +
                                            + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-StaticUtil-StaticClassUtil.html b/classes/HeimrichHannot-UtilsBundle-DependencyInjection-Configuration.html similarity index 74% rename from classes/HeimrichHannot-UtilsBundle-StaticUtil-StaticClassUtil.html rename to classes/HeimrichHannot-UtilsBundle-DependencyInjection-Configuration.html index 398044ea..a69d57d0 100644 --- a/classes/HeimrichHannot-UtilsBundle-StaticUtil-StaticClassUtil.html +++ b/classes/HeimrichHannot-UtilsBundle-DependencyInjection-Configuration.html @@ -86,16 +86,13 @@

                                            Fil

                                            - StaticClassUtil + Configuration - - extends AbstractStaticUtil -
                                            in package @@ -104,13 +101,16 @@

                                            + + implements + ConfigurationInterface

                                            @@ -122,6 +122,17 @@

                                            +

                                            + Interfaces, Classes and Traits + +

                                            + +
                                            +
                                            ConfigurationInterface
                                            +
                                            + + +

                                            @@ -131,11 +142,11 @@

                                            - hasTrait() + getConfigTreeBuilder() -  : bool +  : TreeBuilder
                                            -
                                            Check if a class or any of its parents implements a trait.
                                            +
                                            Generates the configuration tree builder.
                                            @@ -148,60 +159,39 @@

                                            Methods - +

                                            -

                                            - hasTrait() - +

                                            + getConfigTreeBuilder() +

                                            -

                                            Check if a class or any of its parents implements a trait.

                                            +

                                            Generates the configuration tree builder.

                                            public - static hasTrait(object|class-string $class, class-string $trait) : bool + getConfigTreeBuilder() : TreeBuilder -
                                            Parameters
                                            -
                                            -
                                            - $class - : object|class-string -
                                            -
                                            -

                                            The class to check.

                                            -
                                            - -
                                            -
                                            - $trait - : class-string -
                                            -
                                            -

                                            The trait to check for.

                                            -
                                            - -
                                            -
                                            - +
                                            Return values
                                            - bool + TreeBuilder — -

                                            True if the class or any of its parents implements the trait, false otherwise.

                                            +

                                            The tree builder

                                            @@ -284,7 +274,7 @@

                                            Search results

                                            - + diff --git a/classes/HeimrichHannot-UtilsBundle-DependencyInjection-HeimrichHannotUtilsExtension.html b/classes/HeimrichHannot-UtilsBundle-DependencyInjection-HeimrichHannotUtilsExtension.html new file mode 100644 index 00000000..53ccdd11 --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-DependencyInjection-HeimrichHannotUtilsExtension.html @@ -0,0 +1,335 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                            +

                                            Contao Utils Bundle

                                            + + + + + +
                                            + +
                                            +
                                            + + + + +
                                            + + +
                                            +

                                            + HeimrichHannotUtilsExtension + + + extends Extension + + +
                                            + in package + +
                                            + + +

                                            + + + + +
                                            + + + + + + + + +

                                            + Table of Contents + +

                                            + +
                                            +
                                            + getAlias() + +  : mixed +
                                            +
                                            + +
                                            + load() + +  : mixed +
                                            +
                                            + +
                                            + + + + + + + +
                                            +

                                            + Methods + +

                                            + +
                                            +

                                            + load() + +

                                            + + + + + public + load(array<string|int, mixed> $configs, ContainerBuilder $container) : mixed + +
                                            + +
                                            Parameters
                                            +
                                            +
                                            + $configs + : array<string|int, mixed> +
                                            +
                                            +
                                            + +
                                            +
                                            + $container + : ContainerBuilder +
                                            +
                                            +
                                            + +
                                            +
                                            + + + +
                                            Return values
                                            + mixed + — + + +
                                            +
                                            + + + + +
                                            +
                                            +
                                            +
                                            +

                                            Search results

                                            + +
                                            +
                                            +
                                              +
                                              +
                                              +
                                              +
                                              +
                                              + + +
                                              + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-DependencyInjection-UtilsBundleExtension.html b/classes/HeimrichHannot-UtilsBundle-DependencyInjection-UtilsBundleExtension.html new file mode 100644 index 00000000..0ac2fc61 --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-DependencyInjection-UtilsBundleExtension.html @@ -0,0 +1,376 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                              +

                                              Contao Utils Bundle

                                              + + + + + +
                                              + +
                                              +
                                              + + + + +
                                              + + +
                                              +

                                              + UtilsBundleExtension + + + extends Extension + + +
                                              + in package + +
                                              + + + implements + PrependExtensionInterface + +

                                              + + + + +
                                              + + + + + + +

                                              + Interfaces, Classes and Traits + +

                                              + +
                                              +
                                              PrependExtensionInterface
                                              +
                                              + + +
                                              + + +

                                              + Table of Contents + +

                                              + +
                                              +
                                              + load() + +  : mixed +
                                              +
                                              Loads a specific configuration.
                                              + +
                                              + prepend() + +  : mixed +
                                              +
                                              + +
                                              + + + + + + + +
                                              +

                                              + Methods + +

                                              +
                                              +

                                              + load() + +

                                              + + +

                                              Loads a specific configuration.

                                              + + + public + load(array<string|int, mixed> $configs, ContainerBuilder $container) : mixed + + +
                                              Parameters
                                              +
                                              +
                                              + $configs + : array<string|int, mixed> +
                                              +
                                              +
                                              + +
                                              +
                                              + $container + : ContainerBuilder +
                                              +
                                              +
                                              + +
                                              +
                                              + + +
                                              + Tags + +
                                              +
                                              +
                                              + throws +
                                              +
                                              + InvalidArgumentException + +

                                              When provided tag is not defined in this extension

                                              +
                                              + +
                                              +
                                              + +
                                              Return values
                                              + mixed + — + + +
                                              +
                                              +

                                              + prepend() + +

                                              + + + + + public + prepend(ContainerBuilder $container) : mixed + +
                                              + +
                                              Parameters
                                              +
                                              +
                                              + $container + : ContainerBuilder +
                                              +
                                              +
                                              + +
                                              +
                                              + + + +
                                              Return values
                                              + mixed + — + + +
                                              +
                                              + + + + +
                                              +
                                              +
                                              +
                                              +

                                              Search results

                                              + +
                                              +
                                              +
                                                +
                                                +
                                                +
                                                +
                                                +
                                                + + +
                                                + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-Dom-DOMLettersIterator.html b/classes/HeimrichHannot-UtilsBundle-Dom-DOMLettersIterator.html new file mode 100644 index 00000000..861301b3 --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-Dom-DOMLettersIterator.html @@ -0,0 +1,964 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                +

                                                Contao Utils Bundle

                                                + + + + + +
                                                + +
                                                +
                                                + + + + +
                                                + + +
                                                +

                                                + DOMLettersIterator + + +
                                                + in package + +
                                                + + + implements + Iterator + +

                                                + + + +

                                                Iterates individual characters (Unicode codepoints) of DOM text and CDATA nodes +while keeping track of their position in the document.

                                                + +

                                                Example:

                                                +

                                                $doc = new DOMDocument(); +$doc->load('example.xml'); +foreach(new DOMLettersIterator($doc) as $letter) echo $letter;

                                                +

                                                NB: If you only need characters without their position +in the document, use DOMNode->textContent instead.

                                                +
                                                + + +
                                                + Tags + +
                                                +
                                                +
                                                + author +
                                                +
                                                + +

                                                porneL http://pornel.net

                                                +
                                                + +
                                                +
                                                + license +
                                                +
                                                + +

                                                Public Domain

                                                +
                                                + +
                                                +
                                                + + + + +

                                                + Interfaces, Classes and Traits + +

                                                + +
                                                +
                                                Iterator
                                                +
                                                + + +
                                                + + +

                                                + Table of Contents + +

                                                + +
                                                +
                                                + $current + +  : mixed +
                                                +
                                                + +
                                                + $key + +  : mixed +
                                                +
                                                + +
                                                + $letters + +  : mixed +
                                                +
                                                + +
                                                + $offset + +  : mixed +
                                                +
                                                + +
                                                + $queue + +  : SplQueue +
                                                +
                                                + +
                                                + $start + +  : mixed +
                                                +
                                                + +
                                                + __construct() + +  : mixed +
                                                +
                                                expects DOMElement or DOMDocument (see DOMDocument::load and DOMDocument::loadHTML).
                                                + +
                                                + current() + +  : mixed +
                                                +
                                                + +
                                                + currentElement() + +  : DOMElement +
                                                +
                                                Returns DOMElement that is currently being iterated or NULL if iterator has finished.
                                                + +
                                                + currentTextPosition() + +  : array<string|int, DOMElement>|array<string|int, int> +
                                                +
                                                Returns position in text as DOMText node and character offset.
                                                + +
                                                + key() + +  : mixed +
                                                +
                                                + +
                                                + next() + +  : void +
                                                +
                                                + +
                                                + rewind() + +  : mixed +
                                                +
                                                + +
                                                + valid() + +  : mixed +
                                                +
                                                + +
                                                + addToQueue() + +  : void +
                                                +
                                                + +
                                                + isTextNode() + +  : bool +
                                                +
                                                + +
                                                + + + + + + +
                                                +

                                                + Properties + +

                                                +
                                                +

                                                + $current + + + +

                                                + + + + + private + mixed + $current + + +
                                                + +
                                                + + + +
                                                + +
                                                +

                                                + $letters + + + +

                                                + + + + + private + mixed + $letters + + +
                                                + +
                                                + + + +
                                                +
                                                +

                                                + $offset + + + +

                                                + + + + + private + mixed + $offset + + +
                                                + +
                                                + + + +
                                                + +
                                                +

                                                + $start + + + +

                                                + + + + + private + mixed + $start + + +
                                                + +
                                                + + + +
                                                +
                                                + +
                                                +

                                                + Methods + +

                                                +
                                                +

                                                + __construct() + +

                                                + + +

                                                expects DOMElement or DOMDocument (see DOMDocument::load and DOMDocument::loadHTML).

                                                + + + public + __construct(DOMDocument|DOMElement $el) : mixed + + +
                                                Parameters
                                                +
                                                +
                                                + $el + : DOMDocument|DOMElement +
                                                +
                                                + +
                                                +
                                                + + + +
                                                Return values
                                                + mixed + — + + +
                                                +
                                                +

                                                + current() + +

                                                + + + + + public + current() : mixed + +
                                                + + + + +
                                                Return values
                                                + mixed + — + + +
                                                +
                                                +

                                                + currentElement() + +

                                                + + +

                                                Returns DOMElement that is currently being iterated or NULL if iterator has finished.

                                                + + + public + currentElement() : DOMElement + + + + + +
                                                Return values
                                                + DOMElement + — + + +
                                                +
                                                +

                                                + currentTextPosition() + +

                                                + + +

                                                Returns position in text as DOMText node and character offset.

                                                + + + public + currentTextPosition() : array<string|int, DOMElement>|array<string|int, int> + +

                                                (it's NOT a byte offset, you must use mb_substr() or similar to use this offset properly). +node may be NULL if iterator has finished.

                                                +
                                                + + + + +
                                                Return values
                                                + array<string|int, DOMElement>|array<string|int, int> + — + + +
                                                +
                                                +

                                                + key() + +

                                                + + + + + public + key() : mixed + +
                                                + + + + +
                                                Return values
                                                + mixed + — + + +
                                                +
                                                +

                                                + next() + +

                                                + + + + + public + next() : void + +
                                                + + + + +
                                                Return values
                                                + void + — + + +
                                                +
                                                +

                                                + rewind() + +

                                                + + + + + public + rewind() : mixed + +
                                                + + + + +
                                                Return values
                                                + mixed + — + + +
                                                +
                                                +

                                                + valid() + +

                                                + + + + + public + valid() : mixed + +
                                                + + + + +
                                                Return values
                                                + mixed + — + + +
                                                +
                                                +

                                                + addToQueue() + +

                                                + + + + + private + addToQueue(DOMNode $node) : void + +
                                                + +
                                                Parameters
                                                +
                                                +
                                                + $node + : DOMNode +
                                                +
                                                +
                                                + +
                                                +
                                                + + + +
                                                Return values
                                                + void + — + + +
                                                +
                                                +

                                                + isTextNode() + +

                                                + + + + + private + isTextNode(DOMNode $element) : bool + +
                                                + +
                                                Parameters
                                                +
                                                +
                                                + $element + : DOMNode +
                                                +
                                                +
                                                + +
                                                +
                                                + + + +
                                                Return values
                                                + bool + — + + +
                                                +
                                                + + + + +
                                                +
                                                +
                                                +
                                                +

                                                Search results

                                                + +
                                                +
                                                +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  + + +
                                                  + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-Driver-DC-Table-Utils.html b/classes/HeimrichHannot-UtilsBundle-Driver-DC-Table-Utils.html new file mode 100644 index 00000000..bba74d5e --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-Driver-DC-Table-Utils.html @@ -0,0 +1,410 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                  +

                                                  Contao Utils Bundle

                                                  + + + + + +
                                                  + +
                                                  +
                                                  + + + + +
                                                  + + +
                                                  +

                                                  + DC_Table_Utils + + + extends DC_Table + + +
                                                  + in package + +
                                                  + + +

                                                  + + + + +
                                                  + + + + + + + + +

                                                  + Table of Contents + +

                                                  + +
                                                  +
                                                  + __construct() + +  : mixed +
                                                  +
                                                  Initialize the object.
                                                  + +
                                                  + createFromModel() + +  : static +
                                                  +
                                                  Create a DataContainer instance from a given Model.
                                                  + +
                                                  + createFromModelData() + +  : static +
                                                  +
                                                  Create a DataContainer instance from given model data.
                                                  + +
                                                  + + + + + + + +
                                                  +

                                                  + Methods + +

                                                  +
                                                  +

                                                  + __construct() + +

                                                  + + +

                                                  Initialize the object.

                                                  + + + public + __construct(string $strTable[, array<string|int, mixed> $arrModule = [] ]) : mixed + + +
                                                  Parameters
                                                  +
                                                  +
                                                  + $strTable + : string +
                                                  +
                                                  + +
                                                  +
                                                  + $arrModule + : array<string|int, mixed> + = []
                                                  +
                                                  + +
                                                  +
                                                  + + + +
                                                  Return values
                                                  + mixed + — + + +
                                                  +
                                                  +

                                                  + createFromModel() + +

                                                  + + +

                                                  Create a DataContainer instance from a given Model.

                                                  + + + public + static createFromModel(Model $model) : static + + +
                                                  Parameters
                                                  +
                                                  +
                                                  + $model + : Model +
                                                  +
                                                  +
                                                  + +
                                                  +
                                                  + + + +
                                                  Return values
                                                  + static + — + + +
                                                  +
                                                  +

                                                  + createFromModelData() + +

                                                  + + +

                                                  Create a DataContainer instance from given model data.

                                                  + + + public + static createFromModelData(array<string|int, mixed> $modelData, string $table[, string $field = null ]) : static + + +
                                                  Parameters
                                                  +
                                                  +
                                                  + $modelData + : array<string|int, mixed> +
                                                  +
                                                  +
                                                  + +
                                                  +
                                                  + $table + : string +
                                                  +
                                                  +
                                                  + +
                                                  +
                                                  + $field + : string + = null
                                                  +
                                                  + +
                                                  +
                                                  + + + +
                                                  Return values
                                                  + static + — + + +
                                                  +
                                                  + + + + +
                                                  +
                                                  +
                                                  +
                                                  +

                                                  Search results

                                                  + +
                                                  +
                                                  +
                                                    +
                                                    +
                                                    +
                                                    +
                                                    +
                                                    + + +
                                                    + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-EntityFinder-EntityFinderHelper.html b/classes/HeimrichHannot-UtilsBundle-EntityFinder-EntityFinderHelper.html index fc808060..79fef8f2 100644 --- a/classes/HeimrichHannot-UtilsBundle-EntityFinder-EntityFinderHelper.html +++ b/classes/HeimrichHannot-UtilsBundle-EntityFinder-EntityFinderHelper.html @@ -107,7 +107,7 @@

                                                    @@ -128,13 +128,6 @@

                                                    - $framework - -  : ContaoFramework -
                                                    -
                                                    - -
                                                    $utils  : Utils @@ -187,40 +180,6 @@

                                                    -property -private " -> -

                                                    - $framework - - - -

                                                    - - - - - private - ContaoFramework - $framework - - -
                                                    - -
                                                    - - - -

                                                    - @@ -269,14 +226,14 @@

                                                    public - __construct(Utils $utils, ContaoFramework $framework) : mixed + __construct(Utils $utils) : mixed
                                                    @@ -289,14 +246,6 @@

                                                    Parameters
                                                    -
                                                    -
                                                    - $framework - : ContaoFramework -
                                                    -
                                                    -
                                                    -

                                                    @@ -321,7 +270,7 @@

                                                    EntityFinderHelper.php : - 88 + 91 @@ -409,7 +358,7 @@

                                                    @@ -497,7 +446,7 @@

                                                    EntityFinderHelper.php : - 36 + 42 diff --git a/classes/HeimrichHannot-UtilsBundle-Event-AbstractEvent.html b/classes/HeimrichHannot-UtilsBundle-Event-AbstractEvent.html new file mode 100644 index 00000000..a41f81cf --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-Event-AbstractEvent.html @@ -0,0 +1,223 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                    +

                                                    Contao Utils Bundle

                                                    + + + + + +
                                                    + +
                                                    +
                                                    + + + + +
                                                    + + +
                                                    +

                                                    + AbstractEvent + + + extends Event + + +
                                                    + in package + +
                                                    + + +

                                                    + + + + +
                                                    + + + + + + + + + + + + + + + + + + + +
                                                    +
                                                    +
                                                    +
                                                    +

                                                    Search results

                                                    + +
                                                    +
                                                    +
                                                      +
                                                      +
                                                      +
                                                      +
                                                      +
                                                      + + +
                                                      + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-Event-ExtendEntityFinderEvent.html b/classes/HeimrichHannot-UtilsBundle-Event-ExtendEntityFinderEvent.html index ec7fa78e..41562fcb 100644 --- a/classes/HeimrichHannot-UtilsBundle-Event-ExtendEntityFinderEvent.html +++ b/classes/HeimrichHannot-UtilsBundle-Event-ExtendEntityFinderEvent.html @@ -94,7 +94,7 @@

                                                      ExtendEntityFinderEvent - extends Event + extends AbstractEvent
                                                      @@ -110,7 +110,7 @@

                                                      @@ -298,7 +298,7 @@

                                                      @@ -309,10 +309,8 @@

                                                      $entityFinderHelper -
                                                      - -
                                                      - + + @@ -332,7 +330,7 @@

                                                      @@ -343,10 +341,8 @@

                                                      $id -
                                                      - -
                                                      - + + @@ -366,7 +362,7 @@

                                                      @@ -377,10 +373,8 @@

                                                      $inserttags -
                                                      - -
                                                      - + + @@ -400,7 +394,7 @@

                                                      @@ -409,13 +403,11 @@

                                                      private bool $onlyText - = false - -
                                                      - -
                                                      + + + @@ -468,7 +458,7 @@

                                                      @@ -479,10 +469,8 @@

                                                      $parents -
                                                      - -
                                                      - + + @@ -502,7 +490,7 @@

                                                      @@ -513,10 +501,8 @@

                                                      $table -
                                                      - -
                                                      - + + @@ -540,14 +526,14 @@

                                                      public - __construct(string $table, int|string $id, array<string|int, mixed> $parents, array<string|int, mixed> $inserttags, EntityFinderHelper $entityFinderHelper[, bool $onlyText = false ]) : mixed + __construct(string $table, mixed $id, array<string|int, mixed> $parents, array<string|int, mixed> $inserttags, EntityFinderHelper $entityFinderHelper[, bool $onlyText = false ]) : mixed
                                                      @@ -563,7 +549,7 @@

                                                      Parameters
                                                      $id - : int|string + : mixed
                                                      @@ -624,7 +610,7 @@

                                                      @@ -668,7 +654,7 @@

                                                      @@ -720,7 +706,7 @@

                                                      @@ -753,7 +739,7 @@

                                                      @@ -785,7 +771,7 @@

                                                      @@ -818,7 +804,7 @@

                                                      @@ -851,7 +837,7 @@

                                                      @@ -884,7 +870,7 @@

                                                      @@ -917,7 +903,7 @@

                                                      @@ -950,7 +936,7 @@

                                                      @@ -994,7 +980,7 @@

                                                      @@ -1038,7 +1024,7 @@

                                                      diff --git a/classes/HeimrichHannot-UtilsBundle-Event-RenderTwigTemplateEvent.html b/classes/HeimrichHannot-UtilsBundle-Event-RenderTwigTemplateEvent.html new file mode 100644 index 00000000..a3a567dc --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-Event-RenderTwigTemplateEvent.html @@ -0,0 +1,605 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                      +

                                                      Contao Utils Bundle

                                                      + + + + + +
                                                      + +
                                                      +
                                                      + + + + +
                                                      + + +
                                                      +

                                                      + RenderTwigTemplateEvent + + + extends AbstractEvent + + +
                                                      + in package + +
                                                      + + +

                                                      + + + + +
                                                      + + + + + + + + +

                                                      + Table of Contents + +

                                                      + +
                                                      +
                                                      + NAME + +  = 'huh.utils.template.render' +
                                                      +
                                                      + +
                                                      + $context + +  : array<string|int, mixed> +
                                                      +
                                                      The context template data.
                                                      + +
                                                      + $template + +  : string +
                                                      +
                                                      The name of the twig template.
                                                      + +
                                                      + __construct() + +  : mixed +
                                                      +
                                                      + +
                                                      + getContext() + +  : array<string|int, mixed> +
                                                      +
                                                      + +
                                                      + getTemplate() + +  : string +
                                                      +
                                                      + +
                                                      + setContext() + +  : mixed +
                                                      +
                                                      + +
                                                      + setTemplate() + +  : mixed +
                                                      +
                                                      + +
                                                      + + + + +
                                                      +

                                                      + Constants + +

                                                      +
                                                      +

                                                      + NAME + +

                                                      + + + + + + public + mixed + NAME + = 'huh.utils.template.render' + + + +
                                                      + +
                                                      + + + +
                                                      +
                                                      + + +
                                                      +

                                                      + Properties + +

                                                      +
                                                      +

                                                      + $context + + + +

                                                      + + +

                                                      The context template data.

                                                      + + + protected + array<string|int, mixed> + $context + = [] + + + + + +
                                                      +
                                                      +

                                                      + $template + + + +

                                                      + + +

                                                      The name of the twig template.

                                                      + + + protected + string + $template + + + + + + +
                                                      +
                                                      + +
                                                      +

                                                      + Methods + +

                                                      +
                                                      +

                                                      + __construct() + +

                                                      + + + + + public + __construct(string $template[, array<string|int, mixed> $context = [] ]) : mixed + +
                                                      + +
                                                      Parameters
                                                      +
                                                      +
                                                      + $template + : string +
                                                      +
                                                      +
                                                      + +
                                                      +
                                                      + $context + : array<string|int, mixed> + = []
                                                      +
                                                      +
                                                      + +
                                                      +
                                                      + + + +
                                                      Return values
                                                      + mixed + — + + +
                                                      +
                                                      +

                                                      + getContext() + +

                                                      + + + + + public + getContext() : array<string|int, mixed> + +
                                                      + + + + +
                                                      Return values
                                                      + array<string|int, mixed> + — + + +
                                                      +
                                                      +

                                                      + getTemplate() + +

                                                      + + + + + public + getTemplate() : string + +
                                                      + + + + +
                                                      Return values
                                                      + string + — + + +
                                                      +
                                                      +

                                                      + setContext() + +

                                                      + + + + + public + setContext(array<string|int, mixed> $context) : mixed + +
                                                      + +
                                                      Parameters
                                                      +
                                                      +
                                                      + $context + : array<string|int, mixed> +
                                                      +
                                                      +
                                                      + +
                                                      +
                                                      + + + +
                                                      Return values
                                                      + mixed + — + + +
                                                      +
                                                      +

                                                      + setTemplate() + +

                                                      + + + + + public + setTemplate(string $template) : mixed + +
                                                      + +
                                                      Parameters
                                                      +
                                                      +
                                                      + $template + : string +
                                                      +
                                                      +
                                                      + +
                                                      +
                                                      + + + +
                                                      Return values
                                                      + mixed + — + + +
                                                      +
                                                      + + + + +
                                                      +
                                                      +
                                                      +
                                                      +

                                                      Search results

                                                      + +
                                                      +
                                                      +
                                                        +
                                                        +
                                                        +
                                                        +
                                                        +
                                                        + + +
                                                        + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-EventListener-DcaField-AbstractDcaFieldListener.html b/classes/HeimrichHannot-UtilsBundle-EventListener-DcaField-AbstractDcaFieldListener.html index 70206a79..93526c67 100644 --- a/classes/HeimrichHannot-UtilsBundle-EventListener-DcaField-AbstractDcaFieldListener.html +++ b/classes/HeimrichHannot-UtilsBundle-EventListener-DcaField-AbstractDcaFieldListener.html @@ -111,7 +111,7 @@

                                                        @@ -161,6 +161,13 @@

                                                         : array<string|int, mixed> +
                                                        + +
                                                        + applyDefaultFieldAdjustments() + +  : mixed +
                                                        @@ -198,7 +205,7 @@

                                                        @@ -209,10 +216,8 @@

                                                        $container -
                                                        - -
                                                        - + + @@ -236,7 +241,7 @@

                                                        @@ -280,7 +285,7 @@

                                                        @@ -299,6 +304,58 @@

                                                        Return values
                                                        — + +
                                                        +

                                                        + applyDefaultFieldAdjustments() + +

                                                        + + + + + protected + applyDefaultFieldAdjustments(array<string|int, mixed> &$field, DcaFieldConfiguration $configuration) : mixed + +
                                                        + +
                                                        Parameters
                                                        +
                                                        +
                                                        + $field + : array<string|int, mixed> +
                                                        +
                                                        +
                                                        + +
                                                        +
                                                        + $configuration + : DcaFieldConfiguration +
                                                        +
                                                        +
                                                        + +
                                                        +
                                                        + + + +
                                                        Return values
                                                        + mixed + — + +
                                                        diff --git a/classes/HeimrichHannot-UtilsBundle-EventListener-DcaField-DateAddedFieldListener.html b/classes/HeimrichHannot-UtilsBundle-EventListener-DcaField-DateAddedFieldListener.html index e2c2ddd0..83d8a47e 100644 --- a/classes/HeimrichHannot-UtilsBundle-EventListener-DcaField-DateAddedFieldListener.html +++ b/classes/HeimrichHannot-UtilsBundle-EventListener-DcaField-DateAddedFieldListener.html @@ -171,6 +171,13 @@

                                                         : void

                                                        +
                                                        + +
                                                        + applyDefaultFieldAdjustments() + +  : mixed +
                                                        @@ -208,7 +215,7 @@

                                                        @@ -219,10 +226,8 @@

                                                        $container -
                                                        - -
                                                        - + + @@ -246,7 +251,7 @@

                                                        @@ -290,7 +295,7 @@

                                                        @@ -323,7 +328,7 @@

                                                        @@ -375,7 +380,7 @@

                                                        @@ -419,7 +424,7 @@

                                                        @@ -428,8 +433,7 @@

                                                        public onLoadDataContainer(string $table) : void -
                                                        - +

                                                        Parameters
                                                        @@ -443,12 +447,79 @@
                                                        Parameters
                                                        +
                                                        + Tags + +
                                                        +
                                                        +
                                                        + Hook +
                                                        +
                                                        + +

                                                        ("loadDataContainer")

                                                        +
                                                        + +
                                                        +
                                                        Return values
                                                        void — + +
                                                        +

                                                        + applyDefaultFieldAdjustments() + +

                                                        + + + + + protected + applyDefaultFieldAdjustments(array<string|int, mixed> &$field, DcaFieldConfiguration $configuration) : mixed + +
                                                        + +
                                                        Parameters
                                                        +
                                                        +
                                                        + $field + : array<string|int, mixed> +
                                                        +
                                                        +
                                                        + +
                                                        +
                                                        + $configuration + : DcaFieldConfiguration +
                                                        +
                                                        +
                                                        + +
                                                        +
                                                        + + + +
                                                        Return values
                                                        + mixed + — + +
                                                        diff --git a/classes/HeimrichHannot-UtilsBundle-EventListener-DcaField-DcaAuthorListener.html b/classes/HeimrichHannot-UtilsBundle-EventListener-DcaField-DcaAuthorListener.html index fb86ce10..e639ee86 100644 --- a/classes/HeimrichHannot-UtilsBundle-EventListener-DcaField-DcaAuthorListener.html +++ b/classes/HeimrichHannot-UtilsBundle-EventListener-DcaField-DcaAuthorListener.html @@ -94,6 +94,9 @@

                                                        Fil

                                                        DcaAuthorListener + + extends AbstractDcaFieldListener +
                                                        in package @@ -128,24 +131,24 @@

                                                        -
                                                        - $framework +
                                                        + $container -  : ContaoFramework +  : ContainerInterface
                                                        -
                                                        - $security +
                                                        + __construct() -  : Security +  : mixed
                                                        -
                                                        - __construct() +
                                                        + getSubscribedServices() -  : mixed +  : array<string|int, mixed>
                                                        @@ -161,6 +164,13 @@

                                                         : void

                                                        +
                                                        + +
                                                        + applyDefaultFieldAdjustments() + +  : mixed +
                                                        @@ -168,6 +178,13 @@

                                                         : string

                                                        +
                                                        + +
                                                        + getModelInstance() + +  : Model|null +
                                                        @@ -186,67 +203,31 @@

                                                        class=" phpdocumentor-element -property - -private + -protected " > -

                                                        - $framework - +

                                                        + $container +

                                                        - private - ContaoFramework - $framework + protected + ContainerInterface + $container -
                                                        - -
                                                        - - - -
                                                        -

                                                        - $security - - - -

                                                        - - - - private - Security - $security - - -
                                                        - -
                                                        -
                                                        @@ -265,35 +246,27 @@

                                                        >

                                                        __construct() - +

                                                        public - __construct(ContaoFramework $framework, Security $security) : mixed + __construct(ContainerInterface $container) : mixed
                                                        Parameters
                                                        - $framework - : ContaoFramework -
                                                        -
                                                        -
                                                        - -
                                                        -
                                                        - $security - : Security + $container + : ContainerInterface
                                                        @@ -308,6 +281,39 @@
                                                        Return values
                                                        — + +
                                                        +

                                                        + getSubscribedServices() + +

                                                        + + + + + public + static getSubscribedServices() : array<string|int, mixed> + +
                                                        + + + + +
                                                        Return values
                                                        + array<string|int, mixed> + — + +
                                                        @@ -374,7 +380,7 @@

                                                        @@ -383,8 +389,7 @@

                                                        public onLoadDataContainer(string $table) : void -
                                                        - +

                                                        Parameters
                                                        @@ -398,12 +403,79 @@
                                                        Parameters
                                                        +
                                                        + Tags + +
                                                        +
                                                        +
                                                        + Hook +
                                                        +
                                                        + +

                                                        ("loadDataContainer")

                                                        +
                                                        + +
                                                        +
                                                        Return values
                                                        void — +
                                                        +
                                                        +

                                                        + applyDefaultFieldAdjustments() + +

                                                        + + + + + protected + applyDefaultFieldAdjustments(array<string|int, mixed> &$field, DcaFieldConfiguration $configuration) : mixed + +
                                                        + +
                                                        Parameters
                                                        +
                                                        +
                                                        + $field + : array<string|int, mixed> +
                                                        +
                                                        +
                                                        + +
                                                        +
                                                        + $configuration + : DcaFieldConfiguration +
                                                        +
                                                        +
                                                        + +
                                                        +
                                                        + + + +
                                                        Return values
                                                        + mixed + — + +
                                                        +
                                                        +

                                                        + getModelInstance() + +

                                                        + + + + + protected + getModelInstance(string $table, int $id) : Model|null + +
                                                        + +
                                                        Parameters
                                                        +
                                                        +
                                                        + $table + : string +
                                                        +
                                                        +
                                                        + +
                                                        +
                                                        + $id + : int +
                                                        +
                                                        +
                                                        + +
                                                        +
                                                        + + + +
                                                        Return values
                                                        + Model|null + — + +
                                                        diff --git a/classes/HeimrichHannot-UtilsBundle-EventListener-InitializeSystemListener.html b/classes/HeimrichHannot-UtilsBundle-EventListener-InitializeSystemListener.html new file mode 100644 index 00000000..64df280f --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-EventListener-InitializeSystemListener.html @@ -0,0 +1,416 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                        +

                                                        Contao Utils Bundle

                                                        + + + + + +
                                                        + +
                                                        +
                                                        + + + + +
                                                        + + +
                                                        +

                                                        + InitializeSystemListener + + +
                                                        + in package + +
                                                        + + +

                                                        + + + +

                                                        Hook("initializeSystem").

                                                        + + + + + + + + + +

                                                        + Table of Contents + +

                                                        + +
                                                        +
                                                        + $bundleConfig + +  : array<string|int, mixed> +
                                                        +
                                                        + +
                                                        + $containerUtil + +  : ContainerUtil +
                                                        +
                                                        + +
                                                        + __construct() + +  : mixed +
                                                        +
                                                        InitializeSystemListener constructor.
                                                        + +
                                                        + __invoke() + +  : void +
                                                        +
                                                        + +
                                                        + + + + + + +
                                                        +

                                                        + Properties + +

                                                        +
                                                        +

                                                        + $bundleConfig + + + +

                                                        + + + + + protected + array<string|int, mixed> + $bundleConfig + + + + + + +
                                                        + +
                                                        + +
                                                        +

                                                        + Methods + +

                                                        +
                                                        +

                                                        + __construct() + +

                                                        + + +

                                                        InitializeSystemListener constructor.

                                                        + + + public + __construct(ContainerUtil $containerUtil, array<string|int, mixed> $bundleConfig) : mixed + + +
                                                        Parameters
                                                        +
                                                        +
                                                        + $containerUtil + : ContainerUtil +
                                                        +
                                                        +
                                                        + +
                                                        +
                                                        + $bundleConfig + : array<string|int, mixed> +
                                                        +
                                                        +
                                                        + +
                                                        +
                                                        + + + +
                                                        Return values
                                                        + mixed + — + + +
                                                        +
                                                        +

                                                        + __invoke() + +

                                                        + + + + + public + __invoke() : void + +
                                                        + + + + +
                                                        Return values
                                                        + void + — + + +
                                                        +
                                                        + + + + +
                                                        +
                                                        +
                                                        +
                                                        +

                                                        Search results

                                                        + +
                                                        +
                                                        +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          + + +
                                                          + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-EventListener-InsertTagsListener.html b/classes/HeimrichHannot-UtilsBundle-EventListener-InsertTagsListener.html new file mode 100644 index 00000000..4ca0684c --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-EventListener-InsertTagsListener.html @@ -0,0 +1,746 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                          +

                                                          Contao Utils Bundle

                                                          + + + + + +
                                                          + +
                                                          +
                                                          + + + + +
                                                          + + +
                                                          +

                                                          + InsertTagsListener + + +
                                                          + in package + +
                                                          + + +

                                                          + + + + +
                                                          + + + + + + + + +

                                                          + Table of Contents + +

                                                          + +
                                                          +
                                                          + $contaoFramework + +  : ContaoFrameworkInterface +
                                                          +
                                                          + +
                                                          + $eventDispatcher + +  : EventDispatcherInterface +
                                                          +
                                                          + +
                                                          + $supportedTags + +  : array<string|int, mixed> +
                                                          +
                                                          + +
                                                          + $templateUtil + +  : TemplateUtil +
                                                          +
                                                          + +
                                                          + $twig + +  : Environment +
                                                          +
                                                          + +
                                                          + __construct() + +  : mixed +
                                                          +
                                                          Constructor.
                                                          + +
                                                          + onReplaceInsertTags() + +  : string|false +
                                                          +
                                                          Replaces calendar insert tags.
                                                          + +
                                                          + replaceSupportedTags() + +  : string +
                                                          +
                                                          Replace supported tags.
                                                          + +
                                                          + replaceTwigTag() + +  : string +
                                                          +
                                                          Replace twig template insert tags {{twig::logo.html.twig::a:1:{s:3:"foo";s:3:"bar";}}}.
                                                          + +
                                                          + + + + + + +
                                                          +

                                                          + Properties + +

                                                          +
                                                          +

                                                          + $contaoFramework + + + +

                                                          + + + + + private + ContaoFrameworkInterface + $contaoFramework + + + + + + +
                                                          +
                                                          +

                                                          + $eventDispatcher + + + +

                                                          + + + + + private + EventDispatcherInterface + $eventDispatcher + + + + + + +
                                                          +
                                                          +

                                                          + $supportedTags + + + +

                                                          + + + + + private + array<string|int, mixed> + $supportedTags + = ['twig'] + + + + + +
                                                          + +
                                                          +

                                                          + $twig + + + +

                                                          + + + + + private + Environment + $twig + + + + + + +
                                                          +
                                                          + +
                                                          +

                                                          + Methods + +

                                                          +
                                                          +

                                                          + __construct() + +

                                                          + + +

                                                          Constructor.

                                                          + + + public + __construct(EventDispatcherInterface $eventDispatcher, Environment $twig, TemplateUtil $templateUtil, ContaoFrameworkInterface $contaoFramework) : mixed + + +
                                                          Parameters
                                                          +
                                                          +
                                                          + $eventDispatcher + : EventDispatcherInterface +
                                                          +
                                                          +
                                                          + +
                                                          +
                                                          + $twig + : Environment +
                                                          +
                                                          +
                                                          + +
                                                          +
                                                          + $templateUtil + : TemplateUtil +
                                                          +
                                                          +
                                                          + +
                                                          +
                                                          + $contaoFramework + : ContaoFrameworkInterface +
                                                          +
                                                          +
                                                          + +
                                                          +
                                                          + + + +
                                                          Return values
                                                          + mixed + — + + +
                                                          +
                                                          +

                                                          + onReplaceInsertTags() + +

                                                          + + +

                                                          Replaces calendar insert tags.

                                                          + + + public + onReplaceInsertTags(string $tag) : string|false + + +
                                                          Parameters
                                                          +
                                                          +
                                                          + $tag + : string +
                                                          +
                                                          +
                                                          + +
                                                          +
                                                          + + + +
                                                          Return values
                                                          + string|false + — + + +
                                                          +
                                                          +

                                                          + replaceSupportedTags() + +

                                                          + + +

                                                          Replace supported tags.

                                                          + + + protected + replaceSupportedTags(string $key[, array<string|int, mixed> $attributes = [] ]) : string + + +
                                                          Parameters
                                                          +
                                                          +
                                                          + $key + : string +
                                                          +
                                                          +
                                                          + +
                                                          +
                                                          + $attributes + : array<string|int, mixed> + = []
                                                          +
                                                          +
                                                          + +
                                                          +
                                                          + + +
                                                          + Tags + +
                                                          +
                                                          +
                                                          + throws +
                                                          +
                                                          + InvalidArgumentException + + +
                                                          +
                                                          + throws +
                                                          +
                                                          + Twig_Error_Loader + + +
                                                          +
                                                          + throws +
                                                          +
                                                          + Twig_Error_Runtime + + +
                                                          +
                                                          + throws +
                                                          +
                                                          + Twig_Error_Syntax + + +
                                                          +
                                                          + +
                                                          Return values
                                                          + string + — + + +
                                                          +
                                                          +

                                                          + replaceTwigTag() + +

                                                          + + +

                                                          Replace twig template insert tags {{twig::logo.html.twig::a:1:{s:3:"foo";s:3:"bar";}}}.

                                                          + + + protected + replaceTwigTag([array<string|int, mixed> $attributes = [] ]) : string + + +
                                                          Parameters
                                                          +
                                                          +
                                                          + $attributes + : array<string|int, mixed> + = []
                                                          +
                                                          +
                                                          + +
                                                          +
                                                          + + +
                                                          + Tags + +
                                                          +
                                                          +
                                                          + throws +
                                                          +
                                                          + InvalidArgumentException + + +
                                                          +
                                                          + throws +
                                                          +
                                                          + Twig_Error_Loader + + +
                                                          +
                                                          + throws +
                                                          +
                                                          + Twig_Error_Runtime + + +
                                                          +
                                                          + throws +
                                                          +
                                                          + Twig_Error_Syntax + + +
                                                          +
                                                          + +
                                                          Return values
                                                          + string + — + + +
                                                          +
                                                          + + + + +
                                                          +
                                                          +
                                                          +
                                                          +

                                                          Search results

                                                          + +
                                                          +
                                                          +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            + + +
                                                            + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-File-FileArchiveUtil.html b/classes/HeimrichHannot-UtilsBundle-File-FileArchiveUtil.html new file mode 100644 index 00000000..4dd8ab7c --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-File-FileArchiveUtil.html @@ -0,0 +1,497 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                            +

                                                            Contao Utils Bundle

                                                            + + + + + +
                                                            + +
                                                            +
                                                            + + + + +
                                                            + + +
                                                            +

                                                            + FileArchiveUtil + + +
                                                            + in package + +
                                                            + + +

                                                            + + + + +
                                                            + + + + + + + + +

                                                            + Table of Contents + +

                                                            + +
                                                            +
                                                            + $folderUtil + +  : FolderUtil +
                                                            +
                                                            + +
                                                            + $projectDir + +  : string +
                                                            +
                                                            + +
                                                            + $utilsConfig + +  : array<string|int, mixed> +
                                                            +
                                                            + +
                                                            + __construct() + +  : mixed +
                                                            +
                                                            FileArchiveUtil constructor.
                                                            + +
                                                            + createFileArchive() + +  : string +
                                                            +
                                                            Create a temporary zip file and return the file path.
                                                            + +
                                                            + + + + + + +
                                                            +

                                                            + Properties + +

                                                            + +
                                                            +

                                                            + $projectDir + + + +

                                                            + + + + + private + string + $projectDir + + + + + + +
                                                            +
                                                            +

                                                            + $utilsConfig + + + +

                                                            + + + + + private + array<string|int, mixed> + $utilsConfig + + + + + + +
                                                            +
                                                            + +
                                                            +

                                                            + Methods + +

                                                            +
                                                            +

                                                            + __construct() + +

                                                            + + +

                                                            FileArchiveUtil constructor.

                                                            + + + public + __construct(string $projectDir, array<string|int, mixed> $utilsConfig, FolderUtil $folderUtil) : mixed + + +
                                                            Parameters
                                                            +
                                                            +
                                                            + $projectDir + : string +
                                                            +
                                                            +
                                                            + +
                                                            +
                                                            + $utilsConfig + : array<string|int, mixed> +
                                                            +
                                                            +
                                                            + +
                                                            +
                                                            + $folderUtil + : FolderUtil +
                                                            +
                                                            +
                                                            + +
                                                            +
                                                            + + + +
                                                            Return values
                                                            + mixed + — + + +
                                                            +
                                                            +

                                                            + createFileArchive() + +

                                                            + + +

                                                            Create a temporary zip file and return the file path.

                                                            + + + public + createFileArchive(array<string|int, FilesModel>|array<string|int, mixed> $items, string $archiveName) : string + + +
                                                            Parameters
                                                            +
                                                            +
                                                            + $items + : array<string|int, FilesModel>|array<string|int, mixed> +
                                                            +
                                                            + +
                                                            +
                                                            + $archiveName + : string +
                                                            +
                                                            +
                                                            + +
                                                            +
                                                            + + +
                                                            + Tags + +
                                                            +
                                                            +
                                                            + throws +
                                                            +
                                                            + Exception + + +
                                                            +
                                                            + +
                                                            Return values
                                                            + string + — +

                                                            the path to the temporary zip file

                                                            +
                                                            + + +
                                                            +
                                                            + + + + +
                                                            +
                                                            +
                                                            +
                                                            +

                                                            Search results

                                                            + +
                                                            +
                                                            +
                                                              +
                                                              +
                                                              +
                                                              +
                                                              +
                                                              + + +
                                                              + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-Util-FormatterUtil.html b/classes/HeimrichHannot-UtilsBundle-File-FileStorage.html similarity index 56% rename from classes/HeimrichHannot-UtilsBundle-Util-FormatterUtil.html rename to classes/HeimrichHannot-UtilsBundle-File-FileStorage.html index 94e5ac03..732f654d 100644 --- a/classes/HeimrichHannot-UtilsBundle-Util-FormatterUtil.html +++ b/classes/HeimrichHannot-UtilsBundle-File-FileStorage.html @@ -86,12 +86,12 @@

                                                              Fil

                                                              - FormatterUtil + FileStorage
                                                              @@ -105,9 +105,9 @@

                                                              @@ -127,82 +127,82 @@

                                                              -
                                                              - $framework +
                                                              + $defaultFileExtension -  : ContaoFramework +  : string
                                                              -
                                                              - $insertTagParser +
                                                              + $generator -  : InsertTagParser +  : SlugGenerator
                                                              -
                                                              - $kernelBundles +
                                                              + $relativeStoragePath -  : array<string|int, mixed> +  : string
                                                              -
                                                              - $utils +
                                                              + $rootPath -  : Utils +  : string
                                                              - __construct() + __construct()  : mixed
                                                              -
                                                              +
                                                              FileCache constructor.
                                                              - formatDcaFieldValue() + get() -  : mixed +  : string|null
                                                              -
                                                              Makes a DCA field value human-readable.
                                                              +
                                                              Get the storage path for given identifier. Caution: Identifier will be normalized!
                                                              -
                                                              - formatArray() +
                                                              + set()  : string
                                                              -
                                                              +
                                                              Persist a file in the file storage, uniquely references by an identifier. Caution: identifier will be normalized!
                                                              -
                                                              - formatInputUnitField() +
                                                              + createAbsoluteFilePath()  : string
                                                              -
                                                              +
                                                              Return the absoulte path to the file.
                                                              -
                                                              - formatMultiColumnField() +
                                                              + createFilename()  : string
                                                              -
                                                              +
                                                              Create the filename out of key and file extension.
                                                              -
                                                              - getTagModel() +
                                                              + createRelativeFilePath() -  : Adapter<string|int, Model>|Adapter<string|int, TagModel>|Model|TagModel|null +  : string
                                                              -
                                                              +
                                                              Return the relative path to the file.
                                                              -
                                                              - isMultiColumnsActive() +
                                                              + normalizeKey() -  : bool +  : string
                                                              -
                                                              +
                                                              Normalize the key.
                                                              @@ -214,39 +214,37 @@

                                                              Properties - +

                                                              -

                                                              - $framework - +

                                                              + $defaultFileExtension +

                                                              - protected - ContaoFramework - $framework + private + string + $defaultFileExtension -
                                                              - -
                                                              - + +
                                                              @@ -254,33 +252,31 @@

                                                              class=" phpdocumentor-element -property - -protected + -private " > -

                                                              - $insertTagParser - +

                                                              + $generator +

                                                              - protected - InsertTagParser - $insertTagParser + private + SlugGenerator + $generator -
                                                              - -
                                                              - + +

                                                              @@ -288,33 +284,31 @@

                                                              class=" phpdocumentor-element -property - -protected + -private " > -

                                                              - $kernelBundles - +

                                                              + $relativeStoragePath +

                                                              - protected - array<string|int, mixed> - $kernelBundles + private + string + $relativeStoragePath -
                                                              - -
                                                              - + + @@ -322,33 +316,31 @@

                                                              class=" phpdocumentor-element -property - -protected + -private " > -

                                                              - $utils - +

                                                              + $rootPath +

                                                              - protected - Utils - $utils + private + string + $rootPath -
                                                              - -
                                                              - + + @@ -357,7 +349,7 @@

                                                              Methods - +

                                                              >

                                                              __construct() - +

                                                              - +

                                                              FileCache constructor.

                                                              + public - __construct(ContaoFramework $framework, InsertTagParser $insertTagParser, Utils $utils, array<string|int, mixed> $kernelBundles) : mixed - -
                                                              + __construct(string $rootPath, string $storagePath[, string $defaultFileExtension = '' ]) : mixed +
                                                              Parameters
                                                              - $framework - : ContaoFramework -
                                                              -
                                                              -
                                                              - -
                                                              -
                                                              - $insertTagParser - : InsertTagParser + $rootPath + : string
                                                              -
                                                              +

                                                              The project root path

                                                              +
                                                              - $utils - : Utils + $storagePath + : string
                                                              -
                                                              +

                                                              The storage path relative to the project root path

                                                              +
                                                              - $kernelBundles - : array<string|int, mixed> -
                                                              + $defaultFileExtension + : string + = ''
                                                              -
                                                              +

                                                              The default file extension of the files to store

                                                              +
                                                              @@ -433,73 +420,80 @@
                                                              Return values
                                                              -public " > -

                                                              - formatDcaFieldValue() - +

                                                              + get() +

                                                              -

                                                              Makes a DCA field value human-readable.

                                                              +

                                                              Get the storage path for given identifier. Caution: Identifier will be normalized!

                                                              public - formatDcaFieldValue(DataContainer $dc, string $field, array<string|int, mixed>|string|null $value[, FormatDcaFieldValueOptions|null $settings = null ]) : mixed + get(string $key[, string|null $default = null ][, array<string|int, mixed> $options = [] ]) : string|null -

                                                              This succeeds https://github.com/heimrichhannot/contao-utils-bundle/blob/ee122d2e267a60aa3200ce0f40d92c22028988e8/src/Form/FormUtil.php#L99 from Utils v2.

                                                              +

                                                              Options:

                                                              +
                                                                +
                                                              • fileExtension: (string) Override the default file extension.
                                                              • +
                                                              Parameters
                                                              - $dc - : DataContainer -
                                                              -
                                                              -

                                                              The data container whose table to use and options-callback to evaluate.

                                                              -
                                                              - -
                                                              -
                                                              - $field + $key : string
                                                              -

                                                              The DCA field name.

                                                              +

                                                              the key for the item in store

                                                              - $value - : array<string|int, mixed>|string|null -
                                                              + $default + : string|null + = null
                                                              -

                                                              The value to format. If an array is passed, the values will be evaluated -recursively.

                                                              +

                                                              Default value to return if key does not exist

                                                              - $settings - : FormatDcaFieldValueOptions|null - = null
                                                              + $options + : array<string|int, mixed> + = []
                                                              -

                                                              Additional settings.

                                                              +

                                                              Additional options

                                                              +
                                                              + Tags + +
                                                              +
                                                              +
                                                              + throws +
                                                              +
                                                              + Exception + + +
                                                              +
                                                              Return values
                                                              - mixed + string|null — -

                                                              The formatted value.

                                                              +

                                                              return the path of the item from the storage, or $default if not found

                                                              @@ -507,46 +501,61 @@
                                                              Return values
                                                              -

                                                              - formatArray() - +

                                                              + set() +

                                                              - +

                                                              Persist a file in the file storage, uniquely references by an identifier. Caution: identifier will be normalized!

                                                              + - private - formatArray(array<string|int, mixed> $values, FormatDcaFieldValueOptions $settings, callable $callback) : string + public + set(string $identifier, callable|string $value[, array<string|int, mixed> $options = [] ]) : string + +

                                                              Value:

                                                              +
                                                                +
                                                              • callable: Gets a FileStorageCallback object as parameter and must return bool (true on success, false otherwise).
                                                              • +
                                                              • string: Will be directly written to the file.
                                                              • +
                                                              +

                                                              Options:

                                                              +
                                                                +
                                                              • fileExtension: (string) Override the default file extension.
                                                              • +
                                                              +
                                                              -
                                                              Parameters
                                                              - $values - : array<string|int, mixed> + $identifier + : string
                                                              - +

                                                              the key of the item to store

                                                              +
                                                              +
                                                              - $settings - : FormatDcaFieldValueOptions + $value + : callable|string
                                                              - +

                                                              The value of the item to store. Must be a callable or string.

                                                              +
                                                              +
                                                              - $callback - : callable -
                                                              + $options + : array<string|int, mixed> + = []
                                                              @@ -554,49 +563,69 @@
                                                              Parameters
                                                              +
                                                              + Tags + +
                                                              +
                                                              +
                                                              + throws +
                                                              +
                                                              + InvalidArgumentException + +

                                                              Is thrown when value is neither callable or string

                                                              +
                                                              + +
                                                              +
                                                              + throws +
                                                              +
                                                              + UnexpectedValueException + +

                                                              is thrown if callback not returning a bool

                                                              +
                                                              + +
                                                              +
                                                              Return values
                                                              string — - +

                                                              return the path of the item from the storage

                                                              +
                                                              +
                                                              -

                                                              - formatInputUnitField() - +

                                                              + createAbsoluteFilePath() +

                                                              - - - private - formatInputUnitField(array<string|int, mixed>|string|null $values, string $arraySeparator) : string +

                                                              Return the absoulte path to the file.

                                                              -
                                                              + + protected + createAbsoluteFilePath(string $filename) : string +
                                                              Parameters
                                                              - $values - : array<string|int, mixed>|string|null -
                                                              -
                                                              -
                                                              - -
                                                              -
                                                              - $arraySeparator + $filename : string
                                                              @@ -616,47 +645,42 @@
                                                              Return values
                                                              -

                                                              - formatMultiColumnField() - +

                                                              + createFilename() +

                                                              - +

                                                              Create the filename out of key and file extension.

                                                              + - private - formatMultiColumnField(array<string|int, mixed> $values, array<string|int, mixed> $data[, callable $callback = null ]) : string + protected + createFilename(string $key, array<string|int, mixed> $options) : string
                                                              Parameters
                                                              - $values - : array<string|int, mixed> + $key + : string
                                                              - +
                                                              +
                                                              - $data + $options : array<string|int, mixed>
                                                              - -
                                                              -
                                                              - $callback - : callable - = null
                                                              -
                                                              @@ -673,55 +697,43 @@
                                                              Return values
                                                              -

                                                              - getTagModel() - +

                                                              + createRelativeFilePath() +

                                                              - +

                                                              Return the relative path to the file.

                                                              + - private - getTagModel() : Adapter<string|int, Model>|Adapter<string|int, TagModel>|Model|TagModel|null + protected + createRelativeFilePath(string $filename) : string - - -
                                                              - Tags - -
                                                              -
                                                              -
                                                              - noinspection -
                                                              -
                                                              - -

                                                              PhpMixedReturnTypeCanBeReducedInspection

                                                              -
                                                              +
                                                              Parameters
                                                              +
                                                              +
                                                              + $filename + : string +
                                                              +
                                                              +
                                                              -
                                                              -
                                                              - phpstan-ignore-next-line -
                                                              -
                                                              - -

                                                              For PHPStan, this method returns an object of an unknown class.

                                                              -
                                                              +
                                                              +
                                                              -
                                                              -
                                                              +
                                                              Return values
                                                              - Adapter<string|int, Model>|Adapter<string|int, TagModel>|Model|TagModel|null + string — @@ -729,32 +741,43 @@
                                                              Return values
                                                              -

                                                              - isMultiColumnsActive() - +

                                                              + normalizeKey() +

                                                              - - - private - isMultiColumnsActive() : bool +

                                                              Normalize the key.

                                                              -
                                                              + + protected + normalizeKey(string $key) : string +
                                                              Parameters
                                                              +
                                                              +
                                                              + $key + : string +
                                                              +
                                                              +
                                                              + +
                                                              +
                                                              +
                                                              Return values
                                                              - bool + string — @@ -837,7 +860,7 @@

                                                              Search results

                                                              - + diff --git a/classes/HeimrichHannot-UtilsBundle-Util-HtmlUtil-GenerateDataAttributesStringOptions.html b/classes/HeimrichHannot-UtilsBundle-File-FileStorageCallback.html similarity index 52% rename from classes/HeimrichHannot-UtilsBundle-Util-HtmlUtil-GenerateDataAttributesStringOptions.html rename to classes/HeimrichHannot-UtilsBundle-File-FileStorageCallback.html index 899c5ae2..b83de5a3 100644 --- a/classes/HeimrichHannot-UtilsBundle-Util-HtmlUtil-GenerateDataAttributesStringOptions.html +++ b/classes/HeimrichHannot-UtilsBundle-File-FileStorageCallback.html @@ -86,13 +86,12 @@

                                                              Fil

                                                              - GenerateDataAttributesStringOptions + FileStorageCallback
                                                              @@ -106,9 +105,9 @@

                                                              @@ -129,72 +128,93 @@

                                                              - $arrayHandling + $absoluteFilePath -  : GenerateDataAttributesStringArrayHandling +  : string
                                                              - $normalizeKeys + $filename -  : bool +  : string
                                                              - $xhtml + $identifier -  : bool +  : string
                                                              -
                                                              - create() +
                                                              + $relativeFilePath + +  : string +
                                                              +
                                                              + +
                                                              + $relativeStoragePath -  : self +  : string
                                                              +
                                                              + $rootPath + +  : string +
                                                              +
                                                              + +
                                                              + __construct() + +  : mixed +
                                                              +
                                                              FileStorageCallback constructor.
                                                              +
                                                              - getArrayHandling() + getAbsoluteFilePath() -  : GenerateDataAttributesStringArrayHandling +  : string
                                                              - isNormalizeKeys() + getFilename() -  : bool +  : string
                                                              - isXhtml() + getIdentifier() -  : bool +  : string
                                                              - setArrayHandling() + getRelativeFilePath() -  : GenerateDataAttributesStringOptions +  : string
                                                              - setNormalizeKeys() + getRelativeStoragePath() -  : GenerateDataAttributesStringOptions +  : string
                                                              -
                                                              Array keys are normalized to lowercase dash-cased strings (e.g. Foo Bar_player is transformed to foo-bar-player)
                                                              +
                                                              - setXhtml() + getRootPath() -  : GenerateDataAttributesStringOptions +  : string
                                                              @@ -208,7 +228,7 @@

                                                              Properties - +

                                                              -private " > -

                                                              - $arrayHandling - +

                                                              + $absoluteFilePath +

                                                              private - GenerateDataAttributesStringArrayHandling - $arrayHandling - = HeimrichHannotUtilsBundleUtilHtmlUtilGenerateDataAttributesStringArrayHandling::REDUCE + string + $absoluteFilePath + -
                                                              + + + -
                                                              +
                                                              + +
                                                              +

                                                              + $relativeFilePath + + + +

                                                              + + + private + string + $relativeFilePath + + + + +
                                                              +
                                                              @@ -317,37 +427,88 @@

                                                              Methods - +

                                                              -

                                                              - create() - +

                                                              + __construct() +

                                                              - +

                                                              FileStorageCallback constructor.

                                                              + public - static create() : self - -
                                                              + __construct(string $identifier, string $filename, string $relativeFilePath, string $absoluteFilePath, string $rootPath, string $relativeStoragePath) : mixed +
                                                              Parameters
                                                              +
                                                              +
                                                              + $identifier + : string +
                                                              +
                                                              +
                                                              + +
                                                              +
                                                              + $filename + : string +
                                                              +
                                                              +
                                                              + +
                                                              +
                                                              + $relativeFilePath + : string +
                                                              +
                                                              +
                                                              + +
                                                              +
                                                              + $absoluteFilePath + : string +
                                                              +
                                                              +
                                                              + +
                                                              +
                                                              + $rootPath + : string +
                                                              +
                                                              +
                                                              + +
                                                              +
                                                              + $relativeStoragePath + : string +
                                                              +
                                                              +
                                                              + +
                                                              +
                                                              +
                                                              Return values
                                                              - self + mixed — @@ -358,21 +519,21 @@
                                                              Return values
                                                              -public " > -

                                                              - getArrayHandling() - +

                                                              + getAbsoluteFilePath() +

                                                              public - getArrayHandling() : GenerateDataAttributesStringArrayHandling + getAbsoluteFilePath() : string
                                                              @@ -380,7 +541,7 @@

                                                              Return values
                                                              - GenerateDataAttributesStringArrayHandling + string — @@ -391,21 +552,21 @@
                                                              Return values
                                                              -public " > -

                                                              - isNormalizeKeys() - +

                                                              + getFilename() +

                                                              public - isNormalizeKeys() : bool + getFilename() : string
                                                              @@ -413,7 +574,7 @@

                                                              Return values
                                                              - bool + string — @@ -424,21 +585,21 @@
                                                              Return values
                                                              -public " > -

                                                              - isXhtml() - +

                                                              + getIdentifier() +

                                                              public - isXhtml() : bool + getIdentifier() : string
                                                              @@ -446,7 +607,7 @@

                                                              Return values
                                                              - bool + string — @@ -457,40 +618,29 @@
                                                              Return values
                                                              -public " > -

                                                              - setArrayHandling() - +

                                                              + getRelativeFilePath() +

                                                              public - setArrayHandling(GenerateDataAttributesStringArrayHandling $arrayHandling) : GenerateDataAttributesStringOptions + getRelativeFilePath() : string
                                                              -
                                                              Parameters
                                                              -
                                                              -
                                                              - $arrayHandling - : GenerateDataAttributesStringArrayHandling -
                                                              -
                                                              -
                                                              - -
                                                              -
                                                              - +
                                                              Return values
                                                              - GenerateDataAttributesStringOptions + string — @@ -501,40 +651,29 @@
                                                              Return values
                                                              -public " > -

                                                              - setNormalizeKeys() - +

                                                              + getRelativeStoragePath() +

                                                              -

                                                              Array keys are normalized to lowercase dash-cased strings (e.g. Foo Bar_player is transformed to foo-bar-player)

                                                              - + public - setNormalizeKeys(bool $normalizeKeys) : GenerateDataAttributesStringOptions + getRelativeStoragePath() : string - -
                                                              Parameters
                                                              -
                                                              -
                                                              - $normalizeKeys - : bool -
                                                              -
                                                              -
                                                              - -
                                                              -
                                                              +
                                                              +
                                                              Return values
                                                              - GenerateDataAttributesStringOptions + string — @@ -545,40 +684,29 @@
                                                              Return values
                                                              -public " > -

                                                              - setXhtml() - +

                                                              + getRootPath() +

                                                              public - setXhtml(bool $xhtml) : GenerateDataAttributesStringOptions + getRootPath() : string
                                                              -
                                                              Parameters
                                                              -
                                                              -
                                                              - $xhtml - : bool -
                                                              -
                                                              -
                                                              - -
                                                              -
                                                              - +
                                                              Return values
                                                              - GenerateDataAttributesStringOptions + string — @@ -661,7 +789,7 @@

                                                              Search results

                                                              - + diff --git a/classes/HeimrichHannot-UtilsBundle-File-FileStorageUtil.html b/classes/HeimrichHannot-UtilsBundle-File-FileStorageUtil.html new file mode 100644 index 00000000..4a62b795 --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-File-FileStorageUtil.html @@ -0,0 +1,392 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                              +

                                                              Contao Utils Bundle

                                                              + + + + + +
                                                              + +
                                                              +
                                                              + + + + +
                                                              + + +
                                                              +

                                                              + FileStorageUtil + + +
                                                              + in package + +
                                                              + + +

                                                              + + + + +
                                                              + + + + + + + + +

                                                              + Table of Contents + +

                                                              + +
                                                              +
                                                              + $projectDir + +  : string +
                                                              +
                                                              + +
                                                              + __construct() + +  : mixed +
                                                              +
                                                              FileStorageUtil constructor.
                                                              + +
                                                              + createFileStorage() + +  : FileStorage +
                                                              +
                                                              Returns a new FileStorage instance.
                                                              + +
                                                              + + + + + + +
                                                              +

                                                              + Properties + +

                                                              +
                                                              +

                                                              + $projectDir + + + +

                                                              + + + + + private + string + $projectDir + + + + + + +
                                                              +
                                                              + +
                                                              +

                                                              + Methods + +

                                                              +
                                                              +

                                                              + __construct() + +

                                                              + + +

                                                              FileStorageUtil constructor.

                                                              + + + public + __construct(string $projectDir) : mixed + + +
                                                              Parameters
                                                              +
                                                              +
                                                              + $projectDir + : string +
                                                              +
                                                              +
                                                              + +
                                                              +
                                                              + + + +
                                                              Return values
                                                              + mixed + — + + +
                                                              +
                                                              +

                                                              + createFileStorage() + +

                                                              + + +

                                                              Returns a new FileStorage instance.

                                                              + + + public + createFileStorage(string $storagePath[, string $fileExtension = '' ]) : FileStorage + +

                                                              See PdfPreview for example usage.

                                                              +
                                                              + +
                                                              Parameters
                                                              +
                                                              +
                                                              + $storagePath + : string +
                                                              +
                                                              +

                                                              The path where to store the files relative to the project dir

                                                              +
                                                              + +
                                                              +
                                                              + $fileExtension + : string + = ''
                                                              +
                                                              +

                                                              The default file extension of the stored files. E.g. jpg, txt, ...

                                                              +
                                                              + +
                                                              +
                                                              + + + +
                                                              Return values
                                                              + FileStorage + — + + +
                                                              +
                                                              + + + + +
                                                              +
                                                              +
                                                              +
                                                              +

                                                              Search results

                                                              + +
                                                              +
                                                              +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                + + +
                                                                + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-File-FileUtil.html b/classes/HeimrichHannot-UtilsBundle-File-FileUtil.html new file mode 100644 index 00000000..f230577b --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-File-FileUtil.html @@ -0,0 +1,1760 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                +

                                                                Contao Utils Bundle

                                                                + + + + + +
                                                                + +
                                                                +
                                                                + + + + +
                                                                + + +
                                                                +

                                                                + FileUtil + + +
                                                                + in package + +
                                                                + + +

                                                                + + + + +
                                                                + + + + + + + + +

                                                                + Table of Contents + +

                                                                + +
                                                                +
                                                                + FILE_UTIL_CONVERT_FILE_TYPE + +  = 'png' +
                                                                +
                                                                + +
                                                                + $framework + +  : ContaoFramework +
                                                                +
                                                                + +
                                                                + $container + +  : ContainerInterface +
                                                                +
                                                                + +
                                                                + __construct() + +  : mixed +
                                                                +
                                                                + +
                                                                + addUniqueIdToFilename() + +  : string +
                                                                +
                                                                Add a unique identifier to a file name.
                                                                + +
                                                                + formatSizeUnits() + +  : mixed +
                                                                +
                                                                + +
                                                                + getExtensionByMimeType() + +  : mixed +
                                                                +
                                                                + +
                                                                + getExtensionFromFileContent() + +  : mixed +
                                                                +
                                                                + +
                                                                + getFileContentFromUuid() + +  : mixed +
                                                                +
                                                                + +
                                                                + getFileExtension() + +  : mixed +
                                                                +
                                                                + +
                                                                + getFileFromUuid() + +  : File|null +
                                                                +
                                                                + +
                                                                + getFileIdFromPath() + +  : mixed +
                                                                +
                                                                + +
                                                                + getFileLineCount() + +  : int|string +
                                                                +
                                                                + +
                                                                + getFileList() + +  : array<string|int, mixed> +
                                                                +
                                                                Returns the file list for a given directory.
                                                                + +
                                                                + getFolderContent() + +  : mixed +
                                                                +
                                                                + +
                                                                + getFolderFromDca() + +  : mixed|null +
                                                                +
                                                                Get real folder from datacontainer attribute.
                                                                + +
                                                                + getFolderFromUuid() + +  : bool|Folder +
                                                                +
                                                                + +
                                                                + getParentFoldersByUuid() + +  : mixed +
                                                                +
                                                                + +
                                                                + getPathFromUuid() + +  : string|null +
                                                                +
                                                                + +
                                                                + getPathWithoutFilename() + +  : mixed +
                                                                +
                                                                + +
                                                                + getPreviewFromPdf() + +  : FilesModel +
                                                                +
                                                                convert pdf to png and return a preview file +delete the other png files.
                                                                + +
                                                                + getUniqueFileNameWithinTarget() + +  : string|false +
                                                                +
                                                                Get a unique filename within given target folder, remove uniqid() suffix from file (optional, add $prefix) and append file count by name to +file if file with same name already exists in target folder.
                                                                + +
                                                                + retrieveFileContent() + +  : bool|mixed +
                                                                +
                                                                Tries to get the binary content from a file in various sources and returns it if possible.
                                                                + +
                                                                + sanitizeFileName() + +  : string +
                                                                +
                                                                Sanitize filename and removes "id-" prefix generated by contao standardize method.
                                                                + +
                                                                + sendTextAsFileToBrowser() + +  : mixed +
                                                                +
                                                                + +
                                                                + + + + +
                                                                +

                                                                + Constants + +

                                                                +
                                                                +

                                                                + FILE_UTIL_CONVERT_FILE_TYPE + +

                                                                + + + + + + public + mixed + FILE_UTIL_CONVERT_FILE_TYPE + = 'png' + + + +
                                                                + +
                                                                + + + +
                                                                +
                                                                + + +
                                                                +

                                                                + Properties + +

                                                                +
                                                                +

                                                                + $framework + + + +

                                                                + + + + + protected + ContaoFramework + $framework + + + + + + +
                                                                +
                                                                +

                                                                + $container + + + +

                                                                + + + + + private + ContainerInterface + $container + + + + + + +
                                                                +
                                                                + +
                                                                +

                                                                + Methods + +

                                                                +
                                                                +

                                                                + __construct() + +

                                                                + + + + + public + __construct(ContainerInterface $container) : mixed + +
                                                                + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $container + : ContainerInterface +
                                                                +
                                                                +
                                                                + +
                                                                +
                                                                + + + +
                                                                Return values
                                                                + mixed + — + + +
                                                                +
                                                                +

                                                                + addUniqueIdToFilename() + +

                                                                + + +

                                                                Add a unique identifier to a file name.

                                                                + + + public + addUniqueIdToFilename(string $fileName[, string $prefix = null ][, bool $moreEntropy = true ]) : string + + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $fileName + : string +
                                                                +
                                                                +

                                                                The file name, can be with or without path

                                                                +
                                                                + +
                                                                +
                                                                + $prefix + : string + = null
                                                                +
                                                                +

                                                                add a prefix to the unique identifier, with an empty prefix, the returned string will be 13 characters long

                                                                +
                                                                + +
                                                                +
                                                                + $moreEntropy + : bool + = true
                                                                +
                                                                +

                                                                if set to TRUE, will add additional entropy (using the combined linear congruential generator) at the end of the +return value, which increases the likelihood that the result will be unique

                                                                +
                                                                + +
                                                                +
                                                                + + + +
                                                                Return values
                                                                + string + — +

                                                                Filename with timestamp based unique identifier

                                                                +
                                                                + + +
                                                                +
                                                                +

                                                                + formatSizeUnits() + +

                                                                + + + + + public + formatSizeUnits(int $bytes[, mixed $keepTogether = false ]) : mixed + +
                                                                + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $bytes + : int +
                                                                +
                                                                +
                                                                + +
                                                                +
                                                                + $keepTogether + : mixed + = false
                                                                +
                                                                +
                                                                + +
                                                                +
                                                                + + + +
                                                                Return values
                                                                + mixed + — + + +
                                                                +
                                                                +

                                                                + getExtensionByMimeType() + +

                                                                + + + + + public + getExtensionByMimeType(mixed $mimeType) : mixed + +
                                                                + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $mimeType + : mixed +
                                                                +
                                                                +
                                                                + +
                                                                +
                                                                + + + +
                                                                Return values
                                                                + mixed + — + + +
                                                                +
                                                                +

                                                                + getExtensionFromFileContent() + +

                                                                + + + + + public + getExtensionFromFileContent(mixed $content) : mixed + +
                                                                + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $content + : mixed +
                                                                +
                                                                +
                                                                + +
                                                                +
                                                                + + + +
                                                                Return values
                                                                + mixed + — + + +
                                                                +
                                                                +

                                                                + getFileContentFromUuid() + +

                                                                + + + + + public + getFileContentFromUuid(mixed $uuid) : mixed + +
                                                                + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $uuid + : mixed +
                                                                +
                                                                +
                                                                + +
                                                                +
                                                                + + + +
                                                                Return values
                                                                + mixed + — + + +
                                                                +
                                                                +

                                                                + getFileExtension() + +

                                                                + + + + + public + getFileExtension(mixed $path) : mixed + +
                                                                + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $path + : mixed +
                                                                +
                                                                +
                                                                + +
                                                                +
                                                                + + + +
                                                                Return values
                                                                + mixed + — + + +
                                                                +
                                                                +

                                                                + getFileFromUuid() + +

                                                                + + + + + public + getFileFromUuid( $uuid) : File|null + + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $uuid + : +
                                                                +
                                                                + +
                                                                +
                                                                + + +
                                                                + Tags + +
                                                                +
                                                                +
                                                                + throws +
                                                                +
                                                                + Exception + + +
                                                                +
                                                                + +
                                                                Return values
                                                                + File|null + — +

                                                                Return the file object

                                                                +
                                                                + + +
                                                                +
                                                                +

                                                                + getFileIdFromPath() + +

                                                                + + + + + public + getFileIdFromPath(mixed $path) : mixed + +
                                                                + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $path + : mixed +
                                                                +
                                                                +
                                                                + +
                                                                +
                                                                + + + +
                                                                Return values
                                                                + mixed + — + + +
                                                                +
                                                                +

                                                                + getFileLineCount() + +

                                                                + + + + + public + getFileLineCount( $file) : int|string + + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $file + : +
                                                                +
                                                                + +
                                                                +
                                                                + + + +
                                                                Return values
                                                                + int|string + — + + +
                                                                +
                                                                +

                                                                + getFileList() + +

                                                                + + +

                                                                Returns the file list for a given directory.

                                                                + + + public + getFileList(string $dir, string $baseUrl[, string $protectedBaseUrl = null ]) : array<string|int, mixed> + + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $dir + : string +
                                                                +
                                                                +
                                                                  +
                                                                • the absolute local path to the directory (e.g. /dir/mydir)
                                                                • +
                                                                +
                                                                + +
                                                                +
                                                                + $baseUrl + : string +
                                                                +
                                                                +
                                                                  +
                                                                • the relative uri (e.g. /tl_files/mydir)
                                                                • +
                                                                +
                                                                + +
                                                                +
                                                                + $protectedBaseUrl + : string + = null
                                                                +
                                                                +
                                                                  +
                                                                • domain + request uri -> absUrl will be domain + request uri + ?file=$baseUrl/filename.ext
                                                                • +
                                                                +
                                                                + +
                                                                +
                                                                + + + +
                                                                Return values
                                                                + array<string|int, mixed> + — +

                                                                file list containing file objects

                                                                +
                                                                + + +
                                                                +
                                                                +

                                                                + getFolderContent() + +

                                                                + + + + + public + getFolderContent(mixed $parentIds, mixed $table[, mixed $options = [] ][, mixed $return = [] ]) : mixed + +
                                                                + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $parentIds + : mixed +
                                                                +
                                                                +
                                                                + +
                                                                +
                                                                + $table + : mixed +
                                                                +
                                                                +
                                                                + +
                                                                +
                                                                + $options + : mixed + = []
                                                                +
                                                                +
                                                                + +
                                                                +
                                                                + $return + : mixed + = []
                                                                +
                                                                +
                                                                + +
                                                                +
                                                                + + + +
                                                                Return values
                                                                + mixed + — + + +
                                                                +
                                                                +

                                                                + getFolderFromDca() + +

                                                                + + +

                                                                Get real folder from datacontainer attribute.

                                                                + + + public + getFolderFromDca(mixed $folder[, DataContainer|null $dc = null ]) : mixed|null + + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $folder + : mixed +
                                                                +
                                                                +

                                                                The folder as uuid, function, callback array('CLASS', 'method') or string (files/...)

                                                                +
                                                                + +
                                                                +
                                                                + $dc + : DataContainer|null + = null
                                                                +
                                                                +

                                                                Optional \DataContainer, required for function and callback

                                                                +
                                                                + +
                                                                +
                                                                + + +
                                                                + Tags + +
                                                                +
                                                                +
                                                                + throws +
                                                                +
                                                                + Exception + +

                                                                If ../ is part of the path

                                                                +
                                                                + +
                                                                +
                                                                + +
                                                                Return values
                                                                + mixed|null + — +

                                                                The folder path or null

                                                                +
                                                                + + +
                                                                +
                                                                +

                                                                + getFolderFromUuid() + +

                                                                + + + + + public + getFolderFromUuid( $uuid) : bool|Folder + + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $uuid + : +
                                                                +
                                                                + +
                                                                +
                                                                + + +
                                                                + Tags + +
                                                                +
                                                                +
                                                                + throws +
                                                                +
                                                                + Exception + + +
                                                                +
                                                                + +
                                                                Return values
                                                                + bool|Folder + — +

                                                                Return the folder object

                                                                +
                                                                + + +
                                                                +
                                                                +

                                                                + getParentFoldersByUuid() + +

                                                                + + + + + public + getParentFoldersByUuid(mixed $uuid[, array<string|int, mixed> $config = [] ]) : mixed + +
                                                                + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $uuid + : mixed +
                                                                +
                                                                +
                                                                + +
                                                                +
                                                                + $config + : array<string|int, mixed> + = []
                                                                +
                                                                +
                                                                + +
                                                                +
                                                                + + + +
                                                                Return values
                                                                + mixed + — + + +
                                                                +
                                                                +

                                                                + getPathFromUuid() + +

                                                                + + + + + public + getPathFromUuid( $uuid[, bool $checkIfExists = true ]) : string|null + + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $uuid + : +
                                                                +
                                                                + +
                                                                +
                                                                + $checkIfExists + : bool + = true
                                                                +
                                                                + +
                                                                +
                                                                + + +
                                                                + Tags + +
                                                                +
                                                                +
                                                                + deprecated +
                                                                +
                                                                + +

                                                                Use Utils::file instead

                                                                +
                                                                + +
                                                                +
                                                                + codeCoverageIgnore +
                                                                +
                                                                + + +
                                                                +
                                                                + +
                                                                Return values
                                                                + string|null + — +

                                                                Return the path of the file, or null if not exists

                                                                +
                                                                + + +
                                                                +
                                                                +

                                                                + getPathWithoutFilename() + +

                                                                + + + + + public + getPathWithoutFilename(mixed $pathToFile) : mixed + +
                                                                + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $pathToFile + : mixed +
                                                                +
                                                                +
                                                                + +
                                                                +
                                                                + + + +
                                                                Return values
                                                                + mixed + — + + +
                                                                +
                                                                +

                                                                + getPreviewFromPdf() + +

                                                                + + +

                                                                convert pdf to png and return a preview file +delete the other png files.

                                                                + + + public + getPreviewFromPdf(FilesModel $file, int $page) : FilesModel + + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $file + : FilesModel +
                                                                +
                                                                +
                                                                + +
                                                                +
                                                                + $page + : int +
                                                                +
                                                                +
                                                                + +
                                                                +
                                                                + + +
                                                                + Tags + +
                                                                +
                                                                +
                                                                + deprecated +
                                                                +
                                                                + +

                                                                Dublicate to PdfPreview util

                                                                +
                                                                + +
                                                                +
                                                                + +
                                                                Return values
                                                                + FilesModel + — + + +
                                                                +
                                                                +

                                                                + getUniqueFileNameWithinTarget() + +

                                                                + + +

                                                                Get a unique filename within given target folder, remove uniqid() suffix from file (optional, add $prefix) and append file count by name to +file if file with same name already exists in target folder.

                                                                + + + public + getUniqueFileNameWithinTarget(string $target[, string $prefix = null ],  $i) : string|false + + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $target + : string +
                                                                +
                                                                +

                                                                The target file path

                                                                +
                                                                + +
                                                                +
                                                                + $prefix + : string + = null
                                                                +
                                                                +

                                                                A uniqid prefix from the given target file, that was added to the file before and should be removed again

                                                                +
                                                                + +
                                                                +
                                                                + $i + : +
                                                                +
                                                                +

                                                                integer Internal counter for recursion usage or if you want to add the number to the file

                                                                +
                                                                + +
                                                                +
                                                                + + +
                                                                + Tags + +
                                                                +
                                                                +
                                                                + throws +
                                                                +
                                                                + Exception + + +
                                                                +
                                                                + +
                                                                Return values
                                                                + string|false + — +

                                                                The filename with the target folder and unique id or false if something went wrong (e.g. target does not exist)

                                                                +
                                                                + + +
                                                                +
                                                                +

                                                                + retrieveFileContent() + +

                                                                + + +

                                                                Tries to get the binary content from a file in various sources and returns it if possible.

                                                                + + + public + retrieveFileContent( $source[, mixed $silent = true ]) : bool|mixed + +

                                                                Possible sources:

                                                                +
                                                                  +
                                                                • url
                                                                • +
                                                                • contao uuid
                                                                • +
                                                                • string is already a binary file content
                                                                • +
                                                                +
                                                                + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $source + : +
                                                                +
                                                                + +
                                                                +
                                                                + $silent + : mixed + = true
                                                                +
                                                                +
                                                                + +
                                                                +
                                                                + + + +
                                                                Return values
                                                                + bool|mixed + — +

                                                                Returns false if the file content could not be retrieved

                                                                +
                                                                + + +
                                                                +
                                                                +

                                                                + sanitizeFileName() + +

                                                                + + +

                                                                Sanitize filename and removes "id-" prefix generated by contao standardize method.

                                                                + + + public + sanitizeFileName(string $fileName, int $maxCount[, bool $preserveUppercase = false ]) : string + + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $fileName + : string +
                                                                +
                                                                +

                                                                The file name, can be with or without path

                                                                +
                                                                + +
                                                                +
                                                                + $maxCount + : int +
                                                                +
                                                                +

                                                                Max filename length

                                                                +
                                                                + +
                                                                +
                                                                + $preserveUppercase + : bool + = false
                                                                +
                                                                +

                                                                Set to true if you want to lower case the file name

                                                                +
                                                                + +
                                                                +
                                                                + + + +
                                                                Return values
                                                                + string + — +

                                                                The sanitized filename

                                                                +
                                                                + + +
                                                                +
                                                                +

                                                                + sendTextAsFileToBrowser() + +

                                                                + + + + + public + sendTextAsFileToBrowser(mixed $content, mixed $fileName) : mixed + +
                                                                + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $content + : mixed +
                                                                +
                                                                +
                                                                + +
                                                                +
                                                                + $fileName + : mixed +
                                                                +
                                                                +
                                                                + +
                                                                +
                                                                + + + +
                                                                Return values
                                                                + mixed + — + + +
                                                                +
                                                                + + + + +
                                                                +
                                                                +
                                                                +
                                                                +

                                                                Search results

                                                                + +
                                                                +
                                                                +
                                                                  +
                                                                  +
                                                                  +
                                                                  +
                                                                  +
                                                                  + + +
                                                                  + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-File-FolderUtil.html b/classes/HeimrichHannot-UtilsBundle-File-FolderUtil.html new file mode 100644 index 00000000..ac4ad34f --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-File-FolderUtil.html @@ -0,0 +1,488 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                  +

                                                                  Contao Utils Bundle

                                                                  + + + + + +
                                                                  + +
                                                                  +
                                                                  + + + + +
                                                                  + + +
                                                                  +

                                                                  + FolderUtil + + +
                                                                  + in package + +
                                                                  + + +

                                                                  + + + + +
                                                                  + + + + + + + + +

                                                                  + Table of Contents + +

                                                                  + +
                                                                  +
                                                                  + $kernel + +  : KernelInterface +
                                                                  +
                                                                  + +
                                                                  + $symlinksCommand + +  : SymlinksCommand +
                                                                  +
                                                                  + +
                                                                  + $webDir + +  : string +
                                                                  +
                                                                  + +
                                                                  + __construct() + +  : mixed +
                                                                  +
                                                                  FolderUtil constructor.
                                                                  + +
                                                                  + createPublicFolder() + +  : void +
                                                                  +
                                                                  Creates an symlink to the given folder in the web director, if not already exist.
                                                                  + +
                                                                  + + + + + + +
                                                                  +

                                                                  + Properties + +

                                                                  +
                                                                  +

                                                                  + $kernel + + + +

                                                                  + + + + + private + KernelInterface + $kernel + + + + + + +
                                                                  +
                                                                  +

                                                                  + $symlinksCommand + + + +

                                                                  + + + + + private + SymlinksCommand + $symlinksCommand + + + + + + +
                                                                  +
                                                                  +

                                                                  + $webDir + + + +

                                                                  + + + + + private + string + $webDir + + + + + + +
                                                                  +
                                                                  + +
                                                                  +

                                                                  + Methods + +

                                                                  +
                                                                  +

                                                                  + __construct() + +

                                                                  + + +

                                                                  FolderUtil constructor.

                                                                  + + + public + __construct(string $webDir, KernelInterface $kernel, SymlinksCommand $symlinksCommand) : mixed + + +
                                                                  Parameters
                                                                  +
                                                                  +
                                                                  + $webDir + : string +
                                                                  +
                                                                  +
                                                                  + +
                                                                  +
                                                                  + $kernel + : KernelInterface +
                                                                  +
                                                                  +
                                                                  + +
                                                                  +
                                                                  + $symlinksCommand + : SymlinksCommand +
                                                                  +
                                                                  +
                                                                  + +
                                                                  +
                                                                  + + + +
                                                                  Return values
                                                                  + mixed + — + + +
                                                                  +
                                                                  +

                                                                  + createPublicFolder() + +

                                                                  + + +

                                                                  Creates an symlink to the given folder in the web director, if not already exist.

                                                                  + + + public + createPublicFolder(string $folderPath) : void + + +
                                                                  Parameters
                                                                  +
                                                                  +
                                                                  + $folderPath + : string +
                                                                  +
                                                                  +
                                                                  + +
                                                                  +
                                                                  + + +
                                                                  + Tags + +
                                                                  +
                                                                  +
                                                                  + throws +
                                                                  +
                                                                  + Exception + + +
                                                                  +
                                                                  + +
                                                                  Return values
                                                                  + void + — + + +
                                                                  +
                                                                  + + + + +
                                                                  +
                                                                  +
                                                                  +
                                                                  +

                                                                  Search results

                                                                  + +
                                                                  +
                                                                  +
                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    + + +
                                                                    + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-Form-FormUtil.html b/classes/HeimrichHannot-UtilsBundle-Form-FormUtil.html new file mode 100644 index 00000000..3ad0e02c --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-Form-FormUtil.html @@ -0,0 +1,865 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                    +

                                                                    Contao Utils Bundle

                                                                    + + + + + +
                                                                    + +
                                                                    +
                                                                    + + + + +
                                                                    + + +
                                                                    +

                                                                    + FormUtil + + +
                                                                    + in package + +
                                                                    + + +

                                                                    + + + +

                                                                    Class FormUtil.

                                                                    + + + +
                                                                    + Tags + +
                                                                    +
                                                                    +
                                                                    + see +
                                                                    +
                                                                    + https://heimrichhannot.github.io/contao-utils-bundle/HeimrichHannot/UtilsBundle/Form/FormUtil.html + + +
                                                                    +
                                                                    + + + + + + +

                                                                    + Table of Contents + +

                                                                    + +
                                                                    +
                                                                    + $framework + +  : ContaoFrameworkInterface +
                                                                    +
                                                                    + +
                                                                    + $optionsCache + +  : array<string|int, mixed> +
                                                                    +
                                                                    + +
                                                                    + $container + +  : ContainerInterface +
                                                                    +
                                                                    + +
                                                                    + __construct() + +  : mixed +
                                                                    +
                                                                    + +
                                                                    + escapeAllHtmlEntities() + +  : mixed +
                                                                    +
                                                                    + +
                                                                    + getBackendFormField() + +  : Widget|null +
                                                                    +
                                                                    Get an instance of Widget by passing fieldname and dca data.
                                                                    + +
                                                                    + getModelDataAsNotificationTokens() + +  : mixed +
                                                                    +
                                                                    + +
                                                                    + getWidgetFromAttributes() + +  : Widget|null +
                                                                    +
                                                                    Get a new widget instance based on given attributes from a Data Container array.
                                                                    + +
                                                                    + prepareSpecialValueForOutput() + +  : string +
                                                                    +
                                                                    Prepares a special field's value. If an array is inserted, the function will call itself recursively.
                                                                    + +
                                                                    + + + + + + +
                                                                    +

                                                                    + Properties + +

                                                                    +
                                                                    +

                                                                    + $framework + + + +

                                                                    + + + + + protected + ContaoFrameworkInterface + $framework + + + + + + +
                                                                    +
                                                                    +

                                                                    + $optionsCache + + + +

                                                                    + + + + + protected + array<string|int, mixed> + $optionsCache + + + + + + +
                                                                    +
                                                                    +

                                                                    + $container + + + +

                                                                    + + + + + private + ContainerInterface + $container + + + + + + +
                                                                    +
                                                                    + +
                                                                    +

                                                                    + Methods + +

                                                                    +
                                                                    +

                                                                    + __construct() + +

                                                                    + + + + + public + __construct(ContainerInterface $container, ContaoFrameworkInterface $framework) : mixed + +
                                                                    + +
                                                                    Parameters
                                                                    +
                                                                    +
                                                                    + $container + : ContainerInterface +
                                                                    +
                                                                    +
                                                                    + +
                                                                    +
                                                                    + $framework + : ContaoFrameworkInterface +
                                                                    +
                                                                    +
                                                                    + +
                                                                    +
                                                                    + + + +
                                                                    Return values
                                                                    + mixed + — + + +
                                                                    +
                                                                    +

                                                                    + escapeAllHtmlEntities() + +

                                                                    + + + + + public + escapeAllHtmlEntities(mixed $table, mixed $field, mixed $value) : mixed + +
                                                                    + +
                                                                    Parameters
                                                                    +
                                                                    +
                                                                    + $table + : mixed +
                                                                    +
                                                                    +
                                                                    + +
                                                                    +
                                                                    + $field + : mixed +
                                                                    +
                                                                    +
                                                                    + +
                                                                    +
                                                                    + $value + : mixed +
                                                                    +
                                                                    +
                                                                    + +
                                                                    +
                                                                    + + + +
                                                                    Return values
                                                                    + mixed + — + + +
                                                                    +
                                                                    +

                                                                    + getBackendFormField() + +

                                                                    + + +

                                                                    Get an instance of Widget by passing fieldname and dca data.

                                                                    + + + public + getBackendFormField(string $fieldName, array<string|int, mixed> $dca[, array<string|int, mixed>|null $value = null ][, string $dbField = '' ][, string $table = '' ][, null $dataContainer = null ]) : Widget|null + + +
                                                                    Parameters
                                                                    +
                                                                    +
                                                                    + $fieldName + : string +
                                                                    +
                                                                    +

                                                                    The field name

                                                                    +
                                                                    + +
                                                                    +
                                                                    + $dca + : array<string|int, mixed> +
                                                                    +
                                                                    +

                                                                    The DCA

                                                                    +
                                                                    + +
                                                                    +
                                                                    + $value + : array<string|int, mixed>|null + = null
                                                                    +
                                                                    + +
                                                                    +
                                                                    + $dbField + : string + = ''
                                                                    +
                                                                    +

                                                                    The database field name

                                                                    +
                                                                    + +
                                                                    +
                                                                    + $table + : string + = ''
                                                                    +
                                                                    +

                                                                    The table

                                                                    +
                                                                    + +
                                                                    +
                                                                    + $dataContainer + : null + = null
                                                                    +
                                                                    +

                                                                    object The data container

                                                                    +
                                                                    + +
                                                                    +
                                                                    + + + +
                                                                    Return values
                                                                    + Widget|null + — + + +
                                                                    +
                                                                    +

                                                                    + getModelDataAsNotificationTokens() + +

                                                                    + + + + + public + getModelDataAsNotificationTokens(array<string|int, mixed> $data, string $prefix, DataContainer $dc[, array<string|int, mixed> $config = [] ]) : mixed + +
                                                                    + +
                                                                    Parameters
                                                                    +
                                                                    +
                                                                    + $data + : array<string|int, mixed> +
                                                                    +
                                                                    +
                                                                    + +
                                                                    +
                                                                    + $prefix + : string +
                                                                    +
                                                                    +
                                                                    + +
                                                                    +
                                                                    + $dc + : DataContainer +
                                                                    +
                                                                    +
                                                                    + +
                                                                    +
                                                                    + $config + : array<string|int, mixed> + = []
                                                                    +
                                                                    +
                                                                    + +
                                                                    +
                                                                    + + + +
                                                                    Return values
                                                                    + mixed + — + + +
                                                                    +
                                                                    +

                                                                    + getWidgetFromAttributes() + +

                                                                    + + +

                                                                    Get a new widget instance based on given attributes from a Data Container array.

                                                                    + + + public + getWidgetFromAttributes(string $name, array<string|int, mixed> $data[, mixed $value = null ][, string $dbName = '' ][, string $table = '' ][, DataContainer|null $dc = null ][, string $mode = '' ]) : Widget|null + + +
                                                                    Parameters
                                                                    +
                                                                    +
                                                                    + $name + : string +
                                                                    +
                                                                    +

                                                                    The field name in the form

                                                                    +
                                                                    + +
                                                                    +
                                                                    + $data + : array<string|int, mixed> +
                                                                    +
                                                                    +

                                                                    The field configuration array

                                                                    +
                                                                    + +
                                                                    +
                                                                    + $value + : mixed + = null
                                                                    +
                                                                    +

                                                                    The field value

                                                                    +
                                                                    + +
                                                                    +
                                                                    + $dbName + : string + = ''
                                                                    +
                                                                    +

                                                                    The field name in the database

                                                                    +
                                                                    + +
                                                                    +
                                                                    + $table + : string + = ''
                                                                    +
                                                                    +

                                                                    The table name in the database

                                                                    +
                                                                    + +
                                                                    +
                                                                    + $dc + : DataContainer|null + = null
                                                                    +
                                                                    +

                                                                    An optional DataContainer object

                                                                    +
                                                                    + +
                                                                    +
                                                                    + $mode + : string + = ''
                                                                    +
                                                                    +

                                                                    The contao mode, use FE or BE to get proper widget/form type

                                                                    +
                                                                    + +
                                                                    +
                                                                    + + + +
                                                                    Return values
                                                                    + Widget|null + — +

                                                                    The new widget based on given attributes

                                                                    +
                                                                    + + +
                                                                    +
                                                                    +

                                                                    + prepareSpecialValueForOutput() + +

                                                                    + + +

                                                                    Prepares a special field's value. If an array is inserted, the function will call itself recursively.

                                                                    + + + public + prepareSpecialValueForOutput(string $field,  $value, DataContainer $dc[, array<string|int, mixed> $config = [] ][, bool $isRecursiveCall = false ]) : string + +

                                                                    Possible config options:

                                                                    +
                                                                      +
                                                                    • preserveEmptyArrayValues -> preserves array values even if they're empty
                                                                    • +
                                                                    • skipLocalization -> skips usage of "reference" array defined in the field's dca
                                                                    • +
                                                                    • skipDcaLoading: boolean -> skip calling Controller::loadDataContainer on $dc->table
                                                                    • +
                                                                    • skipOptionCaching -> skip caching options if $value is an array
                                                                    • +
                                                                    • _dcaOverride: Array Set a custom dca from outside, which will be used instead of global dca value.
                                                                    • +
                                                                    +
                                                                    + +
                                                                    Parameters
                                                                    +
                                                                    +
                                                                    + $field + : string +
                                                                    +
                                                                    +
                                                                    + +
                                                                    +
                                                                    + $value + : +
                                                                    +
                                                                    + +
                                                                    +
                                                                    + $dc + : DataContainer +
                                                                    +
                                                                    +
                                                                    + +
                                                                    +
                                                                    + $config + : array<string|int, mixed> + = []
                                                                    +
                                                                    +
                                                                    + +
                                                                    +
                                                                    + $isRecursiveCall + : bool + = false
                                                                    +
                                                                    +
                                                                    + +
                                                                    +
                                                                    + + + +
                                                                    Return values
                                                                    + string + — + + +
                                                                    +
                                                                    + + + + +
                                                                    +
                                                                    +
                                                                    +
                                                                    +

                                                                    Search results

                                                                    + +
                                                                    +
                                                                    +
                                                                      +
                                                                      +
                                                                      +
                                                                      +
                                                                      +
                                                                      + + +
                                                                      + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-HeimrichHannotContaoUtilsBundle.html b/classes/HeimrichHannot-UtilsBundle-HeimrichHannotContaoUtilsBundle.html new file mode 100644 index 00000000..a61722cb --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-HeimrichHannotContaoUtilsBundle.html @@ -0,0 +1,275 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                      +

                                                                      Contao Utils Bundle

                                                                      + + + + + +
                                                                      + +
                                                                      +
                                                                      + + + + +
                                                                      + + +
                                                                      +

                                                                      + HeimrichHannotContaoUtilsBundle + + + extends Bundle + + +
                                                                      + in package + +
                                                                      + + +

                                                                      + + + + +
                                                                      + + + + + + + + +

                                                                      + Table of Contents + +

                                                                      + +
                                                                      +
                                                                      + getContainerExtension() + +  : mixed +
                                                                      +
                                                                      + +
                                                                      + + + + + + + +
                                                                      +

                                                                      + Methods + +

                                                                      +
                                                                      +

                                                                      + getContainerExtension() + +

                                                                      + + + + + public + getContainerExtension() : mixed + +
                                                                      + + + + +
                                                                      Return values
                                                                      + mixed + — + + +
                                                                      +
                                                                      + + + + +
                                                                      +
                                                                      +
                                                                      +
                                                                      +

                                                                      Search results

                                                                      + +
                                                                      +
                                                                      +
                                                                        +
                                                                        +
                                                                        +
                                                                        +
                                                                        +
                                                                        + + +
                                                                        + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-HeimrichHannotUtilsBundle.html b/classes/HeimrichHannot-UtilsBundle-HeimrichHannotUtilsBundle.html index 23d18914..dbbe24e0 100644 --- a/classes/HeimrichHannot-UtilsBundle-HeimrichHannotUtilsBundle.html +++ b/classes/HeimrichHannot-UtilsBundle-HeimrichHannotUtilsBundle.html @@ -109,7 +109,7 @@

                                                                        @@ -130,9 +130,9 @@

                                                                        - getPath() + getContainerExtension() -  : string +  : mixed
                                                                        @@ -155,21 +155,21 @@

                                                                        -public " > -

                                                                        - getPath() - +

                                                                        + getContainerExtension() +

                                                                        public - getPath() : string + getContainerExtension() : mixed
                                                                        @@ -177,7 +177,7 @@

                                                                        Return values
                                                                        - string + mixed — diff --git a/classes/HeimrichHannot-UtilsBundle-Ics-IcsUtil.html b/classes/HeimrichHannot-UtilsBundle-Ics-IcsUtil.html new file mode 100644 index 00000000..fdca7474 --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-Ics-IcsUtil.html @@ -0,0 +1,440 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                        +

                                                                        Contao Utils Bundle

                                                                        + + + + + +
                                                                        + +
                                                                        +
                                                                        + + + + +
                                                                        + + +
                                                                        +

                                                                        + IcsUtil + + +
                                                                        + in package + +
                                                                        + + +

                                                                        + + + + +
                                                                        + + + + + + + + +

                                                                        + Table of Contents + +

                                                                        + +
                                                                        +
                                                                        + $framework + +  : ContaoFramework +
                                                                        +
                                                                        + +
                                                                        + $container + +  : ContainerInterface +
                                                                        +
                                                                        + +
                                                                        + __construct() + +  : mixed +
                                                                        +
                                                                        + +
                                                                        + generateIcs() + +  : string|null +
                                                                        +
                                                                        + +
                                                                        + + + + + + +
                                                                        +

                                                                        + Properties + +

                                                                        +
                                                                        +

                                                                        + $framework + + + +

                                                                        + + + + + protected + ContaoFramework + $framework + + + + + + +
                                                                        +
                                                                        +

                                                                        + $container + + + +

                                                                        + + + + + private + ContainerInterface + $container + + + + + + +
                                                                        +
                                                                        + +
                                                                        +

                                                                        + Methods + +

                                                                        +
                                                                        +

                                                                        + __construct() + +

                                                                        + + + + + public + __construct(ContainerInterface $container) : mixed + +
                                                                        + +
                                                                        Parameters
                                                                        +
                                                                        +
                                                                        + $container + : ContainerInterface +
                                                                        +
                                                                        +
                                                                        + +
                                                                        +
                                                                        + + + +
                                                                        Return values
                                                                        + mixed + — + + +
                                                                        +
                                                                        +

                                                                        + generateIcs() + +

                                                                        + + + + + public + generateIcs(array<string|int, mixed> $data[, array<string|int, mixed> $options = [] ]) : string|null + + +
                                                                        Parameters
                                                                        +
                                                                        +
                                                                        + $data + : array<string|int, mixed> +
                                                                        +
                                                                        +
                                                                        + +
                                                                        +
                                                                        + $options + : array<string|int, mixed> + = []
                                                                        +
                                                                        +
                                                                        + +
                                                                        +
                                                                        + + +
                                                                        + Tags + +
                                                                        +
                                                                        +
                                                                        + throws +
                                                                        +
                                                                        + Exception + + +
                                                                        +
                                                                        + +
                                                                        Return values
                                                                        + string|null + — + + +
                                                                        +
                                                                        + + + + +
                                                                        +
                                                                        +
                                                                        +
                                                                        +

                                                                        Search results

                                                                        + +
                                                                        +
                                                                        +
                                                                          +
                                                                          +
                                                                          +
                                                                          +
                                                                          +
                                                                          + + +
                                                                          + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-Image-ImageUtil.html b/classes/HeimrichHannot-UtilsBundle-Image-ImageUtil.html new file mode 100644 index 00000000..cc2b9260 --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-Image-ImageUtil.html @@ -0,0 +1,609 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                          +

                                                                          Contao Utils Bundle

                                                                          + + + + + +
                                                                          + +
                                                                          +
                                                                          + + + + +
                                                                          + + +
                                                                          +

                                                                          + ImageUtil + + +
                                                                          + in package + +
                                                                          + + +

                                                                          + + + + +
                                                                          + + + + + + + + +

                                                                          + Table of Contents + +

                                                                          + +
                                                                          +
                                                                          + $container + +  : ContainerInterface +
                                                                          +
                                                                          + +
                                                                          + $framework + +  : ContaoFramework +
                                                                          +
                                                                          + +
                                                                          + __construct() + +  : mixed +
                                                                          +
                                                                          + +
                                                                          + addToTemplateData() + +  : mixed +
                                                                          +
                                                                          Add an image to a template.
                                                                          + +
                                                                          + getPixelValue() + +  : int +
                                                                          +
                                                                          Convert sizes like 2em, 10cm or 12pt to pixels.
                                                                          + +
                                                                          + prepareImage() + +  : array<string|int, mixed> +
                                                                          +
                                                                          Prepares one image for a typical Contao template.
                                                                          + +
                                                                          + + + + + + +
                                                                          +

                                                                          + Properties + +

                                                                          +
                                                                          +

                                                                          + $container + + + +

                                                                          + + + + + protected + ContainerInterface + $container + + + + + + +
                                                                          +
                                                                          +

                                                                          + $framework + + + +

                                                                          + + + + + protected + ContaoFramework + $framework + + + + + + +
                                                                          +
                                                                          + +
                                                                          +

                                                                          + Methods + +

                                                                          +
                                                                          +

                                                                          + __construct() + +

                                                                          + + + + + public + __construct(ContainerInterface $container) : mixed + +
                                                                          + +
                                                                          Parameters
                                                                          +
                                                                          +
                                                                          + $container + : ContainerInterface +
                                                                          +
                                                                          +
                                                                          + +
                                                                          +
                                                                          + + + +
                                                                          Return values
                                                                          + mixed + — + + +
                                                                          +
                                                                          +

                                                                          + addToTemplateData() + +

                                                                          + + +

                                                                          Add an image to a template.

                                                                          + + + public + addToTemplateData(string $imageField, string $imageSelectorField, array<string|int, mixed> &$templateData, array<string|int, mixed> $item[, int|null $maxWidth = null ][, string|null $lightboxId = null ][, string|null $lightboxName = null ][, FilesModel|null $model = null ]) : mixed + +

                                                                          Advanced version of Controller::addImageToTemplate +with custom imageField and imageSelectorField and array instead of FrontendTemplate.

                                                                          +
                                                                          + +
                                                                          Parameters
                                                                          +
                                                                          +
                                                                          + $imageField + : string +
                                                                          +
                                                                          +

                                                                          the image field name (typical singleSRC)

                                                                          +
                                                                          + +
                                                                          +
                                                                          + $imageSelectorField + : string +
                                                                          +
                                                                          +

                                                                          the image selector field indicated if an image is added (typical addImage)

                                                                          +
                                                                          + +
                                                                          +
                                                                          + $templateData + : array<string|int, mixed> +
                                                                          +
                                                                          +

                                                                          An array to add the generated data to

                                                                          +
                                                                          + +
                                                                          +
                                                                          + $item + : array<string|int, mixed> +
                                                                          +
                                                                          +

                                                                          The source data containing the imageField and imageSelectorField

                                                                          +
                                                                          + +
                                                                          +
                                                                          + $maxWidth + : int|null + = null
                                                                          +
                                                                          +

                                                                          An optional maximum width of the image

                                                                          +
                                                                          + +
                                                                          +
                                                                          + $lightboxId + : string|null + = null
                                                                          +
                                                                          +

                                                                          An optional lightbox ID

                                                                          +
                                                                          + +
                                                                          +
                                                                          + $lightboxName + : string|null + = null
                                                                          +
                                                                          +

                                                                          An optional lightbox name

                                                                          +
                                                                          + +
                                                                          +
                                                                          + $model + : FilesModel|null + = null
                                                                          +
                                                                          +

                                                                          an optional file model used to read meta data

                                                                          +
                                                                          + +
                                                                          +
                                                                          + + + +
                                                                          Return values
                                                                          + mixed + — + + +
                                                                          +
                                                                          +

                                                                          + getPixelValue() + +

                                                                          + + +

                                                                          Convert sizes like 2em, 10cm or 12pt to pixels.

                                                                          + + + public + getPixelValue(string $size) : int + + +
                                                                          Parameters
                                                                          +
                                                                          +
                                                                          + $size + : string +
                                                                          +
                                                                          +

                                                                          The size string

                                                                          +
                                                                          + +
                                                                          +
                                                                          + + + +
                                                                          Return values
                                                                          + int + — +

                                                                          The pixel value

                                                                          +
                                                                          + + +
                                                                          +
                                                                          +

                                                                          + prepareImage() + +

                                                                          + + +

                                                                          Prepares one image for a typical Contao template.

                                                                          + + + public + prepareImage(array<string|int, mixed> $data[, array<string|int, mixed> $options = [] ]) : array<string|int, mixed> + +

                                                                          Possible option keys:

                                                                          +
                                                                            +
                                                                          • imageField: (string) The name of the field containers the image uuid. Default: singleSRC
                                                                          • +
                                                                          • imageSelectorField: (?string) The name of the field that indicated if an images is added. Set to null to skip check. Default: addImage
                                                                          • +
                                                                          • maxWidth: (int) An optional maximum width of the image. Passed directly to Controller::addImageToTemplate()
                                                                          • +
                                                                          • lightboxId: (string) An optional lightbox ID. Passed directly to Controller::addImageToTemplate()
                                                                          • +
                                                                          +
                                                                          + +
                                                                          Parameters
                                                                          +
                                                                          +
                                                                          + $data + : array<string|int, mixed> +
                                                                          +
                                                                          +

                                                                          the model/module/element data

                                                                          +
                                                                          + +
                                                                          +
                                                                          + $options + : array<string|int, mixed> + = []
                                                                          +
                                                                          +

                                                                          Additional options

                                                                          +
                                                                          + +
                                                                          +
                                                                          + + + +
                                                                          Return values
                                                                          + array<string|int, mixed> + — + + +
                                                                          +
                                                                          + + + + +
                                                                          +
                                                                          +
                                                                          +
                                                                          +

                                                                          Search results

                                                                          + +
                                                                          +
                                                                          +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + +
                                                                            + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-Util-UserUtil.html b/classes/HeimrichHannot-UtilsBundle-Location-LocationUtil.html similarity index 58% rename from classes/HeimrichHannot-UtilsBundle-Util-UserUtil.html rename to classes/HeimrichHannot-UtilsBundle-Location-LocationUtil.html index ca4f20fd..5ed5db9e 100644 --- a/classes/HeimrichHannot-UtilsBundle-Util-UserUtil.html +++ b/classes/HeimrichHannot-UtilsBundle-Location-LocationUtil.html @@ -86,12 +86,12 @@

                                                                            Fil

                                                                            - UserUtil + LocationUtil
                                                                            @@ -105,9 +105,9 @@

                                                                            @@ -128,67 +128,60 @@

                                                                            - TYPE_MEMBER - -  = 'member' -
                                                                            -
                                                                            - -
                                                                            - TYPE_USER + GOOGLE_MAPS_GEOCODE_URL -  = 'user' +  = 'https://maps.googleapis.com/maps/api/geocode/json?address=%s&sensor=false'
                                                                            -
                                                                            - $contaoFramework +
                                                                            + $framework -  : ContaoFramework +  : ContaoFrameworkInterface
                                                                            -
                                                                            - $databaseUtil +
                                                                            + __construct() -  : DatabaseUtil +  : mixed
                                                                            -
                                                                            - $modelUtil +
                                                                            + computeCoordinatesByArray() -  : ModelUtil +  : array<string|int, mixed>|bool
                                                                            -
                                                                            +
                                                                            Computes the coordinates from a given address. Supported array keys are:.
                                                                            -
                                                                            - __construct() +
                                                                            + computeCoordinatesByString() -  : mixed +  : array<string|int, mixed>|bool
                                                                            -
                                                                            UserUtil constructor.
                                                                            +
                                                                            Computes the coordinates from a given address. Supported array keys are:.
                                                                            - findActiveUsersByGroup() + computeCoordinatesInSaveCallback() -  : Collection|null +  : mixed
                                                                            - getActiveGroups() + getCoordinatesFromGpx() -  : Collection|null +  : array<string|int, mixed>
                                                                            -
                                                                            Returns all active users userGroups as a Collection of Models or null if user do not belong to any active userGroups
                                                                            +
                                                                            - hasActiveGroup() + getCoordinatesFromKml() -  : bool +  : array<string|int, mixed>
                                                                            -
                                                                            Returns true if the user or member (frontend user) is member of given group, false otherwise.
                                                                            +
                                                                            @@ -198,47 +191,18 @@

                                                                            Constants - +

                                                                            -

                                                                            - TYPE_MEMBER - -

                                                                            - - - - - - public - mixed - TYPE_MEMBER - = 'member' - - - -
                                                                            - -
                                                                            - - - -
                                                                            -
                                                                            -

                                                                            - TYPE_USER - +

                                                                            + GOOGLE_MAPS_GEOCODE_URL +

                                                                            @@ -246,8 +210,8 @@

                                                                            public mixed - TYPE_USER - = 'user' + GOOGLE_MAPS_GEOCODE_URL + = 'https://maps.googleapis.com/maps/api/geocode/json?address=%s&sensor=false' @@ -264,163 +228,187 @@

                                                                            Properties - +

                                                                            -

                                                                            - $contaoFramework - +

                                                                            + $framework +

                                                                            - private - ContaoFramework - $contaoFramework + protected + ContaoFrameworkInterface + $framework -
                                                                            - -
                                                                            - + +
                                                                            +
                                                                            + +
                                                                            +

                                                                            + Methods + +

                                                                            -

                                                                            - $databaseUtil - - - +

                                                                            + __construct() +

                                                                            - private - DatabaseUtil - $databaseUtil - + public + __construct(ContaoFrameworkInterface $framework) : mixed
                                                                            -
                                                                            +
                                                                            Parameters
                                                                            +
                                                                            +
                                                                            + $framework + : ContaoFrameworkInterface +
                                                                            +
                                                                            +
                                                                            + +
                                                                            +
                                                                            +
                                                                            Return values
                                                                            + mixed + — + +
                                                                            -

                                                                            - $modelUtil - - - +

                                                                            + computeCoordinatesByArray() +

                                                                            - +

                                                                            Computes the coordinates from a given address. Supported array keys are:.

                                                                            + - private - ModelUtil - $modelUtil - + public + computeCoordinatesByArray(array<string|int, mixed> $data) : array<string|int, mixed>|bool + +
                                                                              +
                                                                            • street
                                                                            • +
                                                                            • postal
                                                                            • +
                                                                            • city
                                                                            • +
                                                                            • country
                                                                            • +
                                                                            +
                                                                            -
                                                                            +
                                                                            Parameters
                                                                            +
                                                                            +
                                                                            + $data + : array<string|int, mixed> +
                                                                            +
                                                                            +
                                                                            -
                                                                            +
                                                                            +
                                                                            +
                                                                            Return values
                                                                            + array<string|int, mixed>|bool + — + +
                                                                            -
                                                                            - -
                                                                            -

                                                                            - Methods - -

                                                                            -

                                                                            - __construct() - +

                                                                            + computeCoordinatesByString() +

                                                                            -

                                                                            UserUtil constructor.

                                                                            +

                                                                            Computes the coordinates from a given address. Supported array keys are:.

                                                                            public - __construct(ModelUtil $modelUtil, DatabaseUtil $databaseUtil, ContaoFramework $contaoFramework) : mixed + computeCoordinatesByString(string $address[, string $apiKey = '' ]) : array<string|int, mixed>|bool + +
                                                                              +
                                                                            • street
                                                                            • +
                                                                            • postal
                                                                            • +
                                                                            • city
                                                                            • +
                                                                            • country
                                                                            • +
                                                                            +
                                                                            -
                                                                            Parameters
                                                                            - $modelUtil - : ModelUtil + $address + : string
                                                                            - $databaseUtil - : DatabaseUtil -
                                                                            -
                                                                            -
                                                                            - -
                                                                            -
                                                                            - $contaoFramework - : ContaoFramework -
                                                                            + $apiKey + : string + = ''
                                                                            @@ -430,7 +418,7 @@
                                                                            Parameters
                                                                            Return values
                                                                            - mixed + array<string|int, mixed>|bool — @@ -441,46 +429,38 @@
                                                                            Return values
                                                                            -public " > -

                                                                            - findActiveUsersByGroup() - +

                                                                            + computeCoordinatesInSaveCallback() +

                                                                            public - findActiveUsersByGroup(array<string|int, mixed> $groups[, UserType $type = UserType::USER ][, array<string|int, mixed> $options = [] ]) : Collection|null + computeCoordinatesInSaveCallback(mixed $value, DataContainer $dc) : mixed
                                                                            Parameters
                                                                            - $groups - : array<string|int, mixed> + $value + : mixed
                                                                            - $type - : UserType - = UserType::USER
                                                                            -
                                                                            -
                                                                            - -
                                                                            -
                                                                            - $options - : array<string|int, mixed> - = []
                                                                            + $dc + : DataContainer +
                                                                            @@ -490,7 +470,7 @@
                                                                            Parameters
                                                                            Return values
                                                                            - Collection|null + mixed — @@ -501,30 +481,38 @@
                                                                            Return values
                                                                            -public " > -

                                                                            - getActiveGroups() - +

                                                                            + getCoordinatesFromGpx() +

                                                                            -

                                                                            Returns all active users userGroups as a Collection of Models or null if user do not belong to any active userGroups

                                                                            - + public - getActiveGroups(UserModel|MemberModel $user) : Collection|null + getCoordinatesFromGpx( $gpxData[, array<string|int, mixed> $options = [] ]) : array<string|int, mixed>
                                                                            Parameters
                                                                            - $user - : UserModel|MemberModel + $gpxData + :
                                                                            +
                                                                            +

                                                                            string The KML data

                                                                            +
                                                                            + +
                                                                            +
                                                                            + $options + : array<string|int, mixed> + = []
                                                                            @@ -534,7 +522,7 @@
                                                                            Parameters
                                                                            Return values
                                                                            - Collection|null + array<string|int, mixed> — @@ -545,38 +533,38 @@
                                                                            Return values
                                                                            -public " > -

                                                                            - hasActiveGroup() - +

                                                                            + getCoordinatesFromKml() +

                                                                            -

                                                                            Returns true if the user or member (frontend user) is member of given group, false otherwise.

                                                                            - + public - hasActiveGroup(UserModel|MemberModel $user, int $groupId) : bool + getCoordinatesFromKml( $kmlData[, array<string|int, mixed> $options = [] ]) : array<string|int, mixed>
                                                                            Parameters
                                                                            - $user - : UserModel|MemberModel + $kmlData + :
                                                                            -
                                                                            +

                                                                            string The KML data

                                                                            +
                                                                            - $groupId - : int -
                                                                            + $options + : array<string|int, mixed> + = []
                                                                            @@ -586,7 +574,7 @@
                                                                            Parameters
                                                                            Return values
                                                                            - bool + array<string|int, mixed> — @@ -669,7 +657,7 @@

                                                                            Search results

                                                                            - + diff --git a/classes/HeimrichHannot-UtilsBundle-Member-MemberUtil.html b/classes/HeimrichHannot-UtilsBundle-Member-MemberUtil.html new file mode 100644 index 00000000..694d62ed --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-Member-MemberUtil.html @@ -0,0 +1,717 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                            +

                                                                            Contao Utils Bundle

                                                                            + + + + + +
                                                                            + +
                                                                            +
                                                                            + + + + +
                                                                            + + +
                                                                            +

                                                                            + MemberUtil + + +
                                                                            + in package + +
                                                                            + + + + Uses + PersonTrait +

                                                                            + + + + +
                                                                            + + + + + + + + +

                                                                            + Table of Contents + +

                                                                            + +
                                                                            +
                                                                            + TABLE + +  = 'tl_member' +
                                                                            +
                                                                            + +
                                                                            + $framework + +  : ContaoFrameworkInterface +
                                                                            +
                                                                            + +
                                                                            + $modelUtil + +  : ModelUtil +
                                                                            +
                                                                            + +
                                                                            + __construct() + +  : mixed +
                                                                            +
                                                                            + +
                                                                            + addHomeDir() + +  : bool|string +
                                                                            +
                                                                            Adds a new home dir to a member. Therefore a folder named with the members's id is created in $varRootFolder.
                                                                            + +
                                                                            + findActiveByGroups() + +  : MemberModel|array<string|int, MemberModel>|Collection|null +
                                                                            +
                                                                            Find active members by member group.
                                                                            + +
                                                                            + findOrCreate() + +  : mixed +
                                                                            +
                                                                            + +
                                                                            + getHomeDir() + +  : bool|string +
                                                                            +
                                                                            Returns a member home dir and creates one, if desired.
                                                                            + +
                                                                            + + + + +
                                                                            +

                                                                            + Constants + +

                                                                            +
                                                                            +

                                                                            + TABLE + +

                                                                            + + + + + + public + mixed + TABLE + = 'tl_member' + + + +
                                                                            + +
                                                                            + + + +
                                                                            +
                                                                            + + +
                                                                            +

                                                                            + Properties + +

                                                                            +
                                                                            +

                                                                            + $framework + + + +

                                                                            + + + + + protected + ContaoFrameworkInterface + $framework + + + + + + +
                                                                            + +
                                                                            + +
                                                                            +

                                                                            + Methods + +

                                                                            +
                                                                            +

                                                                            + __construct() + +

                                                                            + + + + + public + __construct(ContaoFrameworkInterface $framework, ModelUtil $modelUtil) : mixed + +
                                                                            + +
                                                                            Parameters
                                                                            +
                                                                            +
                                                                            + $framework + : ContaoFrameworkInterface +
                                                                            +
                                                                            +
                                                                            + +
                                                                            +
                                                                            + $modelUtil + : ModelUtil +
                                                                            +
                                                                            +
                                                                            + +
                                                                            +
                                                                            + + + +
                                                                            Return values
                                                                            + mixed + — + + +
                                                                            +
                                                                            +

                                                                            + addHomeDir() + +

                                                                            + + +

                                                                            Adds a new home dir to a member. Therefore a folder named with the members's id is created in $varRootFolder.

                                                                            + + + public + static addHomeDir( $member[,  $booleanProperty = 'assignDir' ][,  $propertyName = 'homeDir' ][,  $rootFolder = 'files/members' ][, bool|false $overwrite = false ]) : bool|string + + +
                                                                            Parameters
                                                                            +
                                                                            +
                                                                            + $member + : +
                                                                            +
                                                                            +

                                                                            MemberModel|int The member as object or member id

                                                                            +
                                                                            + +
                                                                            +
                                                                            + $booleanProperty + : + = 'assignDir'
                                                                            +
                                                                            +

                                                                            string The name of the boolean member property (e.g. "assignDir")

                                                                            +
                                                                            + +
                                                                            +
                                                                            + $propertyName + : + = 'homeDir'
                                                                            +
                                                                            +

                                                                            string The name of the member property (e.g. "homeDir")

                                                                            +
                                                                            + +
                                                                            +
                                                                            + $rootFolder + : + = 'files/members'
                                                                            +
                                                                            +

                                                                            string|object The base folder as instance of \FilesModel, path string or uuid

                                                                            +
                                                                            + +
                                                                            +
                                                                            + $overwrite + : bool|false + = false
                                                                            +
                                                                            +

                                                                            bool Determines if an existing folder can be overridden

                                                                            +
                                                                            + +
                                                                            +
                                                                            + + + +
                                                                            Return values
                                                                            + bool|string + — +

                                                                            returns true, if a directory has already been linked with the member, the folders uuid if successfully added and false if +errors occurred

                                                                            +
                                                                            + + +
                                                                            +
                                                                            +

                                                                            + findActiveByGroups() + +

                                                                            + + +

                                                                            Find active members by member group.

                                                                            + + + public + findActiveByGroups(array<string|int, mixed> $groups[, array<string|int, mixed> $options = [] ]) : MemberModel|array<string|int, MemberModel>|Collection|null + +

                                                                            Options (pass via options array):

                                                                            +
                                                                              +
                                                                            • ignoreLogin: (bool) Ignore login field when check for active state. Default: false
                                                                            • +
                                                                            +
                                                                            + +
                                                                            Parameters
                                                                            +
                                                                            +
                                                                            + $groups + : array<string|int, mixed> +
                                                                            +
                                                                            +
                                                                            + +
                                                                            +
                                                                            + $options + : array<string|int, mixed> + = []
                                                                            +
                                                                            +
                                                                            + +
                                                                            +
                                                                            + + + +
                                                                            Return values
                                                                            + MemberModel|array<string|int, MemberModel>|Collection|null + — + + +
                                                                            +
                                                                            +

                                                                            + findOrCreate() + +

                                                                            + + + + + public + findOrCreate(string $email) : mixed + +
                                                                            + +
                                                                            Parameters
                                                                            +
                                                                            +
                                                                            + $email + : string +
                                                                            +
                                                                            +
                                                                            + +
                                                                            +
                                                                            + + + +
                                                                            Return values
                                                                            + mixed + — + + +
                                                                            +
                                                                            +

                                                                            + getHomeDir() + +

                                                                            + + +

                                                                            Returns a member home dir and creates one, if desired.

                                                                            + + + public + static getHomeDir( $member[,  $booleanProperty = 'assignDir' ][,  $propertyName = 'homeDir' ][,  $rootFolder = 'files/members' ][, bool|false $overwrite = false ]) : bool|string + + +
                                                                            Parameters
                                                                            +
                                                                            +
                                                                            + $member + : +
                                                                            +
                                                                            +

                                                                            MemberModel|int The member as object or member id

                                                                            +
                                                                            + +
                                                                            +
                                                                            + $booleanProperty + : + = 'assignDir'
                                                                            +
                                                                            +

                                                                            string The name of the boolean member property (e.g. "assignDir")

                                                                            +
                                                                            + +
                                                                            +
                                                                            + $propertyName + : + = 'homeDir'
                                                                            +
                                                                            +

                                                                            string The name of the member property (e.g. "homeDir")

                                                                            +
                                                                            + +
                                                                            +
                                                                            + $rootFolder + : + = 'files/members'
                                                                            +
                                                                            +

                                                                            string|FilesModel The base folder as instance of FilesModel, path string or uuid

                                                                            +
                                                                            + +
                                                                            +
                                                                            + $overwrite + : bool|false + = false
                                                                            +
                                                                            +

                                                                            bool Determines if an existing folder can be overridden

                                                                            +
                                                                            + +
                                                                            +
                                                                            + + + +
                                                                            Return values
                                                                            + bool|string + — +

                                                                            returns the home dir or false if an error occurred

                                                                            +
                                                                            + + +
                                                                            +
                                                                            + + + + +
                                                                            +
                                                                            +
                                                                            +
                                                                            +

                                                                            Search results

                                                                            + +
                                                                            +
                                                                            +
                                                                              +
                                                                              +
                                                                              +
                                                                              +
                                                                              +
                                                                              + + +
                                                                              + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-Model-CfgTagModel.html b/classes/HeimrichHannot-UtilsBundle-Model-CfgTagModel.html new file mode 100644 index 00000000..3da0fad0 --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-Model-CfgTagModel.html @@ -0,0 +1,391 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                              +

                                                                              Contao Utils Bundle

                                                                              + + + + + +
                                                                              + +
                                                                              +
                                                                              + + + + +
                                                                              + + +
                                                                              +

                                                                              + CfgTagModel + + + extends TagModelBase + + +
                                                                              + in package + +
                                                                              + + +

                                                                              + + + + +
                                                                              + + + + + + + + +

                                                                              + Table of Contents + +

                                                                              + +
                                                                              +
                                                                              + $strTable + +  : mixed +
                                                                              +
                                                                              + +
                                                                              + findAllBySource() + +  : Collection|static|null +
                                                                              +
                                                                              + +
                                                                              + getSourcesAsOptions() + +  : mixed +
                                                                              +
                                                                              + +
                                                                              + + + + + + +
                                                                              +

                                                                              + Properties + +

                                                                              +
                                                                              +

                                                                              + $strTable + + + +

                                                                              + + + + + protected + static mixed + $strTable + = 'tl_cfg_tag' + +
                                                                              + +
                                                                              + + + +
                                                                              +
                                                                              + +
                                                                              +

                                                                              + Methods + +

                                                                              +
                                                                              +

                                                                              + findAllBySource() + +

                                                                              + + + + + public + findAllBySource( $source[, array<string|int, mixed> $arrOptions = [] ]) : Collection|static|null + + +
                                                                              Parameters
                                                                              +
                                                                              +
                                                                              + $source + : +
                                                                              +
                                                                              + +
                                                                              +
                                                                              + $arrOptions + : array<string|int, mixed> + = []
                                                                              +
                                                                              +
                                                                              + +
                                                                              +
                                                                              + + + +
                                                                              Return values
                                                                              + Collection|static|null + — + + +
                                                                              +
                                                                              +

                                                                              + getSourcesAsOptions() + +

                                                                              + + + + + public + static getSourcesAsOptions(DataContainer $dc) : mixed + +
                                                                              + +
                                                                              Parameters
                                                                              +
                                                                              +
                                                                              + $dc + : DataContainer +
                                                                              +
                                                                              +
                                                                              + +
                                                                              +
                                                                              + + + +
                                                                              Return values
                                                                              + mixed + — + + +
                                                                              +
                                                                              + + + + +
                                                                              +
                                                                              +
                                                                              +
                                                                              +

                                                                              Search results

                                                                              + +
                                                                              +
                                                                              +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + +
                                                                                + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-Model-ModelUtil.html b/classes/HeimrichHannot-UtilsBundle-Model-ModelUtil.html new file mode 100644 index 00000000..e818df1e --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-Model-ModelUtil.html @@ -0,0 +1,2108 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                +

                                                                                Contao Utils Bundle

                                                                                + + + + + +
                                                                                + +
                                                                                +
                                                                                + + + + +
                                                                                + + +
                                                                                +

                                                                                + ModelUtil + + +
                                                                                + in package + +
                                                                                + + +

                                                                                + + + + +
                                                                                + + + + + + + + +

                                                                                + Table of Contents + +

                                                                                + +
                                                                                +
                                                                                + $dcaUtil + +  : DcaUtil +
                                                                                +
                                                                                + +
                                                                                + $formUtil + +  : FormUtil +
                                                                                +
                                                                                + +
                                                                                + $framework + +  : ContaoFrameworkInterface +
                                                                                +
                                                                                + +
                                                                                + $kernelBundles + +  : array<string|int, mixed> +
                                                                                +
                                                                                + +
                                                                                + $requestStack + +  : RequestStack +
                                                                                +
                                                                                + +
                                                                                + $session + +  : SessionInterface +
                                                                                +
                                                                                + +
                                                                                + __construct() + +  : mixed +
                                                                                +
                                                                                + +
                                                                                + addPublishedCheckToModelArrays() + +  : mixed +
                                                                                +
                                                                                + +
                                                                                + callModelMethod() + +  : mixed +
                                                                                +
                                                                                + +
                                                                                + computeStringPattern() + +  : mixed +
                                                                                +
                                                                                + +
                                                                                + findAllModelInstances() + +  : Collection|null +
                                                                                +
                                                                                Find all model instances for a given table.
                                                                                + +
                                                                                + findModelInstanceByIdOrAlias() + +  : mixed +
                                                                                +
                                                                                Returns multiple model instances by given table and id or alias.
                                                                                + +
                                                                                + findModelInstanceByPk() + +  : mixed +
                                                                                +
                                                                                Returns a model instance if for a given table and id(primary key).
                                                                                + +
                                                                                + findModelInstancesBy() + +  : array<string|int, Model>|Collection|null +
                                                                                +
                                                                                Returns model instances by given table and search criteria.
                                                                                + +
                                                                                + findModulePages() + +  : array<string|int, mixed>|Collection|PageModel|array<string|int, PageModel>|null +
                                                                                +
                                                                                Find module pages.
                                                                                + +
                                                                                + findMultipleModelInstancesByIds() + +  : mixed +
                                                                                +
                                                                                Returns multiple model instances by given table and ids.
                                                                                + +
                                                                                + findOneModelInstanceBy() + +  : mixed +
                                                                                +
                                                                                Return a single model instance by table and search criteria.
                                                                                + +
                                                                                + findParentsRecursively() + +  : array<string|int, mixed> +
                                                                                +
                                                                                Returns an array of a model instance's parents in ascending order, i.e. the root parent comes first.
                                                                                + +
                                                                                + findRootParentRecursively() + +  : Model +
                                                                                +
                                                                                Recursively finds the root parent.
                                                                                + +
                                                                                + fixTablePrefixForDcMultilingual() + +  : array<string|int, mixed>|mixed +
                                                                                +
                                                                                Fixes existing table prefixed already aliased in MultilingualQueryBuilder::buildQueryBuilderForFind().
                                                                                + +
                                                                                + getCurrentDcMultilingualLanguage() + +  : bool|mixed +
                                                                                +
                                                                                Get the current dc_multilingual language even DC_Multilingual::edit() didn't run.
                                                                                + +
                                                                                + getDcMultilingualRootPageLanguages() + +  : array<string|int, mixed> +
                                                                                +
                                                                                Get the list of languages based on root pages.
                                                                                + +
                                                                                + getDcMultilingualTranslatableLanguages() + +  : mixed +
                                                                                +
                                                                                + +
                                                                                + getDcMultilingualTranslationRecord() + +  : mixed +
                                                                                +
                                                                                + +
                                                                                + getModelInstanceFieldValue() + +  : mixed|null +
                                                                                +
                                                                                Get model instance value for given field.
                                                                                + +
                                                                                + getModelInstanceIfId() + +  : Model|mixed +
                                                                                +
                                                                                + +
                                                                                + hasValueChanged() + +  : bool +
                                                                                +
                                                                                Determine if given value is newer than DataContainer value.
                                                                                + +
                                                                                + setDefaultsFromDca() + +  : Model +
                                                                                +
                                                                                Set the entity defaults from dca config (for new model entry).
                                                                                + +
                                                                                + + + + + + +
                                                                                +

                                                                                + Properties + +

                                                                                +
                                                                                +

                                                                                + $dcaUtil + + + +

                                                                                + + + + + protected + DcaUtil + $dcaUtil + + + + + + +
                                                                                +
                                                                                +

                                                                                + $formUtil + + + +

                                                                                + + + + + protected + FormUtil + $formUtil + + + + + + +
                                                                                +
                                                                                +

                                                                                + $framework + + + +

                                                                                + + + + + protected + ContaoFrameworkInterface + $framework + + + + + + +
                                                                                +
                                                                                +

                                                                                + $kernelBundles + + + +

                                                                                + + + + + protected + array<string|int, mixed> + $kernelBundles + + + + + + +
                                                                                +
                                                                                +

                                                                                + $requestStack + + + +

                                                                                + + + + + protected + RequestStack + $requestStack + + + + + + +
                                                                                +
                                                                                +

                                                                                + $session + + + +

                                                                                + + + + + protected + SessionInterface + $session + + + + + + +
                                                                                +
                                                                                + +
                                                                                +

                                                                                + Methods + +

                                                                                +
                                                                                +

                                                                                + __construct() + +

                                                                                + + + + + public + __construct(DcaUtil $dcaUtil, ContaoFrameworkInterface $contaoFramework, SessionInterface $session, RequestStack $requestStack, FormUtil $formUtil, array<string|int, mixed> $kernelBundles) : mixed + +
                                                                                + +
                                                                                Parameters
                                                                                +
                                                                                +
                                                                                + $dcaUtil + : DcaUtil +
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + $contaoFramework + : ContaoFrameworkInterface +
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + $session + : SessionInterface +
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + $requestStack + : RequestStack +
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + $formUtil + : FormUtil +
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + $kernelBundles + : array<string|int, mixed> +
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + + + +
                                                                                Return values
                                                                                + mixed + — + + +
                                                                                +
                                                                                +

                                                                                + addPublishedCheckToModelArrays() + +

                                                                                + + + + + public + addPublishedCheckToModelArrays(string $table, string $publishedField, string $startField, string $stopField, array<string|int, mixed> &$columns[, array<string|int, mixed> $options = [] ]) : mixed + + +
                                                                                Parameters
                                                                                +
                                                                                +
                                                                                + $table + : string +
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + $publishedField + : string +
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + $startField + : string +
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + $stopField + : string +
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + $columns + : array<string|int, mixed> +
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + $options + : array<string|int, mixed> + = []
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + + +
                                                                                + Tags + +
                                                                                +
                                                                                +
                                                                                + deprecated +
                                                                                +
                                                                                + +

                                                                                Use Utils service instead

                                                                                +
                                                                                + +
                                                                                +
                                                                                + codeCoverageIgnore +
                                                                                +
                                                                                + + +
                                                                                +
                                                                                + +
                                                                                Return values
                                                                                + mixed + — + + +
                                                                                +
                                                                                +

                                                                                + callModelMethod() + +

                                                                                + + + + + public + callModelMethod(string $table, string $method, mixed ...$args) : mixed + +
                                                                                + +
                                                                                Parameters
                                                                                +
                                                                                +
                                                                                + $table + : string +
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + $method + : string +
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + $args + : mixed +
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + + + +
                                                                                Return values
                                                                                + mixed + — + + +
                                                                                +
                                                                                +

                                                                                + computeStringPattern() + +

                                                                                + + + + + public + computeStringPattern(string $pattern, Model|object $instance, string $table[, array<string|int, mixed> $specialValueConfig = [] ]) : mixed + + +
                                                                                Parameters
                                                                                +
                                                                                +
                                                                                + $pattern + : string +
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + $instance + : Model|object +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + $table + : string +
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + $specialValueConfig + : array<string|int, mixed> + = []
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + + + +
                                                                                Return values
                                                                                + mixed + — + + +
                                                                                +
                                                                                +

                                                                                + findAllModelInstances() + +

                                                                                + + +

                                                                                Find all model instances for a given table.

                                                                                + + + public + findAllModelInstances(string $table[, array<string|int, mixed> $arrOptions = [] ]) : Collection|null + + +
                                                                                Parameters
                                                                                +
                                                                                +
                                                                                + $table + : string +
                                                                                +
                                                                                +

                                                                                The table name

                                                                                +
                                                                                + +
                                                                                +
                                                                                + $arrOptions + : array<string|int, mixed> + = []
                                                                                +
                                                                                +

                                                                                Additional query options

                                                                                +
                                                                                + +
                                                                                +
                                                                                + + + +
                                                                                Return values
                                                                                + Collection|null + — + + +
                                                                                +
                                                                                +

                                                                                + findModelInstanceByIdOrAlias() + +

                                                                                + + +

                                                                                Returns multiple model instances by given table and id or alias.

                                                                                + + + public + findModelInstanceByIdOrAlias(string $table, mixed $idOrAlias[, array<string|int, mixed> $options = [] ]) : mixed + + +
                                                                                Parameters
                                                                                +
                                                                                +
                                                                                + $table + : string +
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + $idOrAlias + : mixed +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + $options + : array<string|int, mixed> + = []
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + + +
                                                                                + Tags + +
                                                                                +
                                                                                +
                                                                                + deprecated +
                                                                                +
                                                                                + +

                                                                                Use Utils service instead

                                                                                +
                                                                                + +
                                                                                +
                                                                                + codeCoverageIgnore +
                                                                                +
                                                                                + + +
                                                                                +
                                                                                + +
                                                                                Return values
                                                                                + mixed + — + + +
                                                                                +
                                                                                +

                                                                                + findModelInstanceByPk() + +

                                                                                + + +

                                                                                Returns a model instance if for a given table and id(primary key).

                                                                                + + + public + findModelInstanceByPk(string $table, mixed $pk[, array<string|int, mixed> $options = [] ]) : mixed + +

                                                                                Return null, if model type or model instance with given id not exist.

                                                                                +
                                                                                + +
                                                                                Parameters
                                                                                +
                                                                                +
                                                                                + $table + : string +
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + $pk + : mixed +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + $options + : array<string|int, mixed> + = []
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + + +
                                                                                + Tags + +
                                                                                +
                                                                                +
                                                                                + deprecated +
                                                                                +
                                                                                + +

                                                                                Use Utils service instead

                                                                                +
                                                                                + +
                                                                                +
                                                                                + codeCoverageIgnore +
                                                                                +
                                                                                + + +
                                                                                +
                                                                                + +
                                                                                Return values
                                                                                + mixed + — + + +
                                                                                +
                                                                                +

                                                                                + findModelInstancesBy() + +

                                                                                + + +

                                                                                Returns model instances by given table and search criteria.

                                                                                + + + public + findModelInstancesBy(string $table, mixed $columns, mixed $values[, array<string|int, mixed> $options = [] ]) : array<string|int, Model>|Collection|null + + +
                                                                                Parameters
                                                                                +
                                                                                +
                                                                                + $table + : string +
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + $columns + : mixed +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + $values + : mixed +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + $options + : array<string|int, mixed> + = []
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + + +
                                                                                + Tags + +
                                                                                +
                                                                                +
                                                                                + deprecated +
                                                                                +
                                                                                + +

                                                                                Use Utils service instead

                                                                                +
                                                                                + +
                                                                                +
                                                                                + codeCoverageIgnore +
                                                                                +
                                                                                + + +
                                                                                +
                                                                                + +
                                                                                Return values
                                                                                + array<string|int, Model>|Collection|null + — + + +
                                                                                +
                                                                                +

                                                                                + findModulePages() + +

                                                                                + + +

                                                                                Find module pages.

                                                                                + + + public + findModulePages(ModuleModel $module[, bool $collection = false ][, bool $useCache = true ]) : array<string|int, mixed>|Collection|PageModel|array<string|int, PageModel>|null + +

                                                                                Returns page ids or models, where a frontend module is integrated

                                                                                +

                                                                                Also search within blocks (heimrichhannot/contao-blocks)

                                                                                +
                                                                                + +
                                                                                Parameters
                                                                                +
                                                                                +
                                                                                + $module + : ModuleModel +
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + $collection + : bool + = false
                                                                                +
                                                                                +

                                                                                Return PageModel Collection if true. Default: false

                                                                                +
                                                                                + +
                                                                                +
                                                                                + $useCache + : bool + = true
                                                                                +
                                                                                +

                                                                                If true, a filesystem cache will be used to save pages ids. Default: true

                                                                                +
                                                                                + +
                                                                                +
                                                                                + + + +
                                                                                Return values
                                                                                + array<string|int, mixed>|Collection|PageModel|array<string|int, PageModel>|null + — +

                                                                                An array of page Ids (can be empty if no page found!), a PageModel collection or null

                                                                                +
                                                                                + + +
                                                                                +
                                                                                +

                                                                                + findMultipleModelInstancesByIds() + +

                                                                                + + +

                                                                                Returns multiple model instances by given table and ids.

                                                                                + + + public + findMultipleModelInstancesByIds(string $table, array<string|int, mixed> $ids[, array<string|int, mixed> $options = [] ]) : mixed + + +
                                                                                Parameters
                                                                                +
                                                                                +
                                                                                + $table + : string +
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + $ids + : array<string|int, mixed> +
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + $options + : array<string|int, mixed> + = []
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + + +
                                                                                + Tags + +
                                                                                +
                                                                                +
                                                                                + deprecated +
                                                                                +
                                                                                + +

                                                                                Use Utils service instead

                                                                                +
                                                                                + +
                                                                                +
                                                                                + codeCoverageIgnore +
                                                                                +
                                                                                + + +
                                                                                +
                                                                                + +
                                                                                Return values
                                                                                + mixed + — + + +
                                                                                +
                                                                                +

                                                                                + findOneModelInstanceBy() + +

                                                                                + + +

                                                                                Return a single model instance by table and search criteria.

                                                                                + + + public + findOneModelInstanceBy(string $table, array<string|int, mixed> $columns, array<string|int, mixed> $values[, array<string|int, mixed> $options = [] ]) : mixed + + +
                                                                                Parameters
                                                                                +
                                                                                +
                                                                                + $table + : string +
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + $columns + : array<string|int, mixed> +
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + $values + : array<string|int, mixed> +
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + $options + : array<string|int, mixed> + = []
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + + +
                                                                                + Tags + +
                                                                                +
                                                                                +
                                                                                + deprecated +
                                                                                +
                                                                                + +

                                                                                Use Utils service instead

                                                                                +
                                                                                + +
                                                                                +
                                                                                + codeCoverageIgnore +
                                                                                +
                                                                                + + +
                                                                                +
                                                                                + +
                                                                                Return values
                                                                                + mixed + — + + +
                                                                                +
                                                                                +

                                                                                + findParentsRecursively() + +

                                                                                + + +

                                                                                Returns an array of a model instance's parents in ascending order, i.e. the root parent comes first.

                                                                                + + + public + findParentsRecursively(string $parentProperty, string $table, Model $instance) : array<string|int, mixed> + + +
                                                                                Parameters
                                                                                +
                                                                                +
                                                                                + $parentProperty + : string +
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + $table + : string +
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + $instance + : Model +
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + + +
                                                                                + Tags + +
                                                                                +
                                                                                +
                                                                                + deprecated +
                                                                                +
                                                                                + +

                                                                                Use Utils service instead

                                                                                +
                                                                                + +
                                                                                +
                                                                                + +
                                                                                Return values
                                                                                + array<string|int, mixed> + — + + +
                                                                                +
                                                                                +

                                                                                + findRootParentRecursively() + +

                                                                                + + +

                                                                                Recursively finds the root parent.

                                                                                + + + public + findRootParentRecursively(string $parentProperty, string $table, Model $instance[, bool $returnInstanceIfNoParent = true ]) : Model + + +
                                                                                Parameters
                                                                                +
                                                                                +
                                                                                + $parentProperty + : string +
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + $table + : string +
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + $instance + : Model +
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + $returnInstanceIfNoParent + : bool + = true
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + + + +
                                                                                Return values
                                                                                + Model + — + + +
                                                                                +
                                                                                +

                                                                                + fixTablePrefixForDcMultilingual() + +

                                                                                + + +

                                                                                Fixes existing table prefixed already aliased in MultilingualQueryBuilder::buildQueryBuilderForFind().

                                                                                + + + public + fixTablePrefixForDcMultilingual(string $table,  &$columns[, array<string|int, mixed> &$options = [] ]) : array<string|int, mixed>|mixed + + +
                                                                                Parameters
                                                                                +
                                                                                +
                                                                                + $table + : string +
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + $columns + : +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + $options + : array<string|int, mixed> + = []
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + + + +
                                                                                Return values
                                                                                + array<string|int, mixed>|mixed + — + + +
                                                                                +
                                                                                +

                                                                                + getCurrentDcMultilingualLanguage() + +

                                                                                + + +

                                                                                Get the current dc_multilingual language even DC_Multilingual::edit() didn't run.

                                                                                + + + public + getCurrentDcMultilingualLanguage(string $table, int $id) : bool|mixed + +

                                                                                This can be used in onload_callbacks for example since here DC_Multilingual::edit() didn't run, yet.

                                                                                +
                                                                                + +
                                                                                Parameters
                                                                                +
                                                                                +
                                                                                + $table + : string +
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + $id + : int +
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + + + +
                                                                                Return values
                                                                                + bool|mixed + — + + +
                                                                                +
                                                                                +

                                                                                + getDcMultilingualRootPageLanguages() + +

                                                                                + + +

                                                                                Get the list of languages based on root pages.

                                                                                + + + public + getDcMultilingualRootPageLanguages() : array<string|int, mixed> + + + + + +
                                                                                Return values
                                                                                + array<string|int, mixed> + — + + +
                                                                                +
                                                                                +

                                                                                + getDcMultilingualTranslatableLanguages() + +

                                                                                + + + + + public + getDcMultilingualTranslatableLanguages(string $table) : mixed + +
                                                                                + +
                                                                                Parameters
                                                                                +
                                                                                +
                                                                                + $table + : string +
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + + + +
                                                                                Return values
                                                                                + mixed + — + + +
                                                                                +
                                                                                +

                                                                                + getDcMultilingualTranslationRecord() + +

                                                                                + + + + + public + getDcMultilingualTranslationRecord(mixed $table, mixed $id[, mixed $language = null ]) : mixed + +
                                                                                + +
                                                                                Parameters
                                                                                +
                                                                                +
                                                                                + $table + : mixed +
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + $id + : mixed +
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + $language + : mixed + = null
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + + + +
                                                                                Return values
                                                                                + mixed + — + + +
                                                                                +
                                                                                +

                                                                                + getModelInstanceFieldValue() + +

                                                                                + + +

                                                                                Get model instance value for given field.

                                                                                + + + public + getModelInstanceFieldValue(string $field, string $table, int $id) : mixed|null + + +
                                                                                Parameters
                                                                                +
                                                                                +
                                                                                + $field + : string +
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + $table + : string +
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + $id + : int +
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + + + +
                                                                                Return values
                                                                                + mixed|null + — + + +
                                                                                +
                                                                                +

                                                                                + getModelInstanceIfId() + +

                                                                                + + + + + public + getModelInstanceIfId( $instance,  $table) : Model|mixed + + +
                                                                                Parameters
                                                                                +
                                                                                +
                                                                                + $instance + : +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + $table + : +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + + + +
                                                                                Return values
                                                                                + Model|mixed + — + + +
                                                                                +
                                                                                +

                                                                                + hasValueChanged() + +

                                                                                + + +

                                                                                Determine if given value is newer than DataContainer value.

                                                                                + + + public + hasValueChanged(mixed $newValue, DataContainer $dc) : bool + + +
                                                                                Parameters
                                                                                +
                                                                                +
                                                                                + $newValue + : mixed +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + $dc + : DataContainer +
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + + + +
                                                                                Return values
                                                                                + bool + — + + +
                                                                                +
                                                                                +

                                                                                + setDefaultsFromDca() + +

                                                                                + + +

                                                                                Set the entity defaults from dca config (for new model entry).

                                                                                + + + public + setDefaultsFromDca(Model $objModel) : Model + + +
                                                                                Parameters
                                                                                +
                                                                                +
                                                                                + $objModel + : Model +
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + + +
                                                                                + Tags + +
                                                                                +
                                                                                +
                                                                                + deprecated +
                                                                                +
                                                                                + +

                                                                                Use DcaUtil::setDefaultsFromDca instead

                                                                                +
                                                                                + +
                                                                                +
                                                                                + codeCoverageIgnore +
                                                                                +
                                                                                + + +
                                                                                +
                                                                                + +
                                                                                Return values
                                                                                + Model + — +

                                                                                The modified model, containing the default values from all dca fields

                                                                                +
                                                                                + + +
                                                                                +
                                                                                + + + + +
                                                                                +
                                                                                +
                                                                                +
                                                                                +

                                                                                Search results

                                                                                + +
                                                                                +
                                                                                +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  + + +
                                                                                  + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-Model-TagModelBase.html b/classes/HeimrichHannot-UtilsBundle-Model-TagModelBase.html new file mode 100644 index 00000000..3041a8b4 --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-Model-TagModelBase.html @@ -0,0 +1,223 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                  +

                                                                                  Contao Utils Bundle

                                                                                  + + + + + +
                                                                                  + +
                                                                                  +
                                                                                  + + + + +
                                                                                  + + +
                                                                                  +

                                                                                  + TagModelBase + + + extends Model + + +
                                                                                  + in package + +
                                                                                  + + +

                                                                                  + + + + +
                                                                                  + + + + + + + + + + + + + + + + + + + +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  +

                                                                                  Search results

                                                                                  + +
                                                                                  +
                                                                                  +
                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    + + +
                                                                                    + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-Module-ModuleUtil.html b/classes/HeimrichHannot-UtilsBundle-Module-ModuleUtil.html new file mode 100644 index 00000000..05f230b9 --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-Module-ModuleUtil.html @@ -0,0 +1,562 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                    +

                                                                                    Contao Utils Bundle

                                                                                    + + + + + +
                                                                                    + +
                                                                                    +
                                                                                    + + + + +
                                                                                    + + +
                                                                                    +

                                                                                    + ModuleUtil + + +
                                                                                    + in package + +
                                                                                    + + +

                                                                                    + + + + +
                                                                                    + + + + + + + + +

                                                                                    + Table of Contents + +

                                                                                    + +
                                                                                    +
                                                                                    + $framework + +  : ContaoFrameworkInterface +
                                                                                    +
                                                                                    + +
                                                                                    + __construct() + +  : mixed +
                                                                                    +
                                                                                    + +
                                                                                    + getClassByModule() + +  : bool +
                                                                                    +
                                                                                    Get the class name of a given module.
                                                                                    + +
                                                                                    + getModuleClass() + +  : string +
                                                                                    +
                                                                                    Get the full qualified class name for a given module.
                                                                                    + +
                                                                                    + getModulesByType() + +  : Collection +
                                                                                    +
                                                                                    + +
                                                                                    + isSubModuleOf() + +  : bool +
                                                                                    +
                                                                                    Check whether a module is a sub module of another.
                                                                                    + +
                                                                                    + + + + + + +
                                                                                    +

                                                                                    + Properties + +

                                                                                    +
                                                                                    +

                                                                                    + $framework + + + +

                                                                                    + + + + + private + ContaoFrameworkInterface + $framework + + + + + + +
                                                                                    +
                                                                                    + +
                                                                                    +

                                                                                    + Methods + +

                                                                                    +
                                                                                    +

                                                                                    + __construct() + +

                                                                                    + + + + + public + __construct(ContaoFrameworkInterface $framework) : mixed + +
                                                                                    + +
                                                                                    Parameters
                                                                                    +
                                                                                    +
                                                                                    + $framework + : ContaoFrameworkInterface +
                                                                                    +
                                                                                    +
                                                                                    + +
                                                                                    +
                                                                                    + + + +
                                                                                    Return values
                                                                                    + mixed + — + + +
                                                                                    +
                                                                                    +

                                                                                    + getClassByModule() + +

                                                                                    + + +

                                                                                    Get the class name of a given module.

                                                                                    + + + public + getClassByModule(mixed $module) : bool + + +
                                                                                    Parameters
                                                                                    +
                                                                                    +
                                                                                    + $module + : mixed +
                                                                                    +
                                                                                    +

                                                                                    Module as module type string, module model object or module object

                                                                                    +
                                                                                    + +
                                                                                    +
                                                                                    + + + +
                                                                                    Return values
                                                                                    + bool + — + + +
                                                                                    +
                                                                                    +

                                                                                    + getModuleClass() + +

                                                                                    + + +

                                                                                    Get the full qualified class name for a given module.

                                                                                    + + + public + getModuleClass(ModuleModel|Module|string $module) : string + + +
                                                                                    Parameters
                                                                                    +
                                                                                    +
                                                                                    + $module + : ModuleModel|Module|string +
                                                                                    +
                                                                                    +

                                                                                    a module object, a module model object, a full qualified model class name or model type

                                                                                    +
                                                                                    + +
                                                                                    +
                                                                                    + + + +
                                                                                    Return values
                                                                                    + string + — + + +
                                                                                    +
                                                                                    +

                                                                                    + getModulesByType() + +

                                                                                    + + + + + public + getModulesByType(string $type[, array<string|int, mixed> $options = [] ]) : Collection + +
                                                                                    + +
                                                                                    Parameters
                                                                                    +
                                                                                    +
                                                                                    + $type + : string +
                                                                                    +
                                                                                    +
                                                                                    + +
                                                                                    +
                                                                                    + $options + : array<string|int, mixed> + = []
                                                                                    +
                                                                                    +
                                                                                    + +
                                                                                    +
                                                                                    + + + +
                                                                                    Return values
                                                                                    + Collection + — + + +
                                                                                    +
                                                                                    +

                                                                                    + isSubModuleOf() + +

                                                                                    + + +

                                                                                    Check whether a module is a sub module of another.

                                                                                    + + + public + isSubModuleOf(mixed $module1, mixed $module2[, bool $trueIfSame = false ]) : bool + + +
                                                                                    Parameters
                                                                                    +
                                                                                    +
                                                                                    + $module1 + : mixed +
                                                                                    +
                                                                                    +

                                                                                    First module as class string, module type string, module model object or module object

                                                                                    +
                                                                                    + +
                                                                                    +
                                                                                    + $module2 + : mixed +
                                                                                    +
                                                                                    +

                                                                                    Second module as class string, module type string, module model object or module object

                                                                                    +
                                                                                    + +
                                                                                    +
                                                                                    + $trueIfSame + : bool + = false
                                                                                    +
                                                                                    +

                                                                                    Return true if $module1 and $module2 are the same

                                                                                    +
                                                                                    + +
                                                                                    +
                                                                                    + + + +
                                                                                    Return values
                                                                                    + bool + — + + +
                                                                                    +
                                                                                    + + + + +
                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    +

                                                                                    Search results

                                                                                    + +
                                                                                    +
                                                                                    +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      + + +
                                                                                      + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-Page-PageUtil.html b/classes/HeimrichHannot-UtilsBundle-Page-PageUtil.html new file mode 100644 index 00000000..86e71b82 --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-Page-PageUtil.html @@ -0,0 +1,512 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                      +

                                                                                      Contao Utils Bundle

                                                                                      + + + + + +
                                                                                      + +
                                                                                      +
                                                                                      + + + + +
                                                                                      + + +
                                                                                      +

                                                                                      + PageUtil + + +
                                                                                      + in package + +
                                                                                      + + +

                                                                                      + + + + +
                                                                                      + + + + + + + + +

                                                                                      + Table of Contents + +

                                                                                      + +
                                                                                      +
                                                                                      + PAGE_MODEL_TYPE_ROOT + +  = 'root' +
                                                                                      +
                                                                                      + +
                                                                                      + $framework + +  : ContaoFrameworkInterface +
                                                                                      +
                                                                                      + +
                                                                                      + $container + +  : ContainerInterface +
                                                                                      +
                                                                                      + +
                                                                                      + __construct() + +  : mixed +
                                                                                      +
                                                                                      + +
                                                                                      + retrieveGlobalPageFromCurrentPageId() + +  : PageModel|null +
                                                                                      +
                                                                                      + +
                                                                                      + setParametersFromLayout() + +  : void +
                                                                                      +
                                                                                      + +
                                                                                      + + + + +
                                                                                      +

                                                                                      + Constants + +

                                                                                      +
                                                                                      +

                                                                                      + PAGE_MODEL_TYPE_ROOT + +

                                                                                      + + + + + + public + mixed + PAGE_MODEL_TYPE_ROOT + = 'root' + + + +
                                                                                      + +
                                                                                      + + + +
                                                                                      +
                                                                                      + + +
                                                                                      +

                                                                                      + Properties + +

                                                                                      +
                                                                                      +

                                                                                      + $framework + + + +

                                                                                      + + + + + protected + ContaoFrameworkInterface + $framework + + + + + + +
                                                                                      +
                                                                                      +

                                                                                      + $container + + + +

                                                                                      + + + + + private + ContainerInterface + $container + + + + + + +
                                                                                      +
                                                                                      + +
                                                                                      +

                                                                                      + Methods + +

                                                                                      +
                                                                                      +

                                                                                      + __construct() + +

                                                                                      + + + + + public + __construct(ContainerInterface $container) : mixed + +
                                                                                      + +
                                                                                      Parameters
                                                                                      +
                                                                                      +
                                                                                      + $container + : ContainerInterface +
                                                                                      +
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + + +
                                                                                      Return values
                                                                                      + mixed + — + + +
                                                                                      +
                                                                                      +

                                                                                      + retrieveGlobalPageFromCurrentPageId() + +

                                                                                      + + + + + public + retrieveGlobalPageFromCurrentPageId(int $id) : PageModel|null + +
                                                                                      + +
                                                                                      Parameters
                                                                                      +
                                                                                      +
                                                                                      + $id + : int +
                                                                                      +
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + + +
                                                                                      Return values
                                                                                      + PageModel|null + — + + +
                                                                                      +
                                                                                      +

                                                                                      + setParametersFromLayout() + +

                                                                                      + + + + + protected + setParametersFromLayout(PageModel &$page) : void + +
                                                                                      + +
                                                                                      Parameters
                                                                                      +
                                                                                      +
                                                                                      + $page + : PageModel +
                                                                                      +
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + + +
                                                                                      Return values
                                                                                      + void + — + + +
                                                                                      +
                                                                                      + + + + +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      +

                                                                                      Search results

                                                                                      + +
                                                                                      +
                                                                                      +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        + + +
                                                                                        + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-Pagination-TextualPagination.html b/classes/HeimrichHannot-UtilsBundle-Pagination-TextualPagination.html new file mode 100644 index 00000000..ba8c0d89 --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-Pagination-TextualPagination.html @@ -0,0 +1,476 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                        +

                                                                                        Contao Utils Bundle

                                                                                        + + + + + +
                                                                                        + +
                                                                                        +
                                                                                        + + + + +
                                                                                        + + +
                                                                                        +

                                                                                        + TextualPagination + + + extends Pagination + + +
                                                                                        + in package + +
                                                                                        + + +

                                                                                        + + + + +
                                                                                        + + + + + + + + +

                                                                                        + Table of Contents + +

                                                                                        + +
                                                                                        +
                                                                                        + $singlePageUrl + +  : string +
                                                                                        +
                                                                                        + +
                                                                                        + $teasers + +  : array<string|int, mixed> +
                                                                                        +
                                                                                        + +
                                                                                        + __construct() + +  : mixed +
                                                                                        +
                                                                                        Set the number of rows, the number of results per pages and the number of links.
                                                                                        + +
                                                                                        + getItemsAsArray() + +  : array<string|int, mixed> +
                                                                                        +
                                                                                        Generate all page links and return them as array.
                                                                                        + +
                                                                                        + + + + + + +
                                                                                        +

                                                                                        + Properties + +

                                                                                        +
                                                                                        +

                                                                                        + $singlePageUrl + + + +

                                                                                        + + + + + protected + string + $singlePageUrl + + + + + + +
                                                                                        +
                                                                                        +

                                                                                        + $teasers + + + +

                                                                                        + + + + + protected + array<string|int, mixed> + $teasers + = [] + + + + + +
                                                                                        +
                                                                                        + +
                                                                                        +

                                                                                        + Methods + +

                                                                                        +
                                                                                        +

                                                                                        + __construct() + +

                                                                                        + + +

                                                                                        Set the number of rows, the number of results per pages and the number of links.

                                                                                        + + + public + __construct(array<string|int, mixed> $teasers, string $singlePageUrl, int $intRows, int $intPerPage[, int $intNumberOfLinks = 7 ][, string $strParameter = 'page' ][, Template $objTemplate = null ][, bool $blnForceParam = false ]) : mixed + + +
                                                                                        Parameters
                                                                                        +
                                                                                        +
                                                                                        + $teasers + : array<string|int, mixed> +
                                                                                        +
                                                                                        +

                                                                                        The teasers for the pagination

                                                                                        +
                                                                                        + +
                                                                                        +
                                                                                        + $singlePageUrl + : string +
                                                                                        +
                                                                                        +
                                                                                        + +
                                                                                        +
                                                                                        + $intRows + : int +
                                                                                        +
                                                                                        +

                                                                                        The number of rows

                                                                                        +
                                                                                        + +
                                                                                        +
                                                                                        + $intPerPage + : int +
                                                                                        +
                                                                                        +

                                                                                        The number of items per page

                                                                                        +
                                                                                        + +
                                                                                        +
                                                                                        + $intNumberOfLinks + : int + = 7
                                                                                        +
                                                                                        +

                                                                                        The number of links to generate

                                                                                        +
                                                                                        + +
                                                                                        +
                                                                                        + $strParameter + : string + = 'page'
                                                                                        +
                                                                                        +

                                                                                        The parameter name

                                                                                        +
                                                                                        + +
                                                                                        +
                                                                                        + $objTemplate + : Template + = null
                                                                                        +
                                                                                        +

                                                                                        The template object

                                                                                        +
                                                                                        + +
                                                                                        +
                                                                                        + $blnForceParam + : bool + = false
                                                                                        +
                                                                                        +

                                                                                        Force the URL parameter

                                                                                        +
                                                                                        + +
                                                                                        +
                                                                                        + + + +
                                                                                        Return values
                                                                                        + mixed + — + + +
                                                                                        +
                                                                                        +

                                                                                        + getItemsAsArray() + +

                                                                                        + + +

                                                                                        Generate all page links and return them as array.

                                                                                        + + + public + getItemsAsArray() : array<string|int, mixed> + + + + + +
                                                                                        Return values
                                                                                        + array<string|int, mixed> + — +

                                                                                        The page links as array

                                                                                        +
                                                                                        + + +
                                                                                        +
                                                                                        + + + + +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +

                                                                                        Search results

                                                                                        + +
                                                                                        +
                                                                                        +
                                                                                          +
                                                                                          +
                                                                                          +
                                                                                          +
                                                                                          +
                                                                                          + + +
                                                                                          + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-Pdf-AbstractPdfWriter.html b/classes/HeimrichHannot-UtilsBundle-Pdf-AbstractPdfWriter.html new file mode 100644 index 00000000..f8b52a9c --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-Pdf-AbstractPdfWriter.html @@ -0,0 +1,1326 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                          +

                                                                                          Contao Utils Bundle

                                                                                          + + + + + +
                                                                                          + +
                                                                                          +
                                                                                          + + + + +
                                                                                          + + +
                                                                                          +

                                                                                          + AbstractPdfWriter + + +
                                                                                          + in package + +
                                                                                          + + +

                                                                                          + + + +

                                                                                          Class AbstractPdfWriter.

                                                                                          + + + +
                                                                                          + Tags + +
                                                                                          +
                                                                                          +
                                                                                          + deprecated +
                                                                                          +
                                                                                          + +

                                                                                          Use PdfCreator instead

                                                                                          +
                                                                                          + +
                                                                                          +
                                                                                          + + + + + + +

                                                                                          + Table of Contents + +

                                                                                          + +
                                                                                          +
                                                                                          + OUTPUT_MODE_DOWNLOAD + +  = 'download' +
                                                                                          +
                                                                                          + +
                                                                                          + OUTPUT_MODE_FILE + +  = 'file' +
                                                                                          +
                                                                                          + +
                                                                                          + OUTPUT_MODE_INLINE + +  = 'inline' +
                                                                                          +
                                                                                          + +
                                                                                          + OUTPUT_MODES + +  = [self::OUTPUT_MODE_DOWNLOAD, self::OUTPUT_MODE_FILE, self::OUTPUT_MODE_INLINE] +
                                                                                          +
                                                                                          + +
                                                                                          + $config + +  : array<string|int, mixed> +
                                                                                          +
                                                                                          Pdf configuration.
                                                                                          + +
                                                                                          + $fileName + +  : string +
                                                                                          +
                                                                                          Pdf file name.
                                                                                          + +
                                                                                          + $folder + +  : string +
                                                                                          +
                                                                                          The folder in case of saving to file.
                                                                                          + +
                                                                                          + $html + +  : string +
                                                                                          +
                                                                                          Pdf html content including styles.
                                                                                          + +
                                                                                          + $isPrepared + +  : bool +
                                                                                          +
                                                                                          + +
                                                                                          + $pdf + +  : mixed +
                                                                                          +
                                                                                          + +
                                                                                          + __construct() + +  : mixed +
                                                                                          +
                                                                                          constructor.
                                                                                          + +
                                                                                          + generate() + +  : void +
                                                                                          +
                                                                                          Generate the pdf.
                                                                                          + +
                                                                                          + getConfig() + +  : array<string|int, mixed> +
                                                                                          +
                                                                                          Get the pdf config.
                                                                                          + +
                                                                                          + getFileName() + +  : string +
                                                                                          +
                                                                                          Get the pdf file name.
                                                                                          + +
                                                                                          + getFolder() + +  : string +
                                                                                          +
                                                                                          + +
                                                                                          + getHtml() + +  : string +
                                                                                          +
                                                                                          Get html including styles.
                                                                                          + +
                                                                                          + getPdf() + +  : mixed +
                                                                                          +
                                                                                          Get current pdf object.
                                                                                          + +
                                                                                          + isPrepared() + +  : bool +
                                                                                          +
                                                                                          Check if prepare was already triggered.
                                                                                          + +
                                                                                          + mergeConfig() + +  : PdfWriter +
                                                                                          +
                                                                                          Merge current pdf config with given.
                                                                                          + +
                                                                                          + prepare() + +  : mixed +
                                                                                          +
                                                                                          Prepare the current object.
                                                                                          + +
                                                                                          + setConfig() + +  : PdfWriter +
                                                                                          +
                                                                                          Set pdf config, replace default with custom config.
                                                                                          + +
                                                                                          + setDefaultConfig() + +  : mixed +
                                                                                          +
                                                                                          + +
                                                                                          + setFileName() + +  : PdfWriter +
                                                                                          +
                                                                                          Set the pdf filename.
                                                                                          + +
                                                                                          + setFolder() + +  : void +
                                                                                          +
                                                                                          + +
                                                                                          + setHtml() + +  : PdfWriter +
                                                                                          +
                                                                                          Set html including styles.
                                                                                          + +
                                                                                          + + + + +
                                                                                          +

                                                                                          + Constants + +

                                                                                          +
                                                                                          +

                                                                                          + OUTPUT_MODE_DOWNLOAD + +

                                                                                          + + + + + + public + mixed + OUTPUT_MODE_DOWNLOAD + = 'download' + + + +
                                                                                          + +
                                                                                          + + + +
                                                                                          +
                                                                                          +

                                                                                          + OUTPUT_MODE_FILE + +

                                                                                          + + + + + + public + mixed + OUTPUT_MODE_FILE + = 'file' + + + +
                                                                                          + +
                                                                                          + + + +
                                                                                          +
                                                                                          +

                                                                                          + OUTPUT_MODE_INLINE + +

                                                                                          + + + + + + public + mixed + OUTPUT_MODE_INLINE + = 'inline' + + + +
                                                                                          + +
                                                                                          + + + +
                                                                                          +
                                                                                          +

                                                                                          + OUTPUT_MODES + +

                                                                                          + + + + + + public + mixed + OUTPUT_MODES + = [self::OUTPUT_MODE_DOWNLOAD, self::OUTPUT_MODE_FILE, self::OUTPUT_MODE_INLINE] + + + +
                                                                                          + +
                                                                                          + + + +
                                                                                          +
                                                                                          + + +
                                                                                          +

                                                                                          + Properties + +

                                                                                          +
                                                                                          +

                                                                                          + $config + + + +

                                                                                          + + +

                                                                                          Pdf configuration.

                                                                                          + + + protected + array<string|int, mixed> + $config + = [] + + + + + +
                                                                                          +
                                                                                          +

                                                                                          + $fileName + + + +

                                                                                          + + +

                                                                                          Pdf file name.

                                                                                          + + + protected + string + $fileName + + + + + + +
                                                                                          +
                                                                                          +

                                                                                          + $folder + + + +

                                                                                          + + +

                                                                                          The folder in case of saving to file.

                                                                                          + + + protected + string + $folder + + + + + + +
                                                                                          +
                                                                                          +

                                                                                          + $html + + + +

                                                                                          + + +

                                                                                          Pdf html content including styles.

                                                                                          + + + protected + string + $html + + + + + + +
                                                                                          +
                                                                                          +

                                                                                          + $isPrepared + + + +

                                                                                          + + + + + protected + bool + $isPrepared + = false + + + + + +
                                                                                          +
                                                                                          +

                                                                                          + $pdf + + + +

                                                                                          + + + + + protected + mixed + $pdf + + + +

                                                                                          The pdf object

                                                                                          +
                                                                                          + + + +
                                                                                          +
                                                                                          + +
                                                                                          +

                                                                                          + Methods + +

                                                                                          +
                                                                                          +

                                                                                          + __construct() + +

                                                                                          + + +

                                                                                          constructor.

                                                                                          + + + public + __construct() : mixed + + + + + +
                                                                                          Return values
                                                                                          + mixed + — + + +
                                                                                          +
                                                                                          +

                                                                                          + generate() + +

                                                                                          + + +

                                                                                          Generate the pdf.

                                                                                          + + + public + abstract generate([string $mode = self::OUTPUT_MODE_DOWNLOAD ]) : void + + +
                                                                                          Parameters
                                                                                          +
                                                                                          +
                                                                                          + $mode + : string + = self::OUTPUT_MODE_DOWNLOAD
                                                                                          +
                                                                                          + +
                                                                                          +
                                                                                          + + + +
                                                                                          Return values
                                                                                          + void + — + + +
                                                                                          +
                                                                                          +

                                                                                          + getConfig() + +

                                                                                          + + +

                                                                                          Get the pdf config.

                                                                                          + + + public + getConfig() : array<string|int, mixed> + + + + + +
                                                                                          Return values
                                                                                          + array<string|int, mixed> + — + + +
                                                                                          +
                                                                                          +

                                                                                          + getFileName() + +

                                                                                          + + +

                                                                                          Get the pdf file name.

                                                                                          + + + public + getFileName() : string + + + + + +
                                                                                          Return values
                                                                                          + string + — + + +
                                                                                          +
                                                                                          +

                                                                                          + getFolder() + +

                                                                                          + + + + + public + getFolder() : string + + + + + +
                                                                                          Return values
                                                                                          + string + — + + +
                                                                                          +
                                                                                          +

                                                                                          + getHtml() + +

                                                                                          + + +

                                                                                          Get html including styles.

                                                                                          + + + public + getHtml() : string + + + + + +
                                                                                          Return values
                                                                                          + string + — + + +
                                                                                          +
                                                                                          +

                                                                                          + getPdf() + +

                                                                                          + + +

                                                                                          Get current pdf object.

                                                                                          + + + public + abstract getPdf([bool $init = false ]) : mixed + + +
                                                                                          Parameters
                                                                                          +
                                                                                          +
                                                                                          + $init + : bool + = false
                                                                                          +
                                                                                          +

                                                                                          Set true if you want to create a new pdf regardless there is always an existing pdf

                                                                                          +
                                                                                          + +
                                                                                          +
                                                                                          + + + +
                                                                                          Return values
                                                                                          + mixed + — + + +
                                                                                          +
                                                                                          +

                                                                                          + isPrepared() + +

                                                                                          + + +

                                                                                          Check if prepare was already triggered.

                                                                                          + + + public + isPrepared() : bool + + + + + +
                                                                                          Return values
                                                                                          + bool + — + + +
                                                                                          +
                                                                                          +

                                                                                          + mergeConfig() + +

                                                                                          + + +

                                                                                          Merge current pdf config with given.

                                                                                          + + + public + mergeConfig(array<string|int, mixed> $config) : PdfWriter + + +
                                                                                          Parameters
                                                                                          +
                                                                                          +
                                                                                          + $config + : array<string|int, mixed> +
                                                                                          +
                                                                                          +
                                                                                          + +
                                                                                          +
                                                                                          + + + +
                                                                                          Return values
                                                                                          + PdfWriter + — +

                                                                                          Current pdf writer instance

                                                                                          +
                                                                                          + + +
                                                                                          +
                                                                                          +

                                                                                          + prepare() + +

                                                                                          + + +

                                                                                          Prepare the current object.

                                                                                          + + + public + prepare() : mixed + + + + + +
                                                                                          Return values
                                                                                          + mixed + — + + +
                                                                                          +
                                                                                          +

                                                                                          + setConfig() + +

                                                                                          + + +

                                                                                          Set pdf config, replace default with custom config.

                                                                                          + + + public + setConfig(array<string|int, mixed> $config) : PdfWriter + + +
                                                                                          Parameters
                                                                                          +
                                                                                          +
                                                                                          + $config + : array<string|int, mixed> +
                                                                                          +
                                                                                          +
                                                                                          + +
                                                                                          +
                                                                                          + + + +
                                                                                          Return values
                                                                                          + PdfWriter + — +

                                                                                          Current pdf writer instance

                                                                                          +
                                                                                          + + +
                                                                                          +
                                                                                          +

                                                                                          + setDefaultConfig() + +

                                                                                          + + + + + public + abstract setDefaultConfig() : mixed + +
                                                                                          + + + + +
                                                                                          Return values
                                                                                          + mixed + — + + +
                                                                                          +
                                                                                          +

                                                                                          + setFileName() + +

                                                                                          + + +

                                                                                          Set the pdf filename.

                                                                                          + + + public + setFileName(string $fileName) : PdfWriter + + +
                                                                                          Parameters
                                                                                          +
                                                                                          +
                                                                                          + $fileName + : string +
                                                                                          +
                                                                                          +
                                                                                          + +
                                                                                          +
                                                                                          + + + +
                                                                                          Return values
                                                                                          + PdfWriter + — +

                                                                                          Current pdf writer instance

                                                                                          +
                                                                                          + + +
                                                                                          +
                                                                                          +

                                                                                          + setFolder() + +

                                                                                          + + + + + public + setFolder(string $folder) : void + +
                                                                                          + +
                                                                                          Parameters
                                                                                          +
                                                                                          +
                                                                                          + $folder + : string +
                                                                                          +
                                                                                          +
                                                                                          + +
                                                                                          +
                                                                                          + + + +
                                                                                          Return values
                                                                                          + void + — + + +
                                                                                          +
                                                                                          +

                                                                                          + setHtml() + +

                                                                                          + + +

                                                                                          Set html including styles.

                                                                                          + + + public + setHtml(string $html) : PdfWriter + + +
                                                                                          Parameters
                                                                                          +
                                                                                          +
                                                                                          + $html + : string +
                                                                                          +
                                                                                          +
                                                                                          + +
                                                                                          +
                                                                                          + + + +
                                                                                          Return values
                                                                                          + PdfWriter + — + + +
                                                                                          +
                                                                                          + + + + +
                                                                                          +
                                                                                          +
                                                                                          +
                                                                                          +

                                                                                          Search results

                                                                                          + +
                                                                                          +
                                                                                          +
                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            + + +
                                                                                            + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-Pdf-FPDIWriter.html b/classes/HeimrichHannot-UtilsBundle-Pdf-FPDIWriter.html new file mode 100644 index 00000000..ef0f990f --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-Pdf-FPDIWriter.html @@ -0,0 +1,1511 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                            +

                                                                                            Contao Utils Bundle

                                                                                            + + + + + +
                                                                                            + +
                                                                                            +
                                                                                            + + + + +
                                                                                            + + +
                                                                                            +

                                                                                            + FPDIWriter + + + extends AbstractPdfWriter + + +
                                                                                            + in package + +
                                                                                            + + +

                                                                                            + + + +

                                                                                            Class AbstractPdfWriter.

                                                                                            + + + + + + + + + +

                                                                                            + Table of Contents + +

                                                                                            + +
                                                                                            +
                                                                                            + OUTPUT_MODE_DOWNLOAD + +  = 'download' +
                                                                                            +
                                                                                            + +
                                                                                            + OUTPUT_MODE_FILE + +  = 'file' +
                                                                                            +
                                                                                            + +
                                                                                            + OUTPUT_MODE_INLINE + +  = 'inline' +
                                                                                            +
                                                                                            + +
                                                                                            + OUTPUT_MODES + +  = [self::OUTPUT_MODE_DOWNLOAD, self::OUTPUT_MODE_FILE, self::OUTPUT_MODE_INLINE] +
                                                                                            +
                                                                                            + +
                                                                                            + $config + +  : array<string|int, mixed> +
                                                                                            +
                                                                                            Pdf configuration.
                                                                                            + +
                                                                                            + $fileName + +  : string +
                                                                                            +
                                                                                            Pdf file name.
                                                                                            + +
                                                                                            + $folder + +  : string +
                                                                                            +
                                                                                            The folder in case of saving to file.
                                                                                            + +
                                                                                            + $html + +  : string +
                                                                                            +
                                                                                            Pdf html content including styles.
                                                                                            + +
                                                                                            + $isPrepared + +  : bool +
                                                                                            +
                                                                                            + +
                                                                                            + $pdf + +  : Fpdi +
                                                                                            +
                                                                                            Current fpdi instance.
                                                                                            + +
                                                                                            + $template + +  : string +
                                                                                            +
                                                                                            Master pdf template.
                                                                                            + +
                                                                                            + __construct() + +  : mixed +
                                                                                            +
                                                                                            TCPDFWriter constructor.
                                                                                            + +
                                                                                            + addFont() + +  : mixed +
                                                                                            +
                                                                                            + +
                                                                                            + generate() + +  : void +
                                                                                            +
                                                                                            Generate the pdf.
                                                                                            + +
                                                                                            + getConfig() + +  : array<string|int, mixed> +
                                                                                            +
                                                                                            Get the pdf config.
                                                                                            + +
                                                                                            + getFileName() + +  : string +
                                                                                            +
                                                                                            Get the pdf file name.
                                                                                            + +
                                                                                            + getFolder() + +  : string +
                                                                                            +
                                                                                            + +
                                                                                            + getHtml() + +  : string +
                                                                                            +
                                                                                            Get html including styles.
                                                                                            + +
                                                                                            + getPdf() + +  : Fpdi +
                                                                                            +
                                                                                            Get current pdf object.
                                                                                            + +
                                                                                            + getTemplate() + +  : string +
                                                                                            +
                                                                                            Get the master template path.
                                                                                            + +
                                                                                            + isPrepared() + +  : bool +
                                                                                            +
                                                                                            Check if prepare was already triggered.
                                                                                            + +
                                                                                            + mergeConfig() + +  : PdfWriter +
                                                                                            +
                                                                                            Merge current pdf config with given.
                                                                                            + +
                                                                                            + prepare() + +  : Fpdi +
                                                                                            +
                                                                                            Prepare the current fpdi object.
                                                                                            + +
                                                                                            + setConfig() + +  : PdfWriter +
                                                                                            +
                                                                                            Set pdf config, replace default with custom config.
                                                                                            + +
                                                                                            + setDefaultConfig() + +  : mixed +
                                                                                            +
                                                                                            + +
                                                                                            + setFileName() + +  : PdfWriter +
                                                                                            +
                                                                                            Set the pdf filename.
                                                                                            + +
                                                                                            + setFolder() + +  : void +
                                                                                            +
                                                                                            + +
                                                                                            + setHtml() + +  : PdfWriter +
                                                                                            +
                                                                                            Set html including styles.
                                                                                            + +
                                                                                            + setTemplate() + +  : PdfWriter +
                                                                                            +
                                                                                            Set the master template path.
                                                                                            + +
                                                                                            + + + + +
                                                                                            +

                                                                                            + Constants + +

                                                                                            +
                                                                                            +

                                                                                            + OUTPUT_MODE_DOWNLOAD + +

                                                                                            + + + + + + public + mixed + OUTPUT_MODE_DOWNLOAD + = 'download' + + + +
                                                                                            + +
                                                                                            + + + +
                                                                                            +
                                                                                            +

                                                                                            + OUTPUT_MODE_FILE + +

                                                                                            + + + + + + public + mixed + OUTPUT_MODE_FILE + = 'file' + + + +
                                                                                            + +
                                                                                            + + + +
                                                                                            +
                                                                                            +

                                                                                            + OUTPUT_MODE_INLINE + +

                                                                                            + + + + + + public + mixed + OUTPUT_MODE_INLINE + = 'inline' + + + +
                                                                                            + +
                                                                                            + + + +
                                                                                            +
                                                                                            +

                                                                                            + OUTPUT_MODES + +

                                                                                            + + + + + + public + mixed + OUTPUT_MODES + = [self::OUTPUT_MODE_DOWNLOAD, self::OUTPUT_MODE_FILE, self::OUTPUT_MODE_INLINE] + + + +
                                                                                            + +
                                                                                            + + + +
                                                                                            +
                                                                                            + + +
                                                                                            +

                                                                                            + Properties + +

                                                                                            +
                                                                                            +

                                                                                            + $config + + + +

                                                                                            + + +

                                                                                            Pdf configuration.

                                                                                            + + + protected + array<string|int, mixed> + $config + = [] + + + + + +
                                                                                            +
                                                                                            +

                                                                                            + $fileName + + + +

                                                                                            + + +

                                                                                            Pdf file name.

                                                                                            + + + protected + string + $fileName + + + + + + +
                                                                                            +
                                                                                            +

                                                                                            + $folder + + + +

                                                                                            + + +

                                                                                            The folder in case of saving to file.

                                                                                            + + + protected + string + $folder + + + + + + +
                                                                                            +
                                                                                            +

                                                                                            + $html + + + +

                                                                                            + + +

                                                                                            Pdf html content including styles.

                                                                                            + + + protected + string + $html + + + + + + +
                                                                                            +
                                                                                            +

                                                                                            + $isPrepared + + + +

                                                                                            + + + + + protected + bool + $isPrepared + = false + + + + + +
                                                                                            +
                                                                                            +

                                                                                            + $pdf + + + +

                                                                                            + + +

                                                                                            Current fpdi instance.

                                                                                            + + + protected + Fpdi + $pdf + + + + + + +
                                                                                            +
                                                                                            +

                                                                                            + $template + + + +

                                                                                            + + +

                                                                                            Master pdf template.

                                                                                            + + + protected + string + $template + + + + + + +
                                                                                            +
                                                                                            + +
                                                                                            +

                                                                                            + Methods + +

                                                                                            +
                                                                                            +

                                                                                            + __construct() + +

                                                                                            + + +

                                                                                            TCPDFWriter constructor.

                                                                                            + + + public + __construct() : mixed + + + + + +
                                                                                            Return values
                                                                                            + mixed + — + + +
                                                                                            +
                                                                                            +

                                                                                            + addFont() + +

                                                                                            + + + + + public + addFont( $family,  $weight,  $filename) : mixed + + +
                                                                                            Parameters
                                                                                            +
                                                                                            +
                                                                                            + $family + : +
                                                                                            +
                                                                                            + +
                                                                                            +
                                                                                            + $weight + : +
                                                                                            +
                                                                                            + +
                                                                                            +
                                                                                            + $filename + : +
                                                                                            +
                                                                                            +

                                                                                            string The absolute filename including path

                                                                                            +
                                                                                            + +
                                                                                            +
                                                                                            + + + +
                                                                                            Return values
                                                                                            + mixed + — + + +
                                                                                            +
                                                                                            +

                                                                                            + generate() + +

                                                                                            + + +

                                                                                            Generate the pdf.

                                                                                            + + + public + generate([string $mode = self::OUTPUT_MODE_DOWNLOAD ]) : void + + +
                                                                                            Parameters
                                                                                            +
                                                                                            +
                                                                                            + $mode + : string + = self::OUTPUT_MODE_DOWNLOAD
                                                                                            +
                                                                                            + +
                                                                                            +
                                                                                            + + + +
                                                                                            Return values
                                                                                            + void + — + + +
                                                                                            +
                                                                                            +

                                                                                            + getConfig() + +

                                                                                            + + +

                                                                                            Get the pdf config.

                                                                                            + + + public + getConfig() : array<string|int, mixed> + + + + + +
                                                                                            Return values
                                                                                            + array<string|int, mixed> + — + + +
                                                                                            +
                                                                                            +

                                                                                            + getFileName() + +

                                                                                            + + +

                                                                                            Get the pdf file name.

                                                                                            + + + public + getFileName() : string + + + + + +
                                                                                            Return values
                                                                                            + string + — + + +
                                                                                            +
                                                                                            +

                                                                                            + getFolder() + +

                                                                                            + + + + + public + getFolder() : string + + + + + +
                                                                                            Return values
                                                                                            + string + — + + +
                                                                                            +
                                                                                            +

                                                                                            + getHtml() + +

                                                                                            + + +

                                                                                            Get html including styles.

                                                                                            + + + public + getHtml() : string + + + + + +
                                                                                            Return values
                                                                                            + string + — + + +
                                                                                            +
                                                                                            +

                                                                                            + getPdf() + +

                                                                                            + + +

                                                                                            Get current pdf object.

                                                                                            + + + public + getPdf([bool $init = false ]) : Fpdi + + +
                                                                                            Parameters
                                                                                            +
                                                                                            +
                                                                                            + $init + : bool + = false
                                                                                            +
                                                                                            +

                                                                                            Set true if you want to create a new pdf regardless there is always an existing pdf

                                                                                            +
                                                                                            + +
                                                                                            +
                                                                                            + + + +
                                                                                            Return values
                                                                                            + Fpdi + — + + +
                                                                                            +
                                                                                            +

                                                                                            + getTemplate() + +

                                                                                            + + +

                                                                                            Get the master template path.

                                                                                            + + + public + getTemplate() : string + + + + + +
                                                                                            Return values
                                                                                            + string + — + + +
                                                                                            +
                                                                                            +

                                                                                            + isPrepared() + +

                                                                                            + + +

                                                                                            Check if prepare was already triggered.

                                                                                            + + + public + isPrepared() : bool + + + + + +
                                                                                            Return values
                                                                                            + bool + — + + +
                                                                                            +
                                                                                            +

                                                                                            + mergeConfig() + +

                                                                                            + + +

                                                                                            Merge current pdf config with given.

                                                                                            + + + public + mergeConfig(array<string|int, mixed> $config) : PdfWriter + + +
                                                                                            Parameters
                                                                                            +
                                                                                            +
                                                                                            + $config + : array<string|int, mixed> +
                                                                                            +
                                                                                            +
                                                                                            + +
                                                                                            +
                                                                                            + + + +
                                                                                            Return values
                                                                                            + PdfWriter + — +

                                                                                            Current pdf writer instance

                                                                                            +
                                                                                            + + +
                                                                                            +
                                                                                            +

                                                                                            + prepare() + +

                                                                                            + + +

                                                                                            Prepare the current fpdi object.

                                                                                            + + + public + prepare() : Fpdi + + + + + +
                                                                                            Return values
                                                                                            + Fpdi + — + + +
                                                                                            +
                                                                                            +

                                                                                            + setConfig() + +

                                                                                            + + +

                                                                                            Set pdf config, replace default with custom config.

                                                                                            + + + public + setConfig(array<string|int, mixed> $config) : PdfWriter + + +
                                                                                            Parameters
                                                                                            +
                                                                                            +
                                                                                            + $config + : array<string|int, mixed> +
                                                                                            +
                                                                                            +
                                                                                            + +
                                                                                            +
                                                                                            + + + +
                                                                                            Return values
                                                                                            + PdfWriter + — +

                                                                                            Current pdf writer instance

                                                                                            +
                                                                                            + + +
                                                                                            +
                                                                                            +

                                                                                            + setDefaultConfig() + +

                                                                                            + + + + + public + setDefaultConfig() : mixed + +
                                                                                            + + + + +
                                                                                            Return values
                                                                                            + mixed + — + + +
                                                                                            +
                                                                                            +

                                                                                            + setFileName() + +

                                                                                            + + +

                                                                                            Set the pdf filename.

                                                                                            + + + public + setFileName(string $fileName) : PdfWriter + + +
                                                                                            Parameters
                                                                                            +
                                                                                            +
                                                                                            + $fileName + : string +
                                                                                            +
                                                                                            +
                                                                                            + +
                                                                                            +
                                                                                            + + + +
                                                                                            Return values
                                                                                            + PdfWriter + — +

                                                                                            Current pdf writer instance

                                                                                            +
                                                                                            + + +
                                                                                            +
                                                                                            +

                                                                                            + setFolder() + +

                                                                                            + + + + + public + setFolder(string $folder) : void + +
                                                                                            + +
                                                                                            Parameters
                                                                                            +
                                                                                            +
                                                                                            + $folder + : string +
                                                                                            +
                                                                                            +
                                                                                            + +
                                                                                            +
                                                                                            + + + +
                                                                                            Return values
                                                                                            + void + — + + +
                                                                                            +
                                                                                            +

                                                                                            + setHtml() + +

                                                                                            + + +

                                                                                            Set html including styles.

                                                                                            + + + public + setHtml(string $html) : PdfWriter + + +
                                                                                            Parameters
                                                                                            +
                                                                                            +
                                                                                            + $html + : string +
                                                                                            +
                                                                                            +
                                                                                            + +
                                                                                            +
                                                                                            + + + +
                                                                                            Return values
                                                                                            + PdfWriter + — + + +
                                                                                            +
                                                                                            +

                                                                                            + setTemplate() + +

                                                                                            + + +

                                                                                            Set the master template path.

                                                                                            + + + public + setTemplate(string $template) : PdfWriter + + +
                                                                                            Parameters
                                                                                            +
                                                                                            +
                                                                                            + $template + : string +
                                                                                            +
                                                                                            +
                                                                                            + +
                                                                                            +
                                                                                            + + + +
                                                                                            Return values
                                                                                            + PdfWriter + — +

                                                                                            Current pdf writer instance

                                                                                            +
                                                                                            + + +
                                                                                            +
                                                                                            + + + + +
                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            +

                                                                                            Search results

                                                                                            + +
                                                                                            +
                                                                                            +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + + +
                                                                                              + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-Pdf-PdfPreview.html b/classes/HeimrichHannot-UtilsBundle-Pdf-PdfPreview.html new file mode 100644 index 00000000..3f3a7af8 --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-Pdf-PdfPreview.html @@ -0,0 +1,808 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                              +

                                                                                              Contao Utils Bundle

                                                                                              + + + + + +
                                                                                              + +
                                                                                              +
                                                                                              + + + + +
                                                                                              + + +
                                                                                              +

                                                                                              + PdfPreview + + +
                                                                                              + in package + +
                                                                                              + + +

                                                                                              + + + + +
                                                                                              + + + + + + + + +

                                                                                              + Table of Contents + +

                                                                                              + +
                                                                                              +
                                                                                              + $containerUtil + +  : ContainerUtil +
                                                                                              +
                                                                                              + +
                                                                                              + $fileStorageUtil + +  : FileStorageUtil +
                                                                                              +
                                                                                              + +
                                                                                              + $projectDir + +  : string +
                                                                                              +
                                                                                              + +
                                                                                              + $utilsConfig + +  : array<string|int, mixed> +
                                                                                              +
                                                                                              + +
                                                                                              + __construct() + +  : mixed +
                                                                                              +
                                                                                              + +
                                                                                              + generatePdfPreview() + +  : bool +
                                                                                              +
                                                                                              Generate a image preview of the given pdf.
                                                                                              + +
                                                                                              + getCachedPdfPreview() + +  : string +
                                                                                              +
                                                                                              + +
                                                                                              + alchemyPdf() + +  : bool +
                                                                                              +
                                                                                              + +
                                                                                              + spatiePdf() + +  : bool +
                                                                                              +
                                                                                              + +
                                                                                              + + + + + + +
                                                                                              +

                                                                                              + Properties + +

                                                                                              + + +
                                                                                              +

                                                                                              + $projectDir + + + +

                                                                                              + + + + + private + string + $projectDir + + + + + + +
                                                                                              +
                                                                                              +

                                                                                              + $utilsConfig + + + +

                                                                                              + + + + + private + array<string|int, mixed> + $utilsConfig + + + + + + +
                                                                                              +
                                                                                              + +
                                                                                              +

                                                                                              + Methods + +

                                                                                              +
                                                                                              +

                                                                                              + __construct() + +

                                                                                              + + + + + public + __construct(array<string|int, mixed> $utilsConfig, FileStorageUtil $fileStorageUtil, ContainerUtil $containerUtil, string $projectDir) : mixed + +
                                                                                              + +
                                                                                              Parameters
                                                                                              +
                                                                                              +
                                                                                              + $utilsConfig + : array<string|int, mixed> +
                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                              + $fileStorageUtil + : FileStorageUtil +
                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                              + $containerUtil + : ContainerUtil +
                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                              + $projectDir + : string +
                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                              + + + +
                                                                                              Return values
                                                                                              + mixed + — + + +
                                                                                              +
                                                                                              +

                                                                                              + generatePdfPreview() + +

                                                                                              + + +

                                                                                              Generate a image preview of the given pdf.

                                                                                              + + + public + generatePdfPreview(string $pdfPath, string $imagePath[, array<string|int, mixed> $options = [] ]) : bool + +

                                                                                              Possible PdfTranscoder: spatie (spatie/pdf-to-image), alchemy (alchemy/ghostscript)

                                                                                              +

                                                                                              Possible file extensions: jpg, jpeg, png

                                                                                              +

                                                                                              Additional options:

                                                                                              +
                                                                                                +
                                                                                              • string pdfTranscoder The pdf transcoder to use (default: spatie)
                                                                                              • +
                                                                                              • int page The page to render (default: 1)
                                                                                              • +
                                                                                              • int compressionQuality Pdf compression quality (default: null) (spatie only)
                                                                                              • +
                                                                                              • int resolution Raster resolution (default: 144)(spatie only)
                                                                                              • +
                                                                                              • bool absolutePdfPath Set true if pdf path is absolute (default: false)
                                                                                              • +
                                                                                              • bool absoluteImagePath Set true if image path is absolute (default: false)
                                                                                              • +
                                                                                              +
                                                                                              + +
                                                                                              Parameters
                                                                                              +
                                                                                              +
                                                                                              + $pdfPath + : string +
                                                                                              +
                                                                                              +

                                                                                              the relative path to the pdf file

                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                              + $imagePath + : string +
                                                                                              +
                                                                                              +

                                                                                              the relative path where the image file should be saved (including file name and extension)

                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                              + $options + : array<string|int, mixed> + = []
                                                                                              +
                                                                                              +

                                                                                              Additional rendering options

                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                              + + +
                                                                                              + Tags + +
                                                                                              +
                                                                                              +
                                                                                              + throws +
                                                                                              +
                                                                                              + Exception + + +
                                                                                              +
                                                                                              + +
                                                                                              Return values
                                                                                              + bool + — + + +
                                                                                              +
                                                                                              +

                                                                                              + getCachedPdfPreview() + +

                                                                                              + + + + + public + getCachedPdfPreview(string $pdfPath[, array<string|int, mixed> $options = [] ][, string $fileExtension = 'jpg' ]) : string + + +
                                                                                              Parameters
                                                                                              +
                                                                                              +
                                                                                              + $pdfPath + : string +
                                                                                              +
                                                                                              +

                                                                                              The path to the pdf file

                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                              + $options + : array<string|int, mixed> + = []
                                                                                              +
                                                                                              +

                                                                                              Additional rendering options. See generatePdfPreview

                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                              + $fileExtension + : string + = 'jpg'
                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                              + + +
                                                                                              + Tags + +
                                                                                              +
                                                                                              +
                                                                                              + throws +
                                                                                              +
                                                                                              + Exception + + +
                                                                                              +
                                                                                              + +
                                                                                              Return values
                                                                                              + string + — + + +
                                                                                              +
                                                                                              +

                                                                                              + alchemyPdf() + +

                                                                                              + + + + + protected + alchemyPdf(string $pdfPath, string $imagePath[, array<string|int, mixed> $options = [] ]) : bool + + +
                                                                                              Parameters
                                                                                              +
                                                                                              +
                                                                                              + $pdfPath + : string +
                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                              + $imagePath + : string +
                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                              + $options + : array<string|int, mixed> + = []
                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                              + + +
                                                                                              + Tags + +
                                                                                              +
                                                                                              +
                                                                                              + throws +
                                                                                              +
                                                                                              + Exception + + +
                                                                                              +
                                                                                              + +
                                                                                              Return values
                                                                                              + bool + — + + +
                                                                                              +
                                                                                              +

                                                                                              + spatiePdf() + +

                                                                                              + + + + + protected + spatiePdf(string $pdfPath, string $imagePath[, array<string|int, mixed> $options = [] ]) : bool + + +
                                                                                              Parameters
                                                                                              +
                                                                                              +
                                                                                              + $pdfPath + : string +
                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                              + $imagePath + : string +
                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                              + $options + : array<string|int, mixed> + = []
                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                              + + +
                                                                                              + Tags + +
                                                                                              +
                                                                                              +
                                                                                              + throws +
                                                                                              +
                                                                                              + Exception + + +
                                                                                              +
                                                                                              + +
                                                                                              Return values
                                                                                              + bool + — + + +
                                                                                              +
                                                                                              + + + + +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +

                                                                                              Search results

                                                                                              + +
                                                                                              +
                                                                                              +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + +
                                                                                                + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-Pdf-PdfWriter.html b/classes/HeimrichHannot-UtilsBundle-Pdf-PdfWriter.html new file mode 100644 index 00000000..4736675a --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-Pdf-PdfWriter.html @@ -0,0 +1,1515 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                +

                                                                                                Contao Utils Bundle

                                                                                                + + + + + +
                                                                                                + +
                                                                                                +
                                                                                                + + + + +
                                                                                                + + +
                                                                                                +

                                                                                                + PdfWriter + + + extends AbstractPdfWriter + + +
                                                                                                + in package + +
                                                                                                + + +

                                                                                                + + + +

                                                                                                Class PdfWriter.

                                                                                                + + + +
                                                                                                + Tags + +
                                                                                                +
                                                                                                +
                                                                                                + deprecated +
                                                                                                +
                                                                                                + +

                                                                                                Use PdfCreatorFactory::createInstance(MpdfCreator::getType()) instead

                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + + + + + + +

                                                                                                + Table of Contents + +

                                                                                                + +
                                                                                                +
                                                                                                + OUTPUT_MODE_DOWNLOAD + +  = 'download' +
                                                                                                +
                                                                                                + +
                                                                                                + OUTPUT_MODE_FILE + +  = 'file' +
                                                                                                +
                                                                                                + +
                                                                                                + OUTPUT_MODE_INLINE + +  = 'inline' +
                                                                                                +
                                                                                                + +
                                                                                                + OUTPUT_MODES + +  = [self::OUTPUT_MODE_DOWNLOAD, self::OUTPUT_MODE_FILE, self::OUTPUT_MODE_INLINE] +
                                                                                                +
                                                                                                + +
                                                                                                + $config + +  : array<string|int, mixed> +
                                                                                                +
                                                                                                Pdf configuration.
                                                                                                + +
                                                                                                + $fileName + +  : string +
                                                                                                +
                                                                                                Pdf file name.
                                                                                                + +
                                                                                                + $folder + +  : string +
                                                                                                +
                                                                                                The folder in case of saving to file.
                                                                                                + +
                                                                                                + $html + +  : string +
                                                                                                +
                                                                                                Pdf html content including styles.
                                                                                                + +
                                                                                                + $isPrepared + +  : bool +
                                                                                                +
                                                                                                + +
                                                                                                + $pdf + +  : Mpdf +
                                                                                                +
                                                                                                Current mpdf instance.
                                                                                                + +
                                                                                                + $template + +  : string +
                                                                                                +
                                                                                                Master pdf template.
                                                                                                + +
                                                                                                + __construct() + +  : mixed +
                                                                                                +
                                                                                                constructor.
                                                                                                + +
                                                                                                + addFontDirectories() + +  : PdfWriter +
                                                                                                +
                                                                                                Add font directories to the config.
                                                                                                + +
                                                                                                + generate() + +  : void +
                                                                                                +
                                                                                                Generate the pdf.
                                                                                                + +
                                                                                                + getConfig() + +  : array<string|int, mixed> +
                                                                                                +
                                                                                                Get the pdf config.
                                                                                                + +
                                                                                                + getFileName() + +  : string +
                                                                                                +
                                                                                                Get the pdf file name.
                                                                                                + +
                                                                                                + getFolder() + +  : string +
                                                                                                +
                                                                                                + +
                                                                                                + getHtml() + +  : string +
                                                                                                +
                                                                                                Get html including styles.
                                                                                                + +
                                                                                                + getPdf() + +  : Mpdf +
                                                                                                +
                                                                                                Get current pdf object.
                                                                                                + +
                                                                                                + getTemplate() + +  : string +
                                                                                                +
                                                                                                Get the master template path.
                                                                                                + +
                                                                                                + isPrepared() + +  : bool +
                                                                                                +
                                                                                                Check if prepare was already triggered.
                                                                                                + +
                                                                                                + mergeConfig() + +  : PdfWriter +
                                                                                                +
                                                                                                Merge current pdf config with given.
                                                                                                + +
                                                                                                + prepare() + +  : Mpdf +
                                                                                                +
                                                                                                Prepare the current mpdf object.
                                                                                                + +
                                                                                                + setConfig() + +  : PdfWriter +
                                                                                                +
                                                                                                Set pdf config, replace default with custom config.
                                                                                                + +
                                                                                                + setDefaultConfig() + +  : mixed +
                                                                                                +
                                                                                                + +
                                                                                                + setFileName() + +  : PdfWriter +
                                                                                                +
                                                                                                Set the pdf filename.
                                                                                                + +
                                                                                                + setFolder() + +  : void +
                                                                                                +
                                                                                                + +
                                                                                                + setHtml() + +  : PdfWriter +
                                                                                                +
                                                                                                Set html including styles.
                                                                                                + +
                                                                                                + setTemplate() + +  : PdfWriter +
                                                                                                +
                                                                                                Set the master template path.
                                                                                                + +
                                                                                                + + + + +
                                                                                                +

                                                                                                + Constants + +

                                                                                                +
                                                                                                +

                                                                                                + OUTPUT_MODE_DOWNLOAD + +

                                                                                                + + + + + + public + mixed + OUTPUT_MODE_DOWNLOAD + = 'download' + + + +
                                                                                                + +
                                                                                                + + + +
                                                                                                +
                                                                                                +

                                                                                                + OUTPUT_MODE_FILE + +

                                                                                                + + + + + + public + mixed + OUTPUT_MODE_FILE + = 'file' + + + +
                                                                                                + +
                                                                                                + + + +
                                                                                                +
                                                                                                +

                                                                                                + OUTPUT_MODE_INLINE + +

                                                                                                + + + + + + public + mixed + OUTPUT_MODE_INLINE + = 'inline' + + + +
                                                                                                + +
                                                                                                + + + +
                                                                                                +
                                                                                                +

                                                                                                + OUTPUT_MODES + +

                                                                                                + + + + + + public + mixed + OUTPUT_MODES + = [self::OUTPUT_MODE_DOWNLOAD, self::OUTPUT_MODE_FILE, self::OUTPUT_MODE_INLINE] + + + +
                                                                                                + +
                                                                                                + + + +
                                                                                                +
                                                                                                + + +
                                                                                                +

                                                                                                + Properties + +

                                                                                                +
                                                                                                +

                                                                                                + $config + + + +

                                                                                                + + +

                                                                                                Pdf configuration.

                                                                                                + + + protected + array<string|int, mixed> + $config + = [] + + + + + +
                                                                                                +
                                                                                                +

                                                                                                + $fileName + + + +

                                                                                                + + +

                                                                                                Pdf file name.

                                                                                                + + + protected + string + $fileName + + + + + + +
                                                                                                +
                                                                                                +

                                                                                                + $folder + + + +

                                                                                                + + +

                                                                                                The folder in case of saving to file.

                                                                                                + + + protected + string + $folder + + + + + + +
                                                                                                +
                                                                                                +

                                                                                                + $html + + + +

                                                                                                + + +

                                                                                                Pdf html content including styles.

                                                                                                + + + protected + string + $html + + + + + + +
                                                                                                +
                                                                                                +

                                                                                                + $isPrepared + + + +

                                                                                                + + + + + protected + bool + $isPrepared + = false + + + + + +
                                                                                                +
                                                                                                +

                                                                                                + $pdf + + + +

                                                                                                + + +

                                                                                                Current mpdf instance.

                                                                                                + + + protected + Mpdf + $pdf + + + + + + +
                                                                                                +
                                                                                                +

                                                                                                + $template + + + +

                                                                                                + + +

                                                                                                Master pdf template.

                                                                                                + + + protected + string + $template + + + + + + +
                                                                                                +
                                                                                                + +
                                                                                                +

                                                                                                + Methods + +

                                                                                                +
                                                                                                +

                                                                                                + __construct() + +

                                                                                                + + +

                                                                                                constructor.

                                                                                                + + + public + __construct() : mixed + + + + + +
                                                                                                Return values
                                                                                                + mixed + — + + +
                                                                                                +
                                                                                                +

                                                                                                + addFontDirectories() + +

                                                                                                + + +

                                                                                                Add font directories to the config.

                                                                                                + + + public + addFontDirectories(array<string|int, mixed> $paths) : PdfWriter + + +
                                                                                                Parameters
                                                                                                +
                                                                                                +
                                                                                                + $paths + : array<string|int, mixed> +
                                                                                                +
                                                                                                +

                                                                                                Directory pathseader

                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + + + +
                                                                                                Return values
                                                                                                + PdfWriter + — +

                                                                                                Current pdf writer instance

                                                                                                +
                                                                                                + + +
                                                                                                +
                                                                                                +

                                                                                                + generate() + +

                                                                                                + + +

                                                                                                Generate the pdf.

                                                                                                + + + public + generate([string $mode = self::OUTPUT_MODE_DOWNLOAD ]) : void + + +
                                                                                                Parameters
                                                                                                +
                                                                                                +
                                                                                                + $mode + : string + = self::OUTPUT_MODE_DOWNLOAD
                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + + + +
                                                                                                Return values
                                                                                                + void + — + + +
                                                                                                +
                                                                                                +

                                                                                                + getConfig() + +

                                                                                                + + +

                                                                                                Get the pdf config.

                                                                                                + + + public + getConfig() : array<string|int, mixed> + + + + + +
                                                                                                Return values
                                                                                                + array<string|int, mixed> + — + + +
                                                                                                +
                                                                                                +

                                                                                                + getFileName() + +

                                                                                                + + +

                                                                                                Get the pdf file name.

                                                                                                + + + public + getFileName() : string + + + + + +
                                                                                                Return values
                                                                                                + string + — + + +
                                                                                                +
                                                                                                +

                                                                                                + getFolder() + +

                                                                                                + + + + + public + getFolder() : string + + + + + +
                                                                                                Return values
                                                                                                + string + — + + +
                                                                                                +
                                                                                                +

                                                                                                + getHtml() + +

                                                                                                + + +

                                                                                                Get html including styles.

                                                                                                + + + public + getHtml() : string + + + + + +
                                                                                                Return values
                                                                                                + string + — + + +
                                                                                                +
                                                                                                +

                                                                                                + getPdf() + +

                                                                                                + + +

                                                                                                Get current pdf object.

                                                                                                + + + public + getPdf([bool $init = false ]) : Mpdf + + +
                                                                                                Parameters
                                                                                                +
                                                                                                +
                                                                                                + $init + : bool + = false
                                                                                                +
                                                                                                +

                                                                                                Set true if you want to create a new pdf regardless there is always an existing pdf

                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + + + +
                                                                                                Return values
                                                                                                + Mpdf + — + + +
                                                                                                +
                                                                                                +

                                                                                                + getTemplate() + +

                                                                                                + + +

                                                                                                Get the master template path.

                                                                                                + + + public + getTemplate() : string + + + + + +
                                                                                                Return values
                                                                                                + string + — + + +
                                                                                                +
                                                                                                +

                                                                                                + isPrepared() + +

                                                                                                + + +

                                                                                                Check if prepare was already triggered.

                                                                                                + + + public + isPrepared() : bool + + + + + +
                                                                                                Return values
                                                                                                + bool + — + + +
                                                                                                +
                                                                                                +

                                                                                                + mergeConfig() + +

                                                                                                + + +

                                                                                                Merge current pdf config with given.

                                                                                                + + + public + mergeConfig(array<string|int, mixed> $config) : PdfWriter + + +
                                                                                                Parameters
                                                                                                +
                                                                                                +
                                                                                                + $config + : array<string|int, mixed> +
                                                                                                +
                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + + + +
                                                                                                Return values
                                                                                                + PdfWriter + — +

                                                                                                Current pdf writer instance

                                                                                                +
                                                                                                + + +
                                                                                                +
                                                                                                +

                                                                                                + prepare() + +

                                                                                                + + +

                                                                                                Prepare the current mpdf object.

                                                                                                + + + public + prepare() : Mpdf + + + + + +
                                                                                                Return values
                                                                                                + Mpdf + — + + +
                                                                                                +
                                                                                                +

                                                                                                + setConfig() + +

                                                                                                + + +

                                                                                                Set pdf config, replace default with custom config.

                                                                                                + + + public + setConfig(array<string|int, mixed> $config) : PdfWriter + + +
                                                                                                Parameters
                                                                                                +
                                                                                                +
                                                                                                + $config + : array<string|int, mixed> +
                                                                                                +
                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + + + +
                                                                                                Return values
                                                                                                + PdfWriter + — +

                                                                                                Current pdf writer instance

                                                                                                +
                                                                                                + + +
                                                                                                +
                                                                                                +

                                                                                                + setDefaultConfig() + +

                                                                                                + + + + + public + setDefaultConfig() : mixed + +
                                                                                                + + + + +
                                                                                                Return values
                                                                                                + mixed + — + + +
                                                                                                +
                                                                                                +

                                                                                                + setFileName() + +

                                                                                                + + +

                                                                                                Set the pdf filename.

                                                                                                + + + public + setFileName(string $fileName) : PdfWriter + + +
                                                                                                Parameters
                                                                                                +
                                                                                                +
                                                                                                + $fileName + : string +
                                                                                                +
                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + + + +
                                                                                                Return values
                                                                                                + PdfWriter + — +

                                                                                                Current pdf writer instance

                                                                                                +
                                                                                                + + +
                                                                                                +
                                                                                                +

                                                                                                + setFolder() + +

                                                                                                + + + + + public + setFolder(string $folder) : void + +
                                                                                                + +
                                                                                                Parameters
                                                                                                +
                                                                                                +
                                                                                                + $folder + : string +
                                                                                                +
                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + + + +
                                                                                                Return values
                                                                                                + void + — + + +
                                                                                                +
                                                                                                +

                                                                                                + setHtml() + +

                                                                                                + + +

                                                                                                Set html including styles.

                                                                                                + + + public + setHtml(string $html) : PdfWriter + + +
                                                                                                Parameters
                                                                                                +
                                                                                                +
                                                                                                + $html + : string +
                                                                                                +
                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + + + +
                                                                                                Return values
                                                                                                + PdfWriter + — + + +
                                                                                                +
                                                                                                +

                                                                                                + setTemplate() + +

                                                                                                + + +

                                                                                                Set the master template path.

                                                                                                + + + public + setTemplate(string $template) : PdfWriter + + +
                                                                                                Parameters
                                                                                                +
                                                                                                +
                                                                                                + $template + : string +
                                                                                                +
                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + + + +
                                                                                                Return values
                                                                                                + PdfWriter + — +

                                                                                                Current pdf writer instance

                                                                                                +
                                                                                                + + +
                                                                                                +
                                                                                                + + + + +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +

                                                                                                Search results

                                                                                                + +
                                                                                                +
                                                                                                +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  + + +
                                                                                                  + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-PdfCreator-AbstractPdfCreator.html b/classes/HeimrichHannot-UtilsBundle-PdfCreator-AbstractPdfCreator.html new file mode 100644 index 00000000..86051231 --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-PdfCreator-AbstractPdfCreator.html @@ -0,0 +1,2435 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                  +

                                                                                                  Contao Utils Bundle

                                                                                                  + + + + + +
                                                                                                  + +
                                                                                                  +
                                                                                                  + + + + +
                                                                                                  + + +
                                                                                                  +

                                                                                                  + AbstractPdfCreator + + +
                                                                                                  + in package + +
                                                                                                  + + +

                                                                                                  + + + +

                                                                                                  Class AbstractPdfCreator.

                                                                                                  + + + +
                                                                                                  + Tags + +
                                                                                                  +
                                                                                                  +
                                                                                                  + deprecated +
                                                                                                  +
                                                                                                  + +

                                                                                                  PdfCreator was moved into it's own bundle (heimrichhannot/pdf-creator)

                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  + + + + + + +

                                                                                                  + Table of Contents + +

                                                                                                  + +
                                                                                                  +
                                                                                                  + FONT_STYLE_BOLD + +  = 'bold' +
                                                                                                  +
                                                                                                  + +
                                                                                                  + FONT_STYLE_BOLDITALIC + +  = 'bolditalic' +
                                                                                                  +
                                                                                                  + +
                                                                                                  + FONT_STYLE_ITALIC + +  = 'italic' +
                                                                                                  +
                                                                                                  + +
                                                                                                  + FONT_STYLE_REGUALAR + +  = 'regular' +
                                                                                                  +
                                                                                                  + +
                                                                                                  + ORIENTATION_LANDSCAPE + +  = 'landscape' +
                                                                                                  +
                                                                                                  + +
                                                                                                  + ORIENTATION_PORTRAIT + +  = 'portrait' +
                                                                                                  +
                                                                                                  + +
                                                                                                  + OUTPUT_MODE_DOWNLOAD + +  = 'download' +
                                                                                                  +
                                                                                                  + +
                                                                                                  + OUTPUT_MODE_FILE + +  = 'file' +
                                                                                                  +
                                                                                                  + +
                                                                                                  + OUTPUT_MODE_INLINE + +  = 'inline' +
                                                                                                  +
                                                                                                  + +
                                                                                                  + OUTPUT_MODE_STRING + +  = 'string' +
                                                                                                  +
                                                                                                  + +
                                                                                                  + OUTPUT_MODES + +  = [self::OUTPUT_MODE_DOWNLOAD, self::OUTPUT_MODE_FILE, self::OUTPUT_MODE_INLINE, self::OUTPUT_MODE_STRING] +
                                                                                                  +
                                                                                                  + +
                                                                                                  + $beforeCreateInstanceCallback + +  : callable|null +
                                                                                                  +
                                                                                                  + +
                                                                                                  + $beforeOutputPdfCallback + +  : callable|null +
                                                                                                  +
                                                                                                  + +
                                                                                                  + $filename + +  : string|null +
                                                                                                  +
                                                                                                  + +
                                                                                                  + $folder + +  : string|null +
                                                                                                  +
                                                                                                  + +
                                                                                                  + $fonts + +  : array<string|int, mixed>|null +
                                                                                                  +
                                                                                                  + +
                                                                                                  + $format + +  : array<string|int, mixed>|string|null +
                                                                                                  +
                                                                                                  + +
                                                                                                  + $htmlContent + +  : string|null +
                                                                                                  +
                                                                                                  + +
                                                                                                  + $margins + +  : array<string|int, mixed>|null +
                                                                                                  +
                                                                                                  + +
                                                                                                  + $mediaType + +  : string|null +
                                                                                                  +
                                                                                                  + +
                                                                                                  + $orientation + +  : string|null +
                                                                                                  +
                                                                                                  + +
                                                                                                  + $outputMode + +  : string|null +
                                                                                                  +
                                                                                                  + +
                                                                                                  + $templateFilePath + +  : string|null +
                                                                                                  +
                                                                                                  + +
                                                                                                  + addFont() + +  : $this +
                                                                                                  +
                                                                                                  + +
                                                                                                  + getBeforeCreateInstanceCallback() + +  : callable|null +
                                                                                                  +
                                                                                                  + +
                                                                                                  + getBeforeOutputPdfCallback() + +  : callable|null +
                                                                                                  +
                                                                                                  + +
                                                                                                  + getFilename() + +  : string +
                                                                                                  +
                                                                                                  + +
                                                                                                  + getFolder() + +  : string|null +
                                                                                                  +
                                                                                                  + +
                                                                                                  + getFonts() + +  : array<string|int, mixed>|null +
                                                                                                  +
                                                                                                  + +
                                                                                                  + getFormat() + +  : string|null +
                                                                                                  +
                                                                                                  + +
                                                                                                  + getHtmlContent() + +  : mixed +
                                                                                                  +
                                                                                                  + +
                                                                                                  + getMargins() + +  : array<string|int, mixed>|null +
                                                                                                  +
                                                                                                  + +
                                                                                                  + getMediaType() + +  : string|null +
                                                                                                  +
                                                                                                  + +
                                                                                                  + getOrientation() + +  : string|null +
                                                                                                  +
                                                                                                  + +
                                                                                                  + getOutputMode() + +  : string +
                                                                                                  +
                                                                                                  + +
                                                                                                  + getSupportedOutputModes() + +  : array<string|int, mixed> +
                                                                                                  +
                                                                                                  + +
                                                                                                  + getTemplateFilePath() + +  : string|null +
                                                                                                  +
                                                                                                  + +
                                                                                                  + getType() + +  : string +
                                                                                                  +
                                                                                                  Return an unique type alias.
                                                                                                  + +
                                                                                                  + render() + +  : void +
                                                                                                  +
                                                                                                  + +
                                                                                                  + setBeforeCreateInstanceCallback() + +  : self +
                                                                                                  +
                                                                                                  Add an callback to modify constructor parameters for pdf library.
                                                                                                  + +
                                                                                                  + setBeforeOutputPdfCallback() + +  : self +
                                                                                                  +
                                                                                                  Add an callback to modify the configuration or parameters before outputting the pdf file.
                                                                                                  + +
                                                                                                  + setFilename() + +  : self +
                                                                                                  +
                                                                                                  + +
                                                                                                  + setFolder() + +  : self +
                                                                                                  +
                                                                                                  Absolute folder where to store pdf.
                                                                                                  + +
                                                                                                  + setFonts() + +  : self +
                                                                                                  +
                                                                                                  + +
                                                                                                  + setFormat() + +  : $this +
                                                                                                  +
                                                                                                  Set the document format.
                                                                                                  + +
                                                                                                  + setHtmlContent() + +  : self +
                                                                                                  +
                                                                                                  + +
                                                                                                  + setMargins() + +  : self +
                                                                                                  +
                                                                                                  Set document margins.
                                                                                                  + +
                                                                                                  + setMediaType() + +  : self +
                                                                                                  +
                                                                                                  + +
                                                                                                  + setOrientation() + +  : self +
                                                                                                  +
                                                                                                  Set orientation. Use AbstractPdfCreator::ORIENTATION_LANDSCAPE or AbstractPdfCreator::ORIENTATION_PORTRAIT.
                                                                                                  + +
                                                                                                  + setOutputMode() + +  : self +
                                                                                                  +
                                                                                                  + +
                                                                                                  + setTemplateFilePath() + +  : self +
                                                                                                  +
                                                                                                  Set the absolute path to a pdf template file.
                                                                                                  + +
                                                                                                  + + + + +
                                                                                                  +

                                                                                                  + Constants + +

                                                                                                  +
                                                                                                  +

                                                                                                  + FONT_STYLE_BOLD + +

                                                                                                  + + + + + + public + mixed + FONT_STYLE_BOLD + = 'bold' + + + +
                                                                                                  + +
                                                                                                  + + + +
                                                                                                  +
                                                                                                  +

                                                                                                  + FONT_STYLE_BOLDITALIC + +

                                                                                                  + + + + + + public + mixed + FONT_STYLE_BOLDITALIC + = 'bolditalic' + + + +
                                                                                                  + +
                                                                                                  + + + +
                                                                                                  +
                                                                                                  +

                                                                                                  + FONT_STYLE_ITALIC + +

                                                                                                  + + + + + + public + mixed + FONT_STYLE_ITALIC + = 'italic' + + + +
                                                                                                  + +
                                                                                                  + + + +
                                                                                                  +
                                                                                                  +

                                                                                                  + FONT_STYLE_REGUALAR + +

                                                                                                  + + + + + + public + mixed + FONT_STYLE_REGUALAR + = 'regular' + + + +
                                                                                                  + +
                                                                                                  + + + +
                                                                                                  +
                                                                                                  +

                                                                                                  + ORIENTATION_LANDSCAPE + +

                                                                                                  + + + + + + public + mixed + ORIENTATION_LANDSCAPE + = 'landscape' + + + +
                                                                                                  + +
                                                                                                  + + + +
                                                                                                  +
                                                                                                  +

                                                                                                  + ORIENTATION_PORTRAIT + +

                                                                                                  + + + + + + public + mixed + ORIENTATION_PORTRAIT + = 'portrait' + + + +
                                                                                                  + +
                                                                                                  + + + +
                                                                                                  +
                                                                                                  +

                                                                                                  + OUTPUT_MODE_DOWNLOAD + +

                                                                                                  + + + + + + public + mixed + OUTPUT_MODE_DOWNLOAD + = 'download' + + + +
                                                                                                  + +
                                                                                                  + + + +
                                                                                                  +
                                                                                                  +

                                                                                                  + OUTPUT_MODE_FILE + +

                                                                                                  + + + + + + public + mixed + OUTPUT_MODE_FILE + = 'file' + + + +
                                                                                                  + +
                                                                                                  + + + +
                                                                                                  +
                                                                                                  +

                                                                                                  + OUTPUT_MODE_INLINE + +

                                                                                                  + + + + + + public + mixed + OUTPUT_MODE_INLINE + = 'inline' + + + +
                                                                                                  + +
                                                                                                  + + + +
                                                                                                  +
                                                                                                  +

                                                                                                  + OUTPUT_MODE_STRING + +

                                                                                                  + + + + + + public + mixed + OUTPUT_MODE_STRING + = 'string' + + + +
                                                                                                  + +
                                                                                                  + + + +
                                                                                                  +
                                                                                                  +

                                                                                                  + OUTPUT_MODES + +

                                                                                                  + + + + + + public + mixed + OUTPUT_MODES + = [self::OUTPUT_MODE_DOWNLOAD, self::OUTPUT_MODE_FILE, self::OUTPUT_MODE_INLINE, self::OUTPUT_MODE_STRING] + + + +
                                                                                                  + +
                                                                                                  + + + +
                                                                                                  +
                                                                                                  + + +
                                                                                                  +

                                                                                                  + Properties + +

                                                                                                  +
                                                                                                  +

                                                                                                  + $beforeCreateInstanceCallback + + + +

                                                                                                  + + + + + protected + callable|null + $beforeCreateInstanceCallback + + + + + + +
                                                                                                  +
                                                                                                  +

                                                                                                  + $beforeOutputPdfCallback + + + +

                                                                                                  + + + + + protected + callable|null + $beforeOutputPdfCallback + + + + + + +
                                                                                                  +
                                                                                                  +

                                                                                                  + $filename + + + +

                                                                                                  + + + + + protected + string|null + $filename + + + + + + +
                                                                                                  +
                                                                                                  +

                                                                                                  + $folder + + + +

                                                                                                  + + + + + protected + string|null + $folder + + + + + + +
                                                                                                  +
                                                                                                  +

                                                                                                  + $fonts + + + +

                                                                                                  + + + + + protected + array<string|int, mixed>|null + $fonts + + + + + + +
                                                                                                  +
                                                                                                  +

                                                                                                  + $format + + + +

                                                                                                  + + + + + protected + array<string|int, mixed>|string|null + $format + + + + + + +
                                                                                                  +
                                                                                                  +

                                                                                                  + $htmlContent + + + +

                                                                                                  + + + + + protected + string|null + $htmlContent + + + + + + +
                                                                                                  +
                                                                                                  +

                                                                                                  + $margins + + + +

                                                                                                  + + + + + protected + array<string|int, mixed>|null + $margins + + + + + + +
                                                                                                  +
                                                                                                  +

                                                                                                  + $mediaType + + + +

                                                                                                  + + + + + protected + string|null + $mediaType + + + + + + +
                                                                                                  +
                                                                                                  +

                                                                                                  + $orientation + + + +

                                                                                                  + + + + + protected + string|null + $orientation + + + + + + +
                                                                                                  +
                                                                                                  +

                                                                                                  + $outputMode + + + +

                                                                                                  + + + + + protected + string|null + $outputMode + + + + + + +
                                                                                                  +
                                                                                                  +

                                                                                                  + $templateFilePath + + + +

                                                                                                  + + + + + protected + string|null + $templateFilePath + + + + + + +
                                                                                                  +
                                                                                                  + +
                                                                                                  +

                                                                                                  + Methods + +

                                                                                                  +
                                                                                                  +

                                                                                                  + addFont() + +

                                                                                                  + + + + + public + addFont(string $filepath, string $family, string $style, string $weight) : $this + + +
                                                                                                  Parameters
                                                                                                  +
                                                                                                  +
                                                                                                  + $filepath + : string +
                                                                                                  +
                                                                                                  +

                                                                                                  Absolute filepath to the font file

                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  + $family + : string +
                                                                                                  +
                                                                                                  +

                                                                                                  Font family name

                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  + $style + : string +
                                                                                                  +
                                                                                                  +

                                                                                                  Font style (regular, italic, ...), see AbstractPdfCreator::FONT_STYLE constants

                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  + $weight + : string +
                                                                                                  +
                                                                                                  +

                                                                                                  Font weight

                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  + + + +
                                                                                                  Return values
                                                                                                  + $this + — + + +
                                                                                                  +
                                                                                                  +

                                                                                                  + getBeforeCreateInstanceCallback() + +

                                                                                                  + + + + + public + getBeforeCreateInstanceCallback() : callable|null + +
                                                                                                  + + + + +
                                                                                                  Return values
                                                                                                  + callable|null + — + + +
                                                                                                  +
                                                                                                  +

                                                                                                  + getBeforeOutputPdfCallback() + +

                                                                                                  + + + + + public + getBeforeOutputPdfCallback() : callable|null + +
                                                                                                  + + + + +
                                                                                                  Return values
                                                                                                  + callable|null + — + + +
                                                                                                  +
                                                                                                  +

                                                                                                  + getFilename() + +

                                                                                                  + + + + + public + getFilename() : string + + + + + +
                                                                                                  Return values
                                                                                                  + string + — + + +
                                                                                                  +
                                                                                                  +

                                                                                                  + getFolder() + +

                                                                                                  + + + + + public + getFolder() : string|null + +
                                                                                                  + + + + +
                                                                                                  Return values
                                                                                                  + string|null + — + + +
                                                                                                  +
                                                                                                  +

                                                                                                  + getFonts() + +

                                                                                                  + + + + + public + getFonts() : array<string|int, mixed>|null + +
                                                                                                  + + + + +
                                                                                                  Return values
                                                                                                  + array<string|int, mixed>|null + — + + +
                                                                                                  +
                                                                                                  +

                                                                                                  + getFormat() + +

                                                                                                  + + + + + public + getFormat() : string|null + +
                                                                                                  + + + + +
                                                                                                  Return values
                                                                                                  + string|null + — + + +
                                                                                                  +
                                                                                                  +

                                                                                                  + getHtmlContent() + +

                                                                                                  + + + + + public + getHtmlContent() : mixed + + + + + +
                                                                                                  Return values
                                                                                                  + mixed + — + + +
                                                                                                  +
                                                                                                  +

                                                                                                  + getMargins() + +

                                                                                                  + + + + + public + getMargins() : array<string|int, mixed>|null + +
                                                                                                  + + + + +
                                                                                                  Return values
                                                                                                  + array<string|int, mixed>|null + — + + +
                                                                                                  +
                                                                                                  +

                                                                                                  + getMediaType() + +

                                                                                                  + + + + + public + getMediaType() : string|null + +
                                                                                                  + + + + +
                                                                                                  Return values
                                                                                                  + string|null + — + + +
                                                                                                  +
                                                                                                  +

                                                                                                  + getOrientation() + +

                                                                                                  + + + + + public + getOrientation() : string|null + +
                                                                                                  + + + + +
                                                                                                  Return values
                                                                                                  + string|null + — + + +
                                                                                                  +
                                                                                                  +

                                                                                                  + getOutputMode() + +

                                                                                                  + + + + + public + getOutputMode() : string + + + + + +
                                                                                                  Return values
                                                                                                  + string + — + + +
                                                                                                  +
                                                                                                  +

                                                                                                  + getSupportedOutputModes() + +

                                                                                                  + + + + + public + abstract getSupportedOutputModes() : array<string|int, mixed> + +
                                                                                                  + + + + +
                                                                                                  Return values
                                                                                                  + array<string|int, mixed> + — + + +
                                                                                                  +
                                                                                                  +

                                                                                                  + getTemplateFilePath() + +

                                                                                                  + + + + + public + getTemplateFilePath() : string|null + +
                                                                                                  + + + + +
                                                                                                  Return values
                                                                                                  + string|null + — + + +
                                                                                                  +
                                                                                                  +

                                                                                                  + getType() + +

                                                                                                  + + +

                                                                                                  Return an unique type alias.

                                                                                                  + + + public + abstract static getType() : string + + + + + +
                                                                                                  Return values
                                                                                                  + string + — + + +
                                                                                                  +
                                                                                                  +

                                                                                                  + render() + +

                                                                                                  + + + + + public + abstract render() : void + +
                                                                                                  + + + + +
                                                                                                  Return values
                                                                                                  + void + — + + +
                                                                                                  +
                                                                                                  +

                                                                                                  + setBeforeCreateInstanceCallback() + +

                                                                                                  + + +

                                                                                                  Add an callback to modify constructor parameters for pdf library.

                                                                                                  + + + public + setBeforeCreateInstanceCallback(callable|null $beforeCreateInstanceCallback) : self + +

                                                                                                  Callback gets an BeforeCreateLibraryInstanceCallback object as parameter and should return an BeforeCreateLibraryInstanceCallback object.

                                                                                                  +
                                                                                                  + +
                                                                                                  Parameters
                                                                                                  +
                                                                                                  +
                                                                                                  + $beforeCreateInstanceCallback + : callable|null +
                                                                                                  +
                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  + + + +
                                                                                                  Return values
                                                                                                  + self + — + + +
                                                                                                  +
                                                                                                  +

                                                                                                  + setBeforeOutputPdfCallback() + +

                                                                                                  + + +

                                                                                                  Add an callback to modify the configuration or parameters before outputting the pdf file.

                                                                                                  + + + public + setBeforeOutputPdfCallback(callable|null $beforeOutputPdfCallback) : self + +

                                                                                                  Callback gets an BeforeOutputPdfCallback object as parameter and should return an BeforeOutputPdfCallback object.

                                                                                                  +
                                                                                                  + +
                                                                                                  Parameters
                                                                                                  +
                                                                                                  +
                                                                                                  + $beforeOutputPdfCallback + : callable|null +
                                                                                                  +
                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  + + + +
                                                                                                  Return values
                                                                                                  + self + — + + +
                                                                                                  +
                                                                                                  +

                                                                                                  + setFilename() + +

                                                                                                  + + + + + public + setFilename(string $filename) : self + +
                                                                                                  + +
                                                                                                  Parameters
                                                                                                  +
                                                                                                  +
                                                                                                  + $filename + : string +
                                                                                                  +
                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  + + + +
                                                                                                  Return values
                                                                                                  + self + — + + +
                                                                                                  +
                                                                                                  +

                                                                                                  + setFolder() + +

                                                                                                  + + +

                                                                                                  Absolute folder where to store pdf.

                                                                                                  + + + public + setFolder(string $folder) : self + + +
                                                                                                  Parameters
                                                                                                  +
                                                                                                  +
                                                                                                  + $folder + : string +
                                                                                                  +
                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  + + + +
                                                                                                  Return values
                                                                                                  + self + — + + +
                                                                                                  +
                                                                                                  +

                                                                                                  + setFonts() + +

                                                                                                  + + + + + public + setFonts(array<string|int, mixed> $fonts) : self + +
                                                                                                  + +
                                                                                                  Parameters
                                                                                                  +
                                                                                                  +
                                                                                                  + $fonts + : array<string|int, mixed> +
                                                                                                  +
                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  + + + +
                                                                                                  Return values
                                                                                                  + self + — + + +
                                                                                                  +
                                                                                                  +

                                                                                                  + setFormat() + +

                                                                                                  + + +

                                                                                                  Set the document format.

                                                                                                  + + + public + setFormat(string|array<string|int, mixed> $format) : $this + + +
                                                                                                  Parameters
                                                                                                  +
                                                                                                  +
                                                                                                  + $format + : string|array<string|int, mixed> +
                                                                                                  +
                                                                                                  +

                                                                                                  A format type like A4, A5, Letter, Legal,... or an array of integers (width and height in mm).

                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  + + + +
                                                                                                  Return values
                                                                                                  + $this + — + + +
                                                                                                  +
                                                                                                  +

                                                                                                  + setHtmlContent() + +

                                                                                                  + + + + + public + setHtmlContent(mixed $htmlContent) : self + + +
                                                                                                  Parameters
                                                                                                  +
                                                                                                  +
                                                                                                  + $htmlContent + : mixed +
                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  + + + +
                                                                                                  Return values
                                                                                                  + self + — + + +
                                                                                                  +
                                                                                                  +

                                                                                                  + setMargins() + +

                                                                                                  + + +

                                                                                                  Set document margins.

                                                                                                  + + + public + setMargins(int|null $top[, int|null $right = null ][, int|null $bottom = null ][, int|null $left = null ]) : self + + +
                                                                                                  Parameters
                                                                                                  +
                                                                                                  +
                                                                                                  + $top + : int|null +
                                                                                                  +
                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  + $right + : int|null + = null
                                                                                                  +
                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  + $bottom + : int|null + = null
                                                                                                  +
                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  + $left + : int|null + = null
                                                                                                  +
                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  + + + +
                                                                                                  Return values
                                                                                                  + self + — + + +
                                                                                                  +
                                                                                                  +

                                                                                                  + setMediaType() + +

                                                                                                  + + + + + public + setMediaType(string|null $mediaType) : self + + +
                                                                                                  Parameters
                                                                                                  +
                                                                                                  +
                                                                                                  + $mediaType + : string|null +
                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  + + + +
                                                                                                  Return values
                                                                                                  + self + — + + +
                                                                                                  +
                                                                                                  +

                                                                                                  + setOrientation() + +

                                                                                                  + + +

                                                                                                  Set orientation. Use AbstractPdfCreator::ORIENTATION_LANDSCAPE or AbstractPdfCreator::ORIENTATION_PORTRAIT.

                                                                                                  + + + public + setOrientation(string $orientation) : self + + +
                                                                                                  Parameters
                                                                                                  +
                                                                                                  +
                                                                                                  + $orientation + : string +
                                                                                                  +
                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  + + + +
                                                                                                  Return values
                                                                                                  + self + — + + +
                                                                                                  +
                                                                                                  +

                                                                                                  + setOutputMode() + +

                                                                                                  + + + + + public + setOutputMode(string $outputMode) : self + +
                                                                                                  + +
                                                                                                  Parameters
                                                                                                  +
                                                                                                  +
                                                                                                  + $outputMode + : string +
                                                                                                  +
                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  + + + +
                                                                                                  Return values
                                                                                                  + self + — + + +
                                                                                                  +
                                                                                                  +

                                                                                                  + setTemplateFilePath() + +

                                                                                                  + + +

                                                                                                  Set the absolute path to a pdf template file.

                                                                                                  + + + public + setTemplateFilePath(string|null $templateFilePath) : self + + +
                                                                                                  Parameters
                                                                                                  +
                                                                                                  +
                                                                                                  + $templateFilePath + : string|null +
                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  + + + +
                                                                                                  Return values
                                                                                                  + self + — + + +
                                                                                                  +
                                                                                                  + + + + +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +

                                                                                                  Search results

                                                                                                  + +
                                                                                                  +
                                                                                                  +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    + + +
                                                                                                    + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-PdfCreator-BeforeCreateLibraryInstanceCallback.html b/classes/HeimrichHannot-UtilsBundle-PdfCreator-BeforeCreateLibraryInstanceCallback.html new file mode 100644 index 00000000..170420fd --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-PdfCreator-BeforeCreateLibraryInstanceCallback.html @@ -0,0 +1,435 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                    +

                                                                                                    Contao Utils Bundle

                                                                                                    + + + + + +
                                                                                                    + +
                                                                                                    +
                                                                                                    + + + + +
                                                                                                    + + +
                                                                                                    +

                                                                                                    + BeforeCreateLibraryInstanceCallback + + +
                                                                                                    + in package + +
                                                                                                    + + +

                                                                                                    + + + +

                                                                                                    Class BeforeCreateLibraryInstanceCallback.

                                                                                                    + + + +
                                                                                                    + Tags + +
                                                                                                    +
                                                                                                    +
                                                                                                    + deprecated +
                                                                                                    +
                                                                                                    + +

                                                                                                    PdfCreator was moved into it's own bundle (heimrichhannot/pdf-creator)

                                                                                                    +
                                                                                                    + +
                                                                                                    +
                                                                                                    + + + + + + +

                                                                                                    + Table of Contents + +

                                                                                                    + +
                                                                                                    +
                                                                                                    + $constructorParameters + +  : array<string|int, mixed> +
                                                                                                    +
                                                                                                    + +
                                                                                                    + __construct() + +  : mixed +
                                                                                                    +
                                                                                                    BeforeCreateLibraryInstanceCallback constructor.
                                                                                                    + +
                                                                                                    + getConstructorParameters() + +  : array<string|int, mixed> +
                                                                                                    +
                                                                                                    + +
                                                                                                    + setConstructorParameters() + +  : void +
                                                                                                    +
                                                                                                    + +
                                                                                                    + + + + + + +
                                                                                                    +

                                                                                                    + Properties + +

                                                                                                    + +
                                                                                                    + +
                                                                                                    +

                                                                                                    + Methods + +

                                                                                                    +
                                                                                                    +

                                                                                                    + __construct() + +

                                                                                                    + + +

                                                                                                    BeforeCreateLibraryInstanceCallback constructor.

                                                                                                    + + + public + __construct([array<string|int, mixed> $constructorParameters = [] ]) : mixed + + +
                                                                                                    Parameters
                                                                                                    +
                                                                                                    +
                                                                                                    + $constructorParameters + : array<string|int, mixed> + = []
                                                                                                    +
                                                                                                    +
                                                                                                    + +
                                                                                                    +
                                                                                                    + + + +
                                                                                                    Return values
                                                                                                    + mixed + — + + +
                                                                                                    +
                                                                                                    +

                                                                                                    + getConstructorParameters() + +

                                                                                                    + + + + + public + getConstructorParameters() : array<string|int, mixed> + +
                                                                                                    + + + + +
                                                                                                    Return values
                                                                                                    + array<string|int, mixed> + — + + +
                                                                                                    +
                                                                                                    +

                                                                                                    + setConstructorParameters() + +

                                                                                                    + + + + + public + setConstructorParameters(array<string|int, mixed> $constructorParameters) : void + +
                                                                                                    + +
                                                                                                    Parameters
                                                                                                    +
                                                                                                    +
                                                                                                    + $constructorParameters + : array<string|int, mixed> +
                                                                                                    +
                                                                                                    +
                                                                                                    + +
                                                                                                    +
                                                                                                    + + + +
                                                                                                    Return values
                                                                                                    + void + — + + +
                                                                                                    +
                                                                                                    + + + + +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +

                                                                                                    Search results

                                                                                                    + +
                                                                                                    +
                                                                                                    +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      + + +
                                                                                                      + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-PdfCreator-BeforeOutputPdfCallback.html b/classes/HeimrichHannot-UtilsBundle-PdfCreator-BeforeOutputPdfCallback.html new file mode 100644 index 00000000..d9743bac --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-PdfCreator-BeforeOutputPdfCallback.html @@ -0,0 +1,572 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                      +

                                                                                                      Contao Utils Bundle

                                                                                                      + + + + + +
                                                                                                      + +
                                                                                                      +
                                                                                                      + + + + +
                                                                                                      + + +
                                                                                                      +

                                                                                                      + BeforeOutputPdfCallback + + +
                                                                                                      + in package + +
                                                                                                      + + +

                                                                                                      + + + +

                                                                                                      Class BeforeOutputPdfCallback.

                                                                                                      + + + +
                                                                                                      + Tags + +
                                                                                                      +
                                                                                                      +
                                                                                                      + deprecated +
                                                                                                      +
                                                                                                      + +

                                                                                                      PdfCreator was moved into it's own bundle (heimrichhannot/pdf-creator)

                                                                                                      +
                                                                                                      + +
                                                                                                      +
                                                                                                      + + + + + + +

                                                                                                      + Table of Contents + +

                                                                                                      + +
                                                                                                      +
                                                                                                      + $libraryInstance + +  : mixed +
                                                                                                      +
                                                                                                      + +
                                                                                                      + $outputParameters + +  : array<string|int, mixed> +
                                                                                                      +
                                                                                                      + +
                                                                                                      + __construct() + +  : mixed +
                                                                                                      +
                                                                                                      + +
                                                                                                      + getLibraryInstance() + +  : mixed +
                                                                                                      +
                                                                                                      + +
                                                                                                      + getOutputParameters() + +  : array<string|int, mixed> +
                                                                                                      +
                                                                                                      + +
                                                                                                      + setLibraryInstance() + +  : void +
                                                                                                      +
                                                                                                      + +
                                                                                                      + setOutputParameters() + +  : void +
                                                                                                      +
                                                                                                      + +
                                                                                                      + + + + + + +
                                                                                                      +

                                                                                                      + Properties + +

                                                                                                      +
                                                                                                      +

                                                                                                      + $libraryInstance + + + +

                                                                                                      + + + + + protected + mixed + $libraryInstance + + +
                                                                                                      + +
                                                                                                      + + + +
                                                                                                      +
                                                                                                      +

                                                                                                      + $outputParameters + + + +

                                                                                                      + + + + + protected + array<string|int, mixed> + $outputParameters + + + + + + +
                                                                                                      +
                                                                                                      + +
                                                                                                      +

                                                                                                      + Methods + +

                                                                                                      +
                                                                                                      +

                                                                                                      + __construct() + +

                                                                                                      + + + + + public + __construct(mixed $libraryInstance[, array<string|int, mixed> $outputParameters = [] ]) : mixed + +
                                                                                                      + +
                                                                                                      Parameters
                                                                                                      +
                                                                                                      +
                                                                                                      + $libraryInstance + : mixed +
                                                                                                      +
                                                                                                      +
                                                                                                      + +
                                                                                                      +
                                                                                                      + $outputParameters + : array<string|int, mixed> + = []
                                                                                                      +
                                                                                                      +
                                                                                                      + +
                                                                                                      +
                                                                                                      + + + +
                                                                                                      Return values
                                                                                                      + mixed + — + + +
                                                                                                      +
                                                                                                      +

                                                                                                      + getLibraryInstance() + +

                                                                                                      + + + + + public + getLibraryInstance() : mixed + + + + + +
                                                                                                      Return values
                                                                                                      + mixed + — + + +
                                                                                                      +
                                                                                                      +

                                                                                                      + getOutputParameters() + +

                                                                                                      + + + + + public + getOutputParameters() : array<string|int, mixed> + +
                                                                                                      + + + + +
                                                                                                      Return values
                                                                                                      + array<string|int, mixed> + — + + +
                                                                                                      +
                                                                                                      +

                                                                                                      + setLibraryInstance() + +

                                                                                                      + + + + + public + setLibraryInstance(mixed $libraryInstance) : void + + +
                                                                                                      Parameters
                                                                                                      +
                                                                                                      +
                                                                                                      + $libraryInstance + : mixed +
                                                                                                      +
                                                                                                      + +
                                                                                                      +
                                                                                                      + + + +
                                                                                                      Return values
                                                                                                      + void + — + + +
                                                                                                      +
                                                                                                      +

                                                                                                      + setOutputParameters() + +

                                                                                                      + + + + + public + setOutputParameters(array<string|int, mixed> $outputParameters) : void + +
                                                                                                      + +
                                                                                                      Parameters
                                                                                                      +
                                                                                                      +
                                                                                                      + $outputParameters + : array<string|int, mixed> +
                                                                                                      +
                                                                                                      +
                                                                                                      + +
                                                                                                      +
                                                                                                      + + + +
                                                                                                      Return values
                                                                                                      + void + — + + +
                                                                                                      +
                                                                                                      + + + + +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +

                                                                                                      Search results

                                                                                                      + +
                                                                                                      +
                                                                                                      +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + +
                                                                                                        + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-PdfCreator-Concrete-MpdfCreator.html b/classes/HeimrichHannot-UtilsBundle-PdfCreator-Concrete-MpdfCreator.html new file mode 100644 index 00000000..d98c3c6b --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-PdfCreator-Concrete-MpdfCreator.html @@ -0,0 +1,2771 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                        +

                                                                                                        Contao Utils Bundle

                                                                                                        + + + + + +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + + + +
                                                                                                        + + +
                                                                                                        +

                                                                                                        + MpdfCreator + + + extends AbstractPdfCreator + + +
                                                                                                        + in package + +
                                                                                                        + + +

                                                                                                        + + + +

                                                                                                        Class MpdfCreator.

                                                                                                        + + + +
                                                                                                        + Tags + +
                                                                                                        +
                                                                                                        +
                                                                                                        + deprecated +
                                                                                                        +
                                                                                                        + +

                                                                                                        PdfCreator was moved into it's own bundle (heimrichhannot/pdf-creator)

                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + + + + + +

                                                                                                        + Table of Contents + +

                                                                                                        + +
                                                                                                        +
                                                                                                        + FONT_STYLE_BOLD + +  = 'bold' +
                                                                                                        +
                                                                                                        + +
                                                                                                        + FONT_STYLE_BOLDITALIC + +  = 'bolditalic' +
                                                                                                        +
                                                                                                        + +
                                                                                                        + FONT_STYLE_ITALIC + +  = 'italic' +
                                                                                                        +
                                                                                                        + +
                                                                                                        + FONT_STYLE_REGUALAR + +  = 'regular' +
                                                                                                        +
                                                                                                        + +
                                                                                                        + ORIENTATION_LANDSCAPE + +  = 'landscape' +
                                                                                                        +
                                                                                                        + +
                                                                                                        + ORIENTATION_PORTRAIT + +  = 'portrait' +
                                                                                                        +
                                                                                                        + +
                                                                                                        + OUTPUT_MODE_DOWNLOAD + +  = 'download' +
                                                                                                        +
                                                                                                        + +
                                                                                                        + OUTPUT_MODE_FILE + +  = 'file' +
                                                                                                        +
                                                                                                        + +
                                                                                                        + OUTPUT_MODE_INLINE + +  = 'inline' +
                                                                                                        +
                                                                                                        + +
                                                                                                        + OUTPUT_MODE_STRING + +  = 'string' +
                                                                                                        +
                                                                                                        + +
                                                                                                        + OUTPUT_MODES + +  = [self::OUTPUT_MODE_DOWNLOAD, self::OUTPUT_MODE_FILE, self::OUTPUT_MODE_INLINE, self::OUTPUT_MODE_STRING] +
                                                                                                        +
                                                                                                        + +
                                                                                                        + $beforeCreateInstanceCallback + +  : callable|null +
                                                                                                        +
                                                                                                        + +
                                                                                                        + $beforeOutputPdfCallback + +  : callable|null +
                                                                                                        +
                                                                                                        + +
                                                                                                        + $filename + +  : string|null +
                                                                                                        +
                                                                                                        + +
                                                                                                        + $folder + +  : string|null +
                                                                                                        +
                                                                                                        + +
                                                                                                        + $fonts + +  : array<string|int, mixed>|null +
                                                                                                        +
                                                                                                        + +
                                                                                                        + $format + +  : array<string|int, mixed>|string|null +
                                                                                                        +
                                                                                                        + +
                                                                                                        + $htmlContent + +  : string|null +
                                                                                                        +
                                                                                                        + +
                                                                                                        + $legacyFontDirectoryConfig + +  : array<string|int, mixed> +
                                                                                                        +
                                                                                                        + +
                                                                                                        + $margins + +  : array<string|int, mixed>|null +
                                                                                                        +
                                                                                                        + +
                                                                                                        + $mediaType + +  : string|null +
                                                                                                        +
                                                                                                        + +
                                                                                                        + $orientation + +  : string|null +
                                                                                                        +
                                                                                                        + +
                                                                                                        + $outputMode + +  : string|null +
                                                                                                        +
                                                                                                        + +
                                                                                                        + $templateFilePath + +  : string|null +
                                                                                                        +
                                                                                                        + +
                                                                                                        + __construct() + +  : mixed +
                                                                                                        +
                                                                                                        MpdfCreator constructor.
                                                                                                        + +
                                                                                                        + addFont() + +  : $this +
                                                                                                        +
                                                                                                        + +
                                                                                                        + addFontDirectories() + +  : self +
                                                                                                        +
                                                                                                        Add font directories to the config. Directory must contain mpdf-config.php.
                                                                                                        + +
                                                                                                        + getBeforeCreateInstanceCallback() + +  : callable|null +
                                                                                                        +
                                                                                                        + +
                                                                                                        + getBeforeOutputPdfCallback() + +  : callable|null +
                                                                                                        +
                                                                                                        + +
                                                                                                        + getFilename() + +  : string +
                                                                                                        +
                                                                                                        + +
                                                                                                        + getFolder() + +  : string|null +
                                                                                                        +
                                                                                                        + +
                                                                                                        + getFonts() + +  : array<string|int, mixed>|null +
                                                                                                        +
                                                                                                        + +
                                                                                                        + getFormat() + +  : string|null +
                                                                                                        +
                                                                                                        + +
                                                                                                        + getHtmlContent() + +  : mixed +
                                                                                                        +
                                                                                                        + +
                                                                                                        + getMargins() + +  : array<string|int, mixed>|null +
                                                                                                        +
                                                                                                        + +
                                                                                                        + getMediaType() + +  : string|null +
                                                                                                        +
                                                                                                        + +
                                                                                                        + getOrientation() + +  : string|null +
                                                                                                        +
                                                                                                        + +
                                                                                                        + getOutputMode() + +  : string +
                                                                                                        +
                                                                                                        + +
                                                                                                        + getSupportedOutputModes() + +  : array<string|int, mixed> +
                                                                                                        +
                                                                                                        + +
                                                                                                        + getTemplateFilePath() + +  : string|null +
                                                                                                        +
                                                                                                        + +
                                                                                                        + getType() + +  : string +
                                                                                                        +
                                                                                                        Return an unique type alias.
                                                                                                        + +
                                                                                                        + render() + +  : void +
                                                                                                        +
                                                                                                        + +
                                                                                                        + setBeforeCreateInstanceCallback() + +  : self +
                                                                                                        +
                                                                                                        Add an callback to modify constructor parameters for pdf library.
                                                                                                        + +
                                                                                                        + setBeforeOutputPdfCallback() + +  : self +
                                                                                                        +
                                                                                                        Add an callback to modify the configuration or parameters before outputting the pdf file.
                                                                                                        + +
                                                                                                        + setFilename() + +  : self +
                                                                                                        +
                                                                                                        + +
                                                                                                        + setFolder() + +  : self +
                                                                                                        +
                                                                                                        Absolute folder where to store pdf.
                                                                                                        + +
                                                                                                        + setFonts() + +  : self +
                                                                                                        +
                                                                                                        + +
                                                                                                        + setFormat() + +  : $this +
                                                                                                        +
                                                                                                        Set the document format.
                                                                                                        + +
                                                                                                        + setHtmlContent() + +  : self +
                                                                                                        +
                                                                                                        + +
                                                                                                        + setMargins() + +  : self +
                                                                                                        +
                                                                                                        Set document margins.
                                                                                                        + +
                                                                                                        + setMediaType() + +  : self +
                                                                                                        +
                                                                                                        + +
                                                                                                        + setOrientation() + +  : self +
                                                                                                        +
                                                                                                        Set orientation. Use AbstractPdfCreator::ORIENTATION_LANDSCAPE or AbstractPdfCreator::ORIENTATION_PORTRAIT.
                                                                                                        + +
                                                                                                        + setOutputMode() + +  : self +
                                                                                                        +
                                                                                                        + +
                                                                                                        + setTemplateFilePath() + +  : self +
                                                                                                        +
                                                                                                        Set the absolute path to a pdf template file.
                                                                                                        + +
                                                                                                        + applyDocumentFormatConfiguration() + +  : array<string|int, mixed> +
                                                                                                        +
                                                                                                        + +
                                                                                                        + applyFonts() + +  : array<string|int, mixed> +
                                                                                                        +
                                                                                                        + +
                                                                                                        + applyTemplate() + +  : void +
                                                                                                        +
                                                                                                        + +
                                                                                                        + + + + +
                                                                                                        +

                                                                                                        + Constants + +

                                                                                                        +
                                                                                                        +

                                                                                                        + FONT_STYLE_BOLD + +

                                                                                                        + + + + + + public + mixed + FONT_STYLE_BOLD + = 'bold' + + + +
                                                                                                        + +
                                                                                                        + + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + FONT_STYLE_BOLDITALIC + +

                                                                                                        + + + + + + public + mixed + FONT_STYLE_BOLDITALIC + = 'bolditalic' + + + +
                                                                                                        + +
                                                                                                        + + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + FONT_STYLE_ITALIC + +

                                                                                                        + + + + + + public + mixed + FONT_STYLE_ITALIC + = 'italic' + + + +
                                                                                                        + +
                                                                                                        + + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + FONT_STYLE_REGUALAR + +

                                                                                                        + + + + + + public + mixed + FONT_STYLE_REGUALAR + = 'regular' + + + +
                                                                                                        + +
                                                                                                        + + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + ORIENTATION_LANDSCAPE + +

                                                                                                        + + + + + + public + mixed + ORIENTATION_LANDSCAPE + = 'landscape' + + + +
                                                                                                        + +
                                                                                                        + + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + ORIENTATION_PORTRAIT + +

                                                                                                        + + + + + + public + mixed + ORIENTATION_PORTRAIT + = 'portrait' + + + +
                                                                                                        + +
                                                                                                        + + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + OUTPUT_MODE_DOWNLOAD + +

                                                                                                        + + + + + + public + mixed + OUTPUT_MODE_DOWNLOAD + = 'download' + + + +
                                                                                                        + +
                                                                                                        + + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + OUTPUT_MODE_FILE + +

                                                                                                        + + + + + + public + mixed + OUTPUT_MODE_FILE + = 'file' + + + +
                                                                                                        + +
                                                                                                        + + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + OUTPUT_MODE_INLINE + +

                                                                                                        + + + + + + public + mixed + OUTPUT_MODE_INLINE + = 'inline' + + + +
                                                                                                        + +
                                                                                                        + + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + OUTPUT_MODE_STRING + +

                                                                                                        + + + + + + public + mixed + OUTPUT_MODE_STRING + = 'string' + + + +
                                                                                                        + +
                                                                                                        + + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + OUTPUT_MODES + +

                                                                                                        + + + + + + public + mixed + OUTPUT_MODES + = [self::OUTPUT_MODE_DOWNLOAD, self::OUTPUT_MODE_FILE, self::OUTPUT_MODE_INLINE, self::OUTPUT_MODE_STRING] + + + +
                                                                                                        + +
                                                                                                        + + + +
                                                                                                        +
                                                                                                        + + +
                                                                                                        +

                                                                                                        + Properties + +

                                                                                                        +
                                                                                                        +

                                                                                                        + $beforeCreateInstanceCallback + + + +

                                                                                                        + + + + + protected + callable|null + $beforeCreateInstanceCallback + + + + + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + $beforeOutputPdfCallback + + + +

                                                                                                        + + + + + protected + callable|null + $beforeOutputPdfCallback + + + + + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + $filename + + + +

                                                                                                        + + + + + protected + string|null + $filename + + + + + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + $folder + + + +

                                                                                                        + + + + + protected + string|null + $folder + + + + + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + $fonts + + + +

                                                                                                        + + + + + protected + array<string|int, mixed>|null + $fonts + + + + + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + $format + + + +

                                                                                                        + + + + + protected + array<string|int, mixed>|string|null + $format + + + + + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + $htmlContent + + + +

                                                                                                        + + + + + protected + string|null + $htmlContent + + + + + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + $legacyFontDirectoryConfig + + + +

                                                                                                        + + + + + protected + array<string|int, mixed> + $legacyFontDirectoryConfig + + + + + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + $margins + + + +

                                                                                                        + + + + + protected + array<string|int, mixed>|null + $margins + + + + + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + $mediaType + + + +

                                                                                                        + + + + + protected + string|null + $mediaType + + + + + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + $orientation + + + +

                                                                                                        + + + + + protected + string|null + $orientation + + + + + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + $outputMode + + + +

                                                                                                        + + + + + protected + string|null + $outputMode + + + + + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + $templateFilePath + + + +

                                                                                                        + + + + + protected + string|null + $templateFilePath + + + + + + +
                                                                                                        +
                                                                                                        + +
                                                                                                        +

                                                                                                        + Methods + +

                                                                                                        +
                                                                                                        +

                                                                                                        + __construct() + +

                                                                                                        + + +

                                                                                                        MpdfCreator constructor.

                                                                                                        + + + public + __construct() : mixed + + + + + +
                                                                                                        Return values
                                                                                                        + mixed + — + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + addFont() + +

                                                                                                        + + + + + public + addFont(string $filepath, string $family, string $style, string $weight) : $this + + +
                                                                                                        Parameters
                                                                                                        +
                                                                                                        +
                                                                                                        + $filepath + : string +
                                                                                                        +
                                                                                                        +

                                                                                                        Absolute filepath to the font file

                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + $family + : string +
                                                                                                        +
                                                                                                        +

                                                                                                        Font family name

                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + $style + : string +
                                                                                                        +
                                                                                                        +

                                                                                                        Font style (regular, italic, ...), see AbstractPdfCreator::FONT_STYLE constants

                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + $weight + : string +
                                                                                                        +
                                                                                                        +

                                                                                                        Font weight

                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + + +
                                                                                                        Return values
                                                                                                        + $this + — + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + addFontDirectories() + +

                                                                                                        + + +

                                                                                                        Add font directories to the config. Directory must contain mpdf-config.php.

                                                                                                        + + + public + addFontDirectories(array<string|int, mixed> $paths) : self + +

                                                                                                        Fallback method for legacy implementation, will be removed in a future version.

                                                                                                        +
                                                                                                        + +
                                                                                                        Parameters
                                                                                                        +
                                                                                                        +
                                                                                                        + $paths + : array<string|int, mixed> +
                                                                                                        +
                                                                                                        +

                                                                                                        Absolute path to font dir

                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + +
                                                                                                        + Tags + +
                                                                                                        +
                                                                                                        +
                                                                                                        + deprecated +
                                                                                                        +
                                                                                                        + +

                                                                                                        Use addFont instead

                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + +
                                                                                                        Return values
                                                                                                        + self + — +

                                                                                                        Current pdf creator instance

                                                                                                        +
                                                                                                        + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + getBeforeCreateInstanceCallback() + +

                                                                                                        + + + + + public + getBeforeCreateInstanceCallback() : callable|null + +
                                                                                                        + + + + +
                                                                                                        Return values
                                                                                                        + callable|null + — + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + getBeforeOutputPdfCallback() + +

                                                                                                        + + + + + public + getBeforeOutputPdfCallback() : callable|null + +
                                                                                                        + + + + +
                                                                                                        Return values
                                                                                                        + callable|null + — + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + getFilename() + +

                                                                                                        + + + + + public + getFilename() : string + + + + + +
                                                                                                        Return values
                                                                                                        + string + — + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + getFolder() + +

                                                                                                        + + + + + public + getFolder() : string|null + +
                                                                                                        + + + + +
                                                                                                        Return values
                                                                                                        + string|null + — + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + getFonts() + +

                                                                                                        + + + + + public + getFonts() : array<string|int, mixed>|null + +
                                                                                                        + + + + +
                                                                                                        Return values
                                                                                                        + array<string|int, mixed>|null + — + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + getFormat() + +

                                                                                                        + + + + + public + getFormat() : string|null + +
                                                                                                        + + + + +
                                                                                                        Return values
                                                                                                        + string|null + — + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + getHtmlContent() + +

                                                                                                        + + + + + public + getHtmlContent() : mixed + + + + + +
                                                                                                        Return values
                                                                                                        + mixed + — + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + getMargins() + +

                                                                                                        + + + + + public + getMargins() : array<string|int, mixed>|null + +
                                                                                                        + + + + +
                                                                                                        Return values
                                                                                                        + array<string|int, mixed>|null + — + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + getMediaType() + +

                                                                                                        + + + + + public + getMediaType() : string|null + +
                                                                                                        + + + + +
                                                                                                        Return values
                                                                                                        + string|null + — + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + getOrientation() + +

                                                                                                        + + + + + public + getOrientation() : string|null + +
                                                                                                        + + + + +
                                                                                                        Return values
                                                                                                        + string|null + — + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + getOutputMode() + +

                                                                                                        + + + + + public + getOutputMode() : string + + + + + +
                                                                                                        Return values
                                                                                                        + string + — + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + getSupportedOutputModes() + +

                                                                                                        + + + + + public + getSupportedOutputModes() : array<string|int, mixed> + +
                                                                                                        + + + + +
                                                                                                        Return values
                                                                                                        + array<string|int, mixed> + — + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + getTemplateFilePath() + +

                                                                                                        + + + + + public + getTemplateFilePath() : string|null + +
                                                                                                        + + + + +
                                                                                                        Return values
                                                                                                        + string|null + — + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + getType() + +

                                                                                                        + + +

                                                                                                        Return an unique type alias.

                                                                                                        + + + public + static getType() : string + + + + + +
                                                                                                        Return values
                                                                                                        + string + — + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + render() + +

                                                                                                        + + + + + public + render() : void + +
                                                                                                        + + + + +
                                                                                                        Return values
                                                                                                        + void + — + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + setBeforeCreateInstanceCallback() + +

                                                                                                        + + +

                                                                                                        Add an callback to modify constructor parameters for pdf library.

                                                                                                        + + + public + setBeforeCreateInstanceCallback(callable|null $beforeCreateInstanceCallback) : self + +

                                                                                                        Callback gets an BeforeCreateLibraryInstanceCallback object as parameter and should return an BeforeCreateLibraryInstanceCallback object.

                                                                                                        +
                                                                                                        + +
                                                                                                        Parameters
                                                                                                        +
                                                                                                        +
                                                                                                        + $beforeCreateInstanceCallback + : callable|null +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + + +
                                                                                                        Return values
                                                                                                        + self + — + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + setBeforeOutputPdfCallback() + +

                                                                                                        + + +

                                                                                                        Add an callback to modify the configuration or parameters before outputting the pdf file.

                                                                                                        + + + public + setBeforeOutputPdfCallback(callable|null $beforeOutputPdfCallback) : self + +

                                                                                                        Callback gets an BeforeOutputPdfCallback object as parameter and should return an BeforeOutputPdfCallback object.

                                                                                                        +
                                                                                                        + +
                                                                                                        Parameters
                                                                                                        +
                                                                                                        +
                                                                                                        + $beforeOutputPdfCallback + : callable|null +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + + +
                                                                                                        Return values
                                                                                                        + self + — + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + setFilename() + +

                                                                                                        + + + + + public + setFilename(string $filename) : self + +
                                                                                                        + +
                                                                                                        Parameters
                                                                                                        +
                                                                                                        +
                                                                                                        + $filename + : string +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + + +
                                                                                                        Return values
                                                                                                        + self + — + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + setFolder() + +

                                                                                                        + + +

                                                                                                        Absolute folder where to store pdf.

                                                                                                        + + + public + setFolder(string $folder) : self + + +
                                                                                                        Parameters
                                                                                                        +
                                                                                                        +
                                                                                                        + $folder + : string +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + + +
                                                                                                        Return values
                                                                                                        + self + — + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + setFonts() + +

                                                                                                        + + + + + public + setFonts(array<string|int, mixed> $fonts) : self + +
                                                                                                        + +
                                                                                                        Parameters
                                                                                                        +
                                                                                                        +
                                                                                                        + $fonts + : array<string|int, mixed> +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + + +
                                                                                                        Return values
                                                                                                        + self + — + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + setFormat() + +

                                                                                                        + + +

                                                                                                        Set the document format.

                                                                                                        + + + public + setFormat(string|array<string|int, mixed> $format) : $this + + +
                                                                                                        Parameters
                                                                                                        +
                                                                                                        +
                                                                                                        + $format + : string|array<string|int, mixed> +
                                                                                                        +
                                                                                                        +

                                                                                                        A format type like A4, A5, Letter, Legal,... or an array of integers (width and height in mm).

                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + + +
                                                                                                        Return values
                                                                                                        + $this + — + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + setHtmlContent() + +

                                                                                                        + + + + + public + setHtmlContent(mixed $htmlContent) : self + + +
                                                                                                        Parameters
                                                                                                        +
                                                                                                        +
                                                                                                        + $htmlContent + : mixed +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + + +
                                                                                                        Return values
                                                                                                        + self + — + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + setMargins() + +

                                                                                                        + + +

                                                                                                        Set document margins.

                                                                                                        + + + public + setMargins(int|null $top[, int|null $right = null ][, int|null $bottom = null ][, int|null $left = null ]) : self + + +
                                                                                                        Parameters
                                                                                                        +
                                                                                                        +
                                                                                                        + $top + : int|null +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + $right + : int|null + = null
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + $bottom + : int|null + = null
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + $left + : int|null + = null
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + + +
                                                                                                        Return values
                                                                                                        + self + — + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + setMediaType() + +

                                                                                                        + + + + + public + setMediaType(string|null $mediaType) : self + + +
                                                                                                        Parameters
                                                                                                        +
                                                                                                        +
                                                                                                        + $mediaType + : string|null +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + + +
                                                                                                        Return values
                                                                                                        + self + — + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + setOrientation() + +

                                                                                                        + + +

                                                                                                        Set orientation. Use AbstractPdfCreator::ORIENTATION_LANDSCAPE or AbstractPdfCreator::ORIENTATION_PORTRAIT.

                                                                                                        + + + public + setOrientation(string $orientation) : self + + +
                                                                                                        Parameters
                                                                                                        +
                                                                                                        +
                                                                                                        + $orientation + : string +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + + +
                                                                                                        Return values
                                                                                                        + self + — + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + setOutputMode() + +

                                                                                                        + + + + + public + setOutputMode(string $outputMode) : self + +
                                                                                                        + +
                                                                                                        Parameters
                                                                                                        +
                                                                                                        +
                                                                                                        + $outputMode + : string +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + + +
                                                                                                        Return values
                                                                                                        + self + — + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + setTemplateFilePath() + +

                                                                                                        + + +

                                                                                                        Set the absolute path to a pdf template file.

                                                                                                        + + + public + setTemplateFilePath(string|null $templateFilePath) : self + + +
                                                                                                        Parameters
                                                                                                        +
                                                                                                        +
                                                                                                        + $templateFilePath + : string|null +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + + +
                                                                                                        Return values
                                                                                                        + self + — + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + applyDocumentFormatConfiguration() + +

                                                                                                        + + + + + protected + applyDocumentFormatConfiguration(array<string|int, mixed> $config) : array<string|int, mixed> + +
                                                                                                        + +
                                                                                                        Parameters
                                                                                                        +
                                                                                                        +
                                                                                                        + $config + : array<string|int, mixed> +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + + +
                                                                                                        Return values
                                                                                                        + array<string|int, mixed> + — + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + applyFonts() + +

                                                                                                        + + + + + protected + applyFonts(array<string|int, mixed> $config) : array<string|int, mixed> + +
                                                                                                        + +
                                                                                                        Parameters
                                                                                                        +
                                                                                                        +
                                                                                                        + $config + : array<string|int, mixed> +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + + +
                                                                                                        Return values
                                                                                                        + array<string|int, mixed> + — + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + applyTemplate() + +

                                                                                                        + + + + + protected + applyTemplate(Mpdf $pdf) : void + + +
                                                                                                        Parameters
                                                                                                        +
                                                                                                        +
                                                                                                        + $pdf + : Mpdf +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + +
                                                                                                        + Tags + +
                                                                                                        +
                                                                                                        +
                                                                                                        + throws +
                                                                                                        +
                                                                                                        + CrossReferenceException + + +
                                                                                                        +
                                                                                                        + throws +
                                                                                                        +
                                                                                                        + PdfParserException + + +
                                                                                                        +
                                                                                                        + throws +
                                                                                                        +
                                                                                                        + PdfTypeException + + +
                                                                                                        +
                                                                                                        + +
                                                                                                        Return values
                                                                                                        + void + — + + +
                                                                                                        +
                                                                                                        + + + + +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +

                                                                                                        Search results

                                                                                                        + +
                                                                                                        +
                                                                                                        +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          + + +
                                                                                                          + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-StaticUtil-SUtils.html b/classes/HeimrichHannot-UtilsBundle-PdfCreator-PdfCreatorFactory.html similarity index 65% rename from classes/HeimrichHannot-UtilsBundle-StaticUtil-SUtils.html rename to classes/HeimrichHannot-UtilsBundle-PdfCreator-PdfCreatorFactory.html index 1b922b3d..c1bb6d0b 100644 --- a/classes/HeimrichHannot-UtilsBundle-StaticUtil-SUtils.html +++ b/classes/HeimrichHannot-UtilsBundle-PdfCreator-PdfCreatorFactory.html @@ -86,12 +86,12 @@

                                                                                                          Fil

                                                                                                          - SUtils + PdfCreatorFactory
                                                                                                          @@ -105,16 +105,31 @@

                                                                                                          - -
                                                                                                          +

                                                                                                          Class PdfCreatorFactory.

                                                                                                          + + +
                                                                                                          + Tags + +
                                                                                                          +
                                                                                                          +
                                                                                                          + deprecated +
                                                                                                          +
                                                                                                          + +

                                                                                                          PdfCreator was moved into it's own bundle (heimrichhannot/pdf-creator)

                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          @@ -127,31 +142,24 @@

                                                                                                          -
                                                                                                          - $instances +
                                                                                                          + createInstance() -  : array<string|int, mixed> +  : AbstractPdfCreator|null
                                                                                                          -
                                                                                                          - -
                                                                                                          - array() - -  : StaticArrayUtil -
                                                                                                          -
                                                                                                          +
                                                                                                          Return a pdf creator instance for given type or null, if no type is registered for given type.
                                                                                                          - class() + getTypes() -  : StaticClassUtil +  : array<string|int, mixed>
                                                                                                          -
                                                                                                          +
                                                                                                          Return supported pdf creator types.
                                                                                                          - getInstance() + getPdfCreatorRegistry() -  : T +  : mixed
                                                                                                          @@ -162,51 +170,11 @@

                                                                                                          -
                                                                                                          -

                                                                                                          - Properties - -

                                                                                                          -
                                                                                                          -

                                                                                                          - $instances - - - -

                                                                                                          - - - - - protected - static array<string|int, mixed> - $instances - = [] - -
                                                                                                          - -
                                                                                                          - - - -
                                                                                                          -

                                                                                                          Methods - +

                                                                                                          -public -static " > -

                                                                                                          - array() - +

                                                                                                          + createInstance() +

                                                                                                          - +

                                                                                                          Return a pdf creator instance for given type or null, if no type is registered for given type.

                                                                                                          + public - static array() : StaticArrayUtil - -
                                                                                                          + static createInstance(string $type) : AbstractPdfCreator|null +
                                                                                                          Parameters
                                                                                                          +
                                                                                                          +
                                                                                                          + $type + : string +
                                                                                                          +
                                                                                                          +
                                                                                                          + +
                                                                                                          +
                                                                                                          +
                                                                                                          Return values
                                                                                                          - StaticArrayUtil + AbstractPdfCreator|null — @@ -247,29 +226,29 @@
                                                                                                          Return values
                                                                                                          -public -static " > -

                                                                                                          - class() - +

                                                                                                          + getTypes() +

                                                                                                          - +

                                                                                                          Return supported pdf creator types.

                                                                                                          + public - static class() : StaticClassUtil - -
                                                                                                          + static getTypes() : array<string|int, mixed> +
                                                                                                          Return values
                                                                                                          - StaticClassUtil + array<string|int, mixed> — @@ -280,57 +259,31 @@
                                                                                                          Return values
                                                                                                          -protected -static " > -

                                                                                                          - getInstance() - +

                                                                                                          + getPdfCreatorRegistry() +

                                                                                                          protected - static getInstance(class-string<\HeimrichHannot\UtilsBundle\StaticUtil\T> $class) : T + static getPdfCreatorRegistry() : mixed - -
                                                                                                          Parameters
                                                                                                          -
                                                                                                          -
                                                                                                          - $class - : class-string<\HeimrichHannot\UtilsBundle\StaticUtil\T> -
                                                                                                          -
                                                                                                          - -
                                                                                                          -
                                                                                                          +
                                                                                                          -
                                                                                                          - Tags - -
                                                                                                          -
                                                                                                          -
                                                                                                          - template -
                                                                                                          -
                                                                                                          - -

                                                                                                          T

                                                                                                          -
                                                                                                          - -
                                                                                                          -
                                                                                                          +
                                                                                                          Return values
                                                                                                          - T + mixed — -

                                                                                                          The instance of the given class.

                                                                                                          -
                                                                                                          - +
                                                                                                          @@ -411,7 +364,7 @@

                                                                                                          Search results

                                                                                                          - + diff --git a/classes/HeimrichHannot-UtilsBundle-Request-CurlRequest.html b/classes/HeimrichHannot-UtilsBundle-Request-CurlRequest.html new file mode 100644 index 00000000..64ae2950 --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-Request-CurlRequest.html @@ -0,0 +1,575 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                          +

                                                                                                          Contao Utils Bundle

                                                                                                          + + + + + +
                                                                                                          + +
                                                                                                          +
                                                                                                          + + + + +
                                                                                                          + + +
                                                                                                          +

                                                                                                          + CurlRequest + + +
                                                                                                          + in package + +
                                                                                                          + + + implements + HttpRequestInterface + +

                                                                                                          + + + + +
                                                                                                          + + + + + + +

                                                                                                          + Interfaces, Classes and Traits + +

                                                                                                          + +
                                                                                                          +
                                                                                                          HttpRequestInterface
                                                                                                          +
                                                                                                          + + +
                                                                                                          + + +

                                                                                                          + Table of Contents + +

                                                                                                          + +
                                                                                                          +
                                                                                                          + $handle + +  : mixed +
                                                                                                          +
                                                                                                          + +
                                                                                                          + __construct() + +  : mixed +
                                                                                                          +
                                                                                                          CurlRequest constructor.
                                                                                                          + +
                                                                                                          + close() + +  : mixed +
                                                                                                          +
                                                                                                          + +
                                                                                                          + execute() + +  : mixed +
                                                                                                          +
                                                                                                          + +
                                                                                                          + getInfo() + +  : mixed +
                                                                                                          +
                                                                                                          + +
                                                                                                          + init() + +  : HttpRequestInterface +
                                                                                                          +
                                                                                                          + +
                                                                                                          + setOption() + +  : HttpRequestInterface +
                                                                                                          +
                                                                                                          + +
                                                                                                          + + + + + + +
                                                                                                          +

                                                                                                          + Properties + +

                                                                                                          +
                                                                                                          +

                                                                                                          + $handle + + + +

                                                                                                          + + + + + private + mixed + $handle + = null + +
                                                                                                          + +
                                                                                                          + + + +
                                                                                                          +
                                                                                                          + +
                                                                                                          +

                                                                                                          + Methods + +

                                                                                                          +
                                                                                                          +

                                                                                                          + __construct() + +

                                                                                                          + + +

                                                                                                          CurlRequest constructor.

                                                                                                          + + + public + __construct() : mixed + + + + + +
                                                                                                          Return values
                                                                                                          + mixed + — + + +
                                                                                                          +
                                                                                                          +

                                                                                                          + close() + +

                                                                                                          + + + + + public + close() : mixed + +
                                                                                                          + + + + +
                                                                                                          Return values
                                                                                                          + mixed + — + + +
                                                                                                          +
                                                                                                          +

                                                                                                          + execute() + +

                                                                                                          + + + + + public + execute() : mixed + +
                                                                                                          + + + + +
                                                                                                          Return values
                                                                                                          + mixed + — + + +
                                                                                                          +
                                                                                                          +

                                                                                                          + getInfo() + +

                                                                                                          + + + + + public + getInfo(mixed $name) : mixed + +
                                                                                                          + +
                                                                                                          Parameters
                                                                                                          +
                                                                                                          +
                                                                                                          + $name + : mixed +
                                                                                                          +
                                                                                                          +
                                                                                                          + +
                                                                                                          +
                                                                                                          + + + +
                                                                                                          Return values
                                                                                                          + mixed + — + + +
                                                                                                          + + +
                                                                                                          + + + + +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +

                                                                                                          Search results

                                                                                                          + +
                                                                                                          +
                                                                                                          +
                                                                                                            +
                                                                                                            +
                                                                                                            +
                                                                                                            +
                                                                                                            +
                                                                                                            + + +
                                                                                                            + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-Request-CurlRequestUtil.html b/classes/HeimrichHannot-UtilsBundle-Request-CurlRequestUtil.html new file mode 100644 index 00000000..fc791a5a --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-Request-CurlRequestUtil.html @@ -0,0 +1,1072 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                            +

                                                                                                            Contao Utils Bundle

                                                                                                            + + + + + +
                                                                                                            + +
                                                                                                            +
                                                                                                            + + + + +
                                                                                                            + + +
                                                                                                            +

                                                                                                            + CurlRequestUtil + + +
                                                                                                            + in package + +
                                                                                                            + + +

                                                                                                            + + + + +
                                                                                                            + + + + + + + + +

                                                                                                            + Table of Contents + +

                                                                                                            + +
                                                                                                            +
                                                                                                            + HTTP_STATUS_CODE_MESSAGES + +  = [100 => 'Continue', 101 => 'Switching Protocols', 200 => 'OK', 201 => 'Created', 202 => 'Accepted', 203 => 'Non-Authoritative Information', 204 => 'No Content', 205 => 'Reset Content', 206 => 'Partial Content', 300 => 'Multiple Choices', 301 => 'Moved Permanently', 302 => 'Found', 303 => 'See Other', 304 => 'Not Modified', 305 => 'Use Proxy', 306 => '(Unused)', 307 => 'Temporary Redirect', 400 => 'Bad Request', 401 => 'Unauthorized', 402 => 'Payment Required', 403 => 'Forbidden', 404 => 'Not Found', 405 => 'Method Not Allowed', 406 => 'Not Acceptable', 407 => 'Proxy Authentication Required', 408 => 'Request Timeout', 409 => 'Conflict', 410 => 'Gone', 411 => 'Length Required', 412 => 'Precondition Failed', 413 => 'Request Entity Too Large', 414 => 'Request-URI Too Long', 415 => 'Unsupported Media Type', 416 => 'Requested Range Not Satisfiable', 417 => 'Expectation Failed', 500 => 'Internal Server Error', 501 => 'Not Implemented', 502 => 'Bad Gateway', 503 => 'Service Unavailable', 504 => 'Gateway Timeout', 505 => 'HTTP Version Not Supported'] +
                                                                                                            +
                                                                                                            + +
                                                                                                            + $container + +  : ContainerInterface +
                                                                                                            +
                                                                                                            + +
                                                                                                            + $framework + +  : ContaoFrameworkInterface +
                                                                                                            +
                                                                                                            + +
                                                                                                            + $handle + +  : HttpRequestInterface +
                                                                                                            +
                                                                                                            + +
                                                                                                            + __construct() + +  : mixed +
                                                                                                            +
                                                                                                            + +
                                                                                                            + createCurlHandle() + +  : CurlRequest +
                                                                                                            +
                                                                                                            Create the curl handle.
                                                                                                            + +
                                                                                                            + getHandle() + +  : HttpRequestInterface|null +
                                                                                                            +
                                                                                                            + +
                                                                                                            + postRequest() + +  : array<string|int, mixed>|mixed +
                                                                                                            +
                                                                                                            Create a curl post request.
                                                                                                            + +
                                                                                                            + prepareHeaderArrayForPrint() + +  : string +
                                                                                                            +
                                                                                                            Creates a linebreak separated list of the headers in $arrHeaders -> see request() and postRequest().
                                                                                                            + +
                                                                                                            + recursiveGetRequest() + +  : array<string|int, mixed>|mixed|null +
                                                                                                            +
                                                                                                            Recursivly send get request and terminates if termination condition is given or max request count is reached.
                                                                                                            + +
                                                                                                            + recursivePostRequest() + +  : array<string|int, mixed>|mixed|null +
                                                                                                            +
                                                                                                            Recursivly send post request and terminates if termination condition is given or max request count is reached.
                                                                                                            + +
                                                                                                            + request() + +  : array<string|int, mixed>|mixed +
                                                                                                            +
                                                                                                            Executes a curl request while taking.
                                                                                                            + +
                                                                                                            + setHandle() + +  : mixed +
                                                                                                            +
                                                                                                            + +
                                                                                                            + splitResponseHeaderAndBody() + +  : array<string|int, mixed> +
                                                                                                            +
                                                                                                            + +
                                                                                                            + prepareHeaders() + +  : array<string|int, mixed> +
                                                                                                            +
                                                                                                            Prepare headers for curl handle.
                                                                                                            + +
                                                                                                            + + + + +
                                                                                                            +

                                                                                                            + Constants + +

                                                                                                            +
                                                                                                            +

                                                                                                            + HTTP_STATUS_CODE_MESSAGES + +

                                                                                                            + + + + + + public + mixed + HTTP_STATUS_CODE_MESSAGES + = [100 => 'Continue', 101 => 'Switching Protocols', 200 => 'OK', 201 => 'Created', 202 => 'Accepted', 203 => 'Non-Authoritative Information', 204 => 'No Content', 205 => 'Reset Content', 206 => 'Partial Content', 300 => 'Multiple Choices', 301 => 'Moved Permanently', 302 => 'Found', 303 => 'See Other', 304 => 'Not Modified', 305 => 'Use Proxy', 306 => '(Unused)', 307 => 'Temporary Redirect', 400 => 'Bad Request', 401 => 'Unauthorized', 402 => 'Payment Required', 403 => 'Forbidden', 404 => 'Not Found', 405 => 'Method Not Allowed', 406 => 'Not Acceptable', 407 => 'Proxy Authentication Required', 408 => 'Request Timeout', 409 => 'Conflict', 410 => 'Gone', 411 => 'Length Required', 412 => 'Precondition Failed', 413 => 'Request Entity Too Large', 414 => 'Request-URI Too Long', 415 => 'Unsupported Media Type', 416 => 'Requested Range Not Satisfiable', 417 => 'Expectation Failed', 500 => 'Internal Server Error', 501 => 'Not Implemented', 502 => 'Bad Gateway', 503 => 'Service Unavailable', 504 => 'Gateway Timeout', 505 => 'HTTP Version Not Supported'] + + + +
                                                                                                            + +
                                                                                                            + + + +
                                                                                                            +
                                                                                                            + + +
                                                                                                            +

                                                                                                            + Properties + +

                                                                                                            +
                                                                                                            +

                                                                                                            + $container + + + +

                                                                                                            + + + + + protected + ContainerInterface + $container + + + + + + +
                                                                                                            +
                                                                                                            +

                                                                                                            + $framework + + + +

                                                                                                            + + + + + protected + ContaoFrameworkInterface + $framework + + + + + + +
                                                                                                            + +
                                                                                                            + +
                                                                                                            +

                                                                                                            + Methods + +

                                                                                                            +
                                                                                                            +

                                                                                                            + __construct() + +

                                                                                                            + + + + + public + __construct(ContaoFrameworkInterface $framework, ContainerInterface $container) : mixed + +
                                                                                                            + +
                                                                                                            Parameters
                                                                                                            +
                                                                                                            +
                                                                                                            + $framework + : ContaoFrameworkInterface +
                                                                                                            +
                                                                                                            +
                                                                                                            + +
                                                                                                            +
                                                                                                            + $container + : ContainerInterface +
                                                                                                            +
                                                                                                            +
                                                                                                            + +
                                                                                                            +
                                                                                                            + + + +
                                                                                                            Return values
                                                                                                            + mixed + — + + +
                                                                                                            +
                                                                                                            +

                                                                                                            + createCurlHandle() + +

                                                                                                            + + +

                                                                                                            Create the curl handle.

                                                                                                            + + + public + createCurlHandle( $url) : CurlRequest + + +
                                                                                                            Parameters
                                                                                                            +
                                                                                                            +
                                                                                                            + $url + : +
                                                                                                            +
                                                                                                            + +
                                                                                                            +
                                                                                                            + + + +
                                                                                                            Return values
                                                                                                            + CurlRequest + — + + +
                                                                                                            + +
                                                                                                            +

                                                                                                            + postRequest() + +

                                                                                                            + + +

                                                                                                            Create a curl post request.

                                                                                                            + + + public + postRequest(string $url[, array<string|int, mixed> $requestHeaders = [] ][, array<string|int, mixed> $postFields = [] ][, bool $returnResponseHeaders = false ]) : array<string|int, mixed>|mixed + + +
                                                                                                            Parameters
                                                                                                            +
                                                                                                            +
                                                                                                            + $url + : string +
                                                                                                            +
                                                                                                            +
                                                                                                            + +
                                                                                                            +
                                                                                                            + $requestHeaders + : array<string|int, mixed> + = []
                                                                                                            +
                                                                                                            +
                                                                                                            + +
                                                                                                            +
                                                                                                            + $postFields + : array<string|int, mixed> + = []
                                                                                                            +
                                                                                                            +
                                                                                                            + +
                                                                                                            +
                                                                                                            + $returnResponseHeaders + : bool + = false
                                                                                                            +
                                                                                                            +
                                                                                                            + +
                                                                                                            +
                                                                                                            + + + +
                                                                                                            Return values
                                                                                                            + array<string|int, mixed>|mixed + — + + +
                                                                                                            +
                                                                                                            +

                                                                                                            + prepareHeaderArrayForPrint() + +

                                                                                                            + + +

                                                                                                            Creates a linebreak separated list of the headers in $arrHeaders -> see request() and postRequest().

                                                                                                            + + + public + prepareHeaderArrayForPrint(array<string|int, mixed> $headers) : string + + +
                                                                                                            Parameters
                                                                                                            +
                                                                                                            +
                                                                                                            + $headers + : array<string|int, mixed> +
                                                                                                            +
                                                                                                            +
                                                                                                            + +
                                                                                                            +
                                                                                                            + + + +
                                                                                                            Return values
                                                                                                            + string + — + + +
                                                                                                            +
                                                                                                            +

                                                                                                            + recursiveGetRequest() + +

                                                                                                            + + +

                                                                                                            Recursivly send get request and terminates if termination condition is given or max request count is reached.

                                                                                                            + + + public + recursiveGetRequest(int $maxRecursionCount, callable $callback, string $url[, array<string|int, mixed> $requestHeaders = [] ][, bool $returnResponseHeaders = false ]) : array<string|int, mixed>|mixed|null + + +
                                                                                                            Parameters
                                                                                                            +
                                                                                                            +
                                                                                                            + $maxRecursionCount + : int +
                                                                                                            +
                                                                                                            +
                                                                                                            + +
                                                                                                            +
                                                                                                            + $callback + : callable +
                                                                                                            +
                                                                                                            +

                                                                                                            Termination condition callback. Return true to terminate.

                                                                                                            +
                                                                                                            + +
                                                                                                            +
                                                                                                            + $url + : string +
                                                                                                            +
                                                                                                            +
                                                                                                            + +
                                                                                                            +
                                                                                                            + $requestHeaders + : array<string|int, mixed> + = []
                                                                                                            +
                                                                                                            +
                                                                                                            + +
                                                                                                            +
                                                                                                            + $returnResponseHeaders + : bool + = false
                                                                                                            +
                                                                                                            +
                                                                                                            + +
                                                                                                            +
                                                                                                            + + + +
                                                                                                            Return values
                                                                                                            + array<string|int, mixed>|mixed|null + — + + +
                                                                                                            +
                                                                                                            +

                                                                                                            + recursivePostRequest() + +

                                                                                                            + + +

                                                                                                            Recursivly send post request and terminates if termination condition is given or max request count is reached.

                                                                                                            + + + public + recursivePostRequest(int $maxRecursionCount, callable $callback, string $url[, array<string|int, mixed> $requestHeaders = [] ][, array<string|int, mixed> $post = [] ][, bool $returnResponseHeaders = false ]) : array<string|int, mixed>|mixed|null + + +
                                                                                                            Parameters
                                                                                                            +
                                                                                                            +
                                                                                                            + $maxRecursionCount + : int +
                                                                                                            +
                                                                                                            +
                                                                                                            + +
                                                                                                            +
                                                                                                            + $callback + : callable +
                                                                                                            +
                                                                                                            +
                                                                                                            + +
                                                                                                            +
                                                                                                            + $url + : string +
                                                                                                            +
                                                                                                            +
                                                                                                            + +
                                                                                                            +
                                                                                                            + $requestHeaders + : array<string|int, mixed> + = []
                                                                                                            +
                                                                                                            +
                                                                                                            + +
                                                                                                            +
                                                                                                            + $post + : array<string|int, mixed> + = []
                                                                                                            +
                                                                                                            +
                                                                                                            + +
                                                                                                            +
                                                                                                            + $returnResponseHeaders + : bool + = false
                                                                                                            +
                                                                                                            +
                                                                                                            + +
                                                                                                            +
                                                                                                            + + + +
                                                                                                            Return values
                                                                                                            + array<string|int, mixed>|mixed|null + — + + +
                                                                                                            +
                                                                                                            +

                                                                                                            + request() + +

                                                                                                            + + +

                                                                                                            Executes a curl request while taking.

                                                                                                            + + + public + request( $url[, array<string|int, mixed> $requestHeaders = [] ][, bool $returnResponseHeaders = false ]) : array<string|int, mixed>|mixed + + +
                                                                                                            Parameters
                                                                                                            +
                                                                                                            +
                                                                                                            + $url + : +
                                                                                                            +
                                                                                                            + +
                                                                                                            +
                                                                                                            + $requestHeaders + : array<string|int, mixed> + = []
                                                                                                            +
                                                                                                            +
                                                                                                            + +
                                                                                                            +
                                                                                                            + $returnResponseHeaders + : bool + = false
                                                                                                            +
                                                                                                            + +
                                                                                                            +
                                                                                                            + + + +
                                                                                                            Return values
                                                                                                            + array<string|int, mixed>|mixed + — + + +
                                                                                                            + +
                                                                                                            +

                                                                                                            + splitResponseHeaderAndBody() + +

                                                                                                            + + + + + public + splitResponseHeaderAndBody(string $response, int $statusCode) : array<string|int, mixed> + + +
                                                                                                            Parameters
                                                                                                            +
                                                                                                            +
                                                                                                            + $response + : string +
                                                                                                            +
                                                                                                            +
                                                                                                            + +
                                                                                                            +
                                                                                                            + $statusCode + : int +
                                                                                                            +
                                                                                                            +
                                                                                                            + +
                                                                                                            +
                                                                                                            + + + +
                                                                                                            Return values
                                                                                                            + array<string|int, mixed> + — + + +
                                                                                                            +
                                                                                                            +

                                                                                                            + prepareHeaders() + +

                                                                                                            + + +

                                                                                                            Prepare headers for curl handle.

                                                                                                            + + + protected + prepareHeaders(array<string|int, mixed> $headers) : array<string|int, mixed> + + +
                                                                                                            Parameters
                                                                                                            +
                                                                                                            +
                                                                                                            + $headers + : array<string|int, mixed> +
                                                                                                            +
                                                                                                            +
                                                                                                            + +
                                                                                                            +
                                                                                                            + + + +
                                                                                                            Return values
                                                                                                            + array<string|int, mixed> + — + + +
                                                                                                            +
                                                                                                            + + + + +
                                                                                                            +
                                                                                                            +
                                                                                                            +
                                                                                                            +

                                                                                                            Search results

                                                                                                            + +
                                                                                                            +
                                                                                                            +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + + +
                                                                                                              + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-Request-HttpRequestInterface.html b/classes/HeimrichHannot-UtilsBundle-Request-HttpRequestInterface.html new file mode 100644 index 00000000..ede355e6 --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-Request-HttpRequestInterface.html @@ -0,0 +1,468 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                              +

                                                                                                              Contao Utils Bundle

                                                                                                              + + + + + +
                                                                                                              + +
                                                                                                              +
                                                                                                              + + + + +
                                                                                                              + + +
                                                                                                              +

                                                                                                              + HttpRequestInterface +
                                                                                                              + in + +
                                                                                                              +

                                                                                                              + + + + +
                                                                                                              + + + + + + + + +

                                                                                                              + Table of Contents + +

                                                                                                              + +
                                                                                                              +
                                                                                                              + close() + +  : mixed +
                                                                                                              +
                                                                                                              + +
                                                                                                              + execute() + +  : mixed +
                                                                                                              +
                                                                                                              + +
                                                                                                              + getInfo() + +  : mixed +
                                                                                                              +
                                                                                                              + +
                                                                                                              + init() + +  : self +
                                                                                                              +
                                                                                                              + +
                                                                                                              + setOption() + +  : self +
                                                                                                              +
                                                                                                              + +
                                                                                                              + + + + + +
                                                                                                              +

                                                                                                              + Methods + +

                                                                                                              +
                                                                                                              +

                                                                                                              + close() + +

                                                                                                              + + + + + public + close() : mixed + +
                                                                                                              + + + + +
                                                                                                              Return values
                                                                                                              + mixed + — + + +
                                                                                                              +
                                                                                                              +

                                                                                                              + execute() + +

                                                                                                              + + + + + public + execute() : mixed + +
                                                                                                              + + + + +
                                                                                                              Return values
                                                                                                              + mixed + — + + +
                                                                                                              +
                                                                                                              +

                                                                                                              + getInfo() + +

                                                                                                              + + + + + public + getInfo(mixed $name) : mixed + +
                                                                                                              + +
                                                                                                              Parameters
                                                                                                              +
                                                                                                              +
                                                                                                              + $name + : mixed +
                                                                                                              +
                                                                                                              +
                                                                                                              + +
                                                                                                              +
                                                                                                              + + + +
                                                                                                              Return values
                                                                                                              + mixed + — + + +
                                                                                                              +
                                                                                                              +

                                                                                                              + init() + +

                                                                                                              + + + + + public + init(mixed $url) : self + +
                                                                                                              + +
                                                                                                              Parameters
                                                                                                              +
                                                                                                              +
                                                                                                              + $url + : mixed +
                                                                                                              +
                                                                                                              +
                                                                                                              + +
                                                                                                              +
                                                                                                              + + + +
                                                                                                              Return values
                                                                                                              + self + — + + +
                                                                                                              +
                                                                                                              +

                                                                                                              + setOption() + +

                                                                                                              + + + + + public + setOption(mixed $name, mixed $value) : self + +
                                                                                                              + +
                                                                                                              Parameters
                                                                                                              +
                                                                                                              +
                                                                                                              + $name + : mixed +
                                                                                                              +
                                                                                                              +
                                                                                                              + +
                                                                                                              +
                                                                                                              + $value + : mixed +
                                                                                                              +
                                                                                                              +
                                                                                                              + +
                                                                                                              +
                                                                                                              + + + +
                                                                                                              Return values
                                                                                                              + self + — + + +
                                                                                                              +
                                                                                                              + + + + +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +

                                                                                                              Search results

                                                                                                              + +
                                                                                                              +
                                                                                                              +
                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                + + +
                                                                                                                + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-Request-RequestUtil.html b/classes/HeimrichHannot-UtilsBundle-Request-RequestUtil.html new file mode 100644 index 00000000..7c4085ce --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-Request-RequestUtil.html @@ -0,0 +1,405 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                +

                                                                                                                Contao Utils Bundle

                                                                                                                + + + + + +
                                                                                                                + +
                                                                                                                +
                                                                                                                + + + + +
                                                                                                                + + +
                                                                                                                +

                                                                                                                + RequestUtil + + +
                                                                                                                + in package + +
                                                                                                                + + +

                                                                                                                + + + + + + +
                                                                                                                + Tags + +
                                                                                                                +
                                                                                                                +
                                                                                                                + deprecated +
                                                                                                                +
                                                                                                                + +

                                                                                                                Use Utils service instead

                                                                                                                +
                                                                                                                + +
                                                                                                                +
                                                                                                                + codeCoverageIgnore +
                                                                                                                +
                                                                                                                + + +
                                                                                                                +
                                                                                                                + + + + + + +

                                                                                                                + Table of Contents + +

                                                                                                                + +
                                                                                                                +
                                                                                                                + $requestStack + +  : RequestStack +
                                                                                                                +
                                                                                                                + +
                                                                                                                + __construct() + +  : mixed +
                                                                                                                +
                                                                                                                RequestUtil constructor.
                                                                                                                + +
                                                                                                                + isNewVisitor() + +  : bool +
                                                                                                                +
                                                                                                                Detect if user already visited our domain before.
                                                                                                                + +
                                                                                                                + + + + + + +
                                                                                                                +

                                                                                                                + Properties + +

                                                                                                                +
                                                                                                                +

                                                                                                                + $requestStack + + + +

                                                                                                                + + + + + private + RequestStack + $requestStack + + + + + + +
                                                                                                                +
                                                                                                                + +
                                                                                                                +

                                                                                                                + Methods + +

                                                                                                                +
                                                                                                                +

                                                                                                                + __construct() + +

                                                                                                                + + +

                                                                                                                RequestUtil constructor.

                                                                                                                + + + public + __construct(RequestStack $requestStack) : mixed + + +
                                                                                                                Parameters
                                                                                                                +
                                                                                                                +
                                                                                                                + $requestStack + : RequestStack +
                                                                                                                +
                                                                                                                +
                                                                                                                + +
                                                                                                                +
                                                                                                                + + + +
                                                                                                                Return values
                                                                                                                + mixed + — + + +
                                                                                                                +
                                                                                                                +

                                                                                                                + isNewVisitor() + +

                                                                                                                + + +

                                                                                                                Detect if user already visited our domain before.

                                                                                                                + + + public + isNewVisitor() : bool + + + + +
                                                                                                                + Tags + +
                                                                                                                +
                                                                                                                +
                                                                                                                + deprecated +
                                                                                                                +
                                                                                                                + +

                                                                                                                Use Utils service instead

                                                                                                                +
                                                                                                                + +
                                                                                                                +
                                                                                                                + +
                                                                                                                Return values
                                                                                                                + bool + — + + +
                                                                                                                +
                                                                                                                + + + + +
                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                +

                                                                                                                Search results

                                                                                                                + +
                                                                                                                +
                                                                                                                +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + + +
                                                                                                                  + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-Routing-RoutingUtil.html b/classes/HeimrichHannot-UtilsBundle-Routing-RoutingUtil.html new file mode 100644 index 00000000..241560dd --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-Routing-RoutingUtil.html @@ -0,0 +1,450 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                  +

                                                                                                                  Contao Utils Bundle

                                                                                                                  + + + + + +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  + + + + +
                                                                                                                  + + +
                                                                                                                  +

                                                                                                                  + RoutingUtil + + +
                                                                                                                  + in package + +
                                                                                                                  + + +

                                                                                                                  + + + + + + +
                                                                                                                  + Tags + +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + deprecated +
                                                                                                                  +
                                                                                                                  + +

                                                                                                                  Use Utils service instead

                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  + codeCoverageIgnore +
                                                                                                                  +
                                                                                                                  + + +
                                                                                                                  +
                                                                                                                  + + + + + + +

                                                                                                                  + Table of Contents + +

                                                                                                                  + +
                                                                                                                  +
                                                                                                                  + $utils + +  : Utils +
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  + __construct() + +  : mixed +
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  + generateBackendRoute() + +  : string +
                                                                                                                  +
                                                                                                                  Generate a backend route with token and referer.
                                                                                                                  + +
                                                                                                                  + + + + + + +
                                                                                                                  +

                                                                                                                  + Properties + +

                                                                                                                  + +
                                                                                                                  + +
                                                                                                                  +

                                                                                                                  + Methods + +

                                                                                                                  +
                                                                                                                  +

                                                                                                                  + __construct() + +

                                                                                                                  + + + + + public + __construct(Utils $utils) : mixed + +
                                                                                                                  + +
                                                                                                                  Parameters
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + $utils + : Utils +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  + + + +
                                                                                                                  Return values
                                                                                                                  + mixed + — + + +
                                                                                                                  +
                                                                                                                  +

                                                                                                                  + generateBackendRoute() + +

                                                                                                                  + + +

                                                                                                                  Generate a backend route with token and referer.

                                                                                                                  + + + public + generateBackendRoute([array<string|int, mixed> $params = [] ][, bool $addToken = true ][, bool $addReferer = true ][, string $route = 'contao_backend' ]) : string + + +
                                                                                                                  Parameters
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + $params + : array<string|int, mixed> + = []
                                                                                                                  +
                                                                                                                  +

                                                                                                                  Url-Parameters

                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  + $addToken + : bool + = true
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  + $addReferer + : bool + = true
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  + $route + : string + = 'contao_backend'
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  + + +
                                                                                                                  + Tags + +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + deprecated +
                                                                                                                  +
                                                                                                                  + +

                                                                                                                  Use utils service instead

                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  + codeCoverageIgnore +
                                                                                                                  +
                                                                                                                  + + +
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  Return values
                                                                                                                  + string + — +

                                                                                                                  The backend route url

                                                                                                                  +
                                                                                                                  + + +
                                                                                                                  +
                                                                                                                  + + + + +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  +

                                                                                                                  Search results

                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    + + +
                                                                                                                    + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-Rsce-RsceUtil.html b/classes/HeimrichHannot-UtilsBundle-Rsce-RsceUtil.html new file mode 100644 index 00000000..e117dce9 --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-Rsce-RsceUtil.html @@ -0,0 +1,404 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                    +

                                                                                                                    Contao Utils Bundle

                                                                                                                    + + + + + +
                                                                                                                    + +
                                                                                                                    +
                                                                                                                    + + + + +
                                                                                                                    + + +
                                                                                                                    +

                                                                                                                    + RsceUtil + + +
                                                                                                                    + in package + +
                                                                                                                    + + +

                                                                                                                    + + + + +
                                                                                                                    + + + + + + + + +

                                                                                                                    + Table of Contents + +

                                                                                                                    + +
                                                                                                                    +
                                                                                                                    + $formUtil + +  : FormUtil +
                                                                                                                    +
                                                                                                                    + +
                                                                                                                    + __construct() + +  : mixed +
                                                                                                                    +
                                                                                                                    + +
                                                                                                                    + explodeRsceData() + +  : mixed +
                                                                                                                    +
                                                                                                                    + +
                                                                                                                    + + + + + + +
                                                                                                                    +

                                                                                                                    + Properties + +

                                                                                                                    +
                                                                                                                    +

                                                                                                                    + $formUtil + + + +

                                                                                                                    + + + + + private + FormUtil + $formUtil + + + + + + +
                                                                                                                    +
                                                                                                                    + +
                                                                                                                    +

                                                                                                                    + Methods + +

                                                                                                                    +
                                                                                                                    +

                                                                                                                    + __construct() + +

                                                                                                                    + + + + + public + __construct(FormUtil $formUtil) : mixed + +
                                                                                                                    + +
                                                                                                                    Parameters
                                                                                                                    +
                                                                                                                    +
                                                                                                                    + $formUtil + : FormUtil +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    + +
                                                                                                                    +
                                                                                                                    + + + +
                                                                                                                    Return values
                                                                                                                    + mixed + — + + +
                                                                                                                    +
                                                                                                                    +

                                                                                                                    + explodeRsceData() + +

                                                                                                                    + + + + + public + explodeRsceData(string $cteType, string $data, int $recordId[, mixed $options = [] ]) : mixed + +
                                                                                                                    + +
                                                                                                                    Parameters
                                                                                                                    +
                                                                                                                    +
                                                                                                                    + $cteType + : string +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    + +
                                                                                                                    +
                                                                                                                    + $data + : string +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    + +
                                                                                                                    +
                                                                                                                    + $recordId + : int +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    + +
                                                                                                                    +
                                                                                                                    + $options + : mixed + = []
                                                                                                                    +
                                                                                                                    +
                                                                                                                    + +
                                                                                                                    +
                                                                                                                    + + + +
                                                                                                                    Return values
                                                                                                                    + mixed + — + + +
                                                                                                                    +
                                                                                                                    + + + + +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    +

                                                                                                                    Search results

                                                                                                                    + +
                                                                                                                    +
                                                                                                                    +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + +
                                                                                                                      + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-Salutation-SalutationUtil.html b/classes/HeimrichHannot-UtilsBundle-Salutation-SalutationUtil.html new file mode 100644 index 00000000..be2ed866 --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-Salutation-SalutationUtil.html @@ -0,0 +1,457 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                      +

                                                                                                                      Contao Utils Bundle

                                                                                                                      + + + + + +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      + + + + +
                                                                                                                      + + +
                                                                                                                      +

                                                                                                                      + SalutationUtil + + +
                                                                                                                      + in package + +
                                                                                                                      + + +

                                                                                                                      + + + + +
                                                                                                                      + + + + + + + + +

                                                                                                                      + Table of Contents + +

                                                                                                                      + +
                                                                                                                      +
                                                                                                                      + $framework + +  : ContaoFrameworkInterface +
                                                                                                                      +
                                                                                                                      + +
                                                                                                                      + __construct() + +  : mixed +
                                                                                                                      +
                                                                                                                      + +
                                                                                                                      + createNameByFields() + +  : mixed +
                                                                                                                      +
                                                                                                                      Creates complete names by inserting an array of the person's data.
                                                                                                                      + +
                                                                                                                      + createSalutation() + +  : string +
                                                                                                                      +
                                                                                                                      + +
                                                                                                                      + + + + + + +
                                                                                                                      +

                                                                                                                      + Properties + +

                                                                                                                      +
                                                                                                                      +

                                                                                                                      + $framework + + + +

                                                                                                                      + + + + + protected + ContaoFrameworkInterface + $framework + + + + + + +
                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +

                                                                                                                      + Methods + +

                                                                                                                      +
                                                                                                                      +

                                                                                                                      + __construct() + +

                                                                                                                      + + + + + public + __construct(ContaoFrameworkInterface $framework) : mixed + +
                                                                                                                      + +
                                                                                                                      Parameters
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + $framework + : ContaoFrameworkInterface +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      + + + +
                                                                                                                      Return values
                                                                                                                      + mixed + — + + +
                                                                                                                      +
                                                                                                                      +

                                                                                                                      + createNameByFields() + +

                                                                                                                      + + +

                                                                                                                      Creates complete names by inserting an array of the person's data.

                                                                                                                      + + + public + createNameByFields(string $language, array<string|int, mixed> $data) : mixed + +

                                                                                                                      Supported field names: firstname, lastname, academicTitle, additionalTitle, gender

                                                                                                                      +

                                                                                                                      If some of the fields shouldn't go into the processed name, just leave them out of $arrData

                                                                                                                      +
                                                                                                                      + +
                                                                                                                      Parameters
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + $language + : string +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      + $data + : array<string|int, mixed> +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      + + + +
                                                                                                                      Return values
                                                                                                                      + mixed + — + + +
                                                                                                                      +
                                                                                                                      +

                                                                                                                      + createSalutation() + +

                                                                                                                      + + + + + public + createSalutation( $language,  $entity[, array<string|int, mixed> $options = [] ]) : string + + +
                                                                                                                      Parameters
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + $language + : +
                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      + $entity + : +
                                                                                                                      +
                                                                                                                      +

                                                                                                                      object|array

                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      + $options + : array<string|int, mixed> + = []
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      + + + +
                                                                                                                      Return values
                                                                                                                      + string + — + + +
                                                                                                                      +
                                                                                                                      + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +

                                                                                                                      Search results

                                                                                                                      + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                        +
                                                                                                                        +
                                                                                                                        +
                                                                                                                        +
                                                                                                                        +
                                                                                                                        + + +
                                                                                                                        + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-Security-CodeUtil.html b/classes/HeimrichHannot-UtilsBundle-Security-CodeUtil.html new file mode 100644 index 00000000..71d8c838 --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-Security-CodeUtil.html @@ -0,0 +1,711 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                        +

                                                                                                                        Contao Utils Bundle

                                                                                                                        + + + + + +
                                                                                                                        + +
                                                                                                                        +
                                                                                                                        + + + + +
                                                                                                                        + + +
                                                                                                                        +

                                                                                                                        + CodeUtil + + +
                                                                                                                        + in package + +
                                                                                                                        + + +

                                                                                                                        + + + + +
                                                                                                                        + + + + + + + + +

                                                                                                                        + Table of Contents + +

                                                                                                                        + +
                                                                                                                        +
                                                                                                                        + CAPITAL_LETTERS + +  = 'capitalLetters' +
                                                                                                                        +
                                                                                                                        + +
                                                                                                                        + DEFAULT_ALLOWED_SPECIAL_CHARS + +  = '[=<>()#/]' +
                                                                                                                        +
                                                                                                                        + +
                                                                                                                        + DEFAULT_ALPHABETS + +  = [self::CAPITAL_LETTERS, self::SMALL_LETTERS, self::NUMBERS] +
                                                                                                                        +
                                                                                                                        + +
                                                                                                                        + DEFAULT_RULES + +  = [self::CAPITAL_LETTERS, self::SMALL_LETTERS, self::NUMBERS] +
                                                                                                                        +
                                                                                                                        + +
                                                                                                                        + NUMBERS + +  = 'numbers' +
                                                                                                                        +
                                                                                                                        + +
                                                                                                                        + SMALL_LETTERS + +  = 'smallLetters' +
                                                                                                                        +
                                                                                                                        + +
                                                                                                                        + SPECIAL_CHARS + +  = 'specialChars' +
                                                                                                                        +
                                                                                                                        + +
                                                                                                                        + $blnPreventAmbiguous + +  : mixed +
                                                                                                                        +
                                                                                                                        + +
                                                                                                                        + $framework + +  : ContaoFrameworkInterface +
                                                                                                                        +
                                                                                                                        + +
                                                                                                                        + __construct() + +  : mixed +
                                                                                                                        +
                                                                                                                        + +
                                                                                                                        + generate() + +  : mixed +
                                                                                                                        +
                                                                                                                        Generates a code by certain criteria.
                                                                                                                        + +
                                                                                                                        + + + + +
                                                                                                                        +

                                                                                                                        + Constants + +

                                                                                                                        +
                                                                                                                        +

                                                                                                                        + CAPITAL_LETTERS + +

                                                                                                                        + + + + + + public + mixed + CAPITAL_LETTERS + = 'capitalLetters' + + + +
                                                                                                                        + +
                                                                                                                        + + + +
                                                                                                                        +
                                                                                                                        +

                                                                                                                        + DEFAULT_ALLOWED_SPECIAL_CHARS + +

                                                                                                                        + + + + + + public + mixed + DEFAULT_ALLOWED_SPECIAL_CHARS + = '[=<>()#/]' + + + +
                                                                                                                        + +
                                                                                                                        + + + +
                                                                                                                        +
                                                                                                                        +

                                                                                                                        + DEFAULT_ALPHABETS + +

                                                                                                                        + + + + + + public + mixed + DEFAULT_ALPHABETS + = [self::CAPITAL_LETTERS, self::SMALL_LETTERS, self::NUMBERS] + + + +
                                                                                                                        + +
                                                                                                                        + + + +
                                                                                                                        +
                                                                                                                        +

                                                                                                                        + DEFAULT_RULES + +

                                                                                                                        + + + + + + public + mixed + DEFAULT_RULES + = [self::CAPITAL_LETTERS, self::SMALL_LETTERS, self::NUMBERS] + + + +
                                                                                                                        + +
                                                                                                                        + + + +
                                                                                                                        +
                                                                                                                        +

                                                                                                                        + NUMBERS + +

                                                                                                                        + + + + + + public + mixed + NUMBERS + = 'numbers' + + + +
                                                                                                                        + +
                                                                                                                        + + + +
                                                                                                                        +
                                                                                                                        +

                                                                                                                        + SMALL_LETTERS + +

                                                                                                                        + + + + + + public + mixed + SMALL_LETTERS + = 'smallLetters' + + + +
                                                                                                                        + +
                                                                                                                        + + + +
                                                                                                                        +
                                                                                                                        +

                                                                                                                        + SPECIAL_CHARS + +

                                                                                                                        + + + + + + public + mixed + SPECIAL_CHARS + = 'specialChars' + + + +
                                                                                                                        + +
                                                                                                                        + + + +
                                                                                                                        +
                                                                                                                        + + +
                                                                                                                        +

                                                                                                                        + Properties + +

                                                                                                                        +
                                                                                                                        +

                                                                                                                        + $blnPreventAmbiguous + + + +

                                                                                                                        + + + + + protected + static mixed + $blnPreventAmbiguous + = true + +
                                                                                                                        + +
                                                                                                                        + + + +
                                                                                                                        +
                                                                                                                        +

                                                                                                                        + $framework + + + +

                                                                                                                        + + + + + protected + ContaoFrameworkInterface + $framework + + + + + + +
                                                                                                                        +
                                                                                                                        + +
                                                                                                                        +

                                                                                                                        + Methods + +

                                                                                                                        +
                                                                                                                        +

                                                                                                                        + __construct() + +

                                                                                                                        + + + + + public + __construct(ContaoFrameworkInterface $framework) : mixed + +
                                                                                                                        + +
                                                                                                                        Parameters
                                                                                                                        +
                                                                                                                        +
                                                                                                                        + $framework + : ContaoFrameworkInterface +
                                                                                                                        +
                                                                                                                        +
                                                                                                                        + +
                                                                                                                        +
                                                                                                                        + + + +
                                                                                                                        Return values
                                                                                                                        + mixed + — + + +
                                                                                                                        +
                                                                                                                        +

                                                                                                                        + generate() + +

                                                                                                                        + + +

                                                                                                                        Generates a code by certain criteria.

                                                                                                                        + + + public + static generate([int $length = 8 ][, bool $preventAmbiguous = true ][, array<string|int, mixed> $alphabets = null ][, array<string|int, mixed> $rules = null ][, string $allowedSpecialChars = null ]) : mixed + + +
                                                                                                                        Parameters
                                                                                                                        +
                                                                                                                        +
                                                                                                                        + $length + : int + = 8
                                                                                                                        +
                                                                                                                        +
                                                                                                                        + +
                                                                                                                        +
                                                                                                                        + $preventAmbiguous + : bool + = true
                                                                                                                        +
                                                                                                                        +
                                                                                                                        + +
                                                                                                                        +
                                                                                                                        + $alphabets + : array<string|int, mixed> + = null
                                                                                                                        +
                                                                                                                        +
                                                                                                                        + +
                                                                                                                        +
                                                                                                                        + $rules + : array<string|int, mixed> + = null
                                                                                                                        +
                                                                                                                        +
                                                                                                                        + +
                                                                                                                        +
                                                                                                                        + $allowedSpecialChars + : string + = null
                                                                                                                        +
                                                                                                                        +
                                                                                                                        + +
                                                                                                                        +
                                                                                                                        + + + +
                                                                                                                        Return values
                                                                                                                        + mixed + — + + +
                                                                                                                        +
                                                                                                                        + + + + +
                                                                                                                        +
                                                                                                                        +
                                                                                                                        +
                                                                                                                        +

                                                                                                                        Search results

                                                                                                                        + +
                                                                                                                        +
                                                                                                                        +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + + +
                                                                                                                          + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-Security-EncryptionUtil.html b/classes/HeimrichHannot-UtilsBundle-Security-EncryptionUtil.html new file mode 100644 index 00000000..9fc442ab --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-Security-EncryptionUtil.html @@ -0,0 +1,487 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                          +

                                                                                                                          Contao Utils Bundle

                                                                                                                          + + + + + +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + + + + +
                                                                                                                          + + +
                                                                                                                          +

                                                                                                                          + EncryptionUtil + + +
                                                                                                                          + in package + +
                                                                                                                          + + +

                                                                                                                          + + + + +
                                                                                                                          + + + + + + + + +

                                                                                                                          + Table of Contents + +

                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + $framework + +  : ContaoFrameworkInterface +
                                                                                                                          +
                                                                                                                          + +
                                                                                                                          + __construct() + +  : mixed +
                                                                                                                          +
                                                                                                                          + +
                                                                                                                          + decrypt() + +  : mixed +
                                                                                                                          +
                                                                                                                          + +
                                                                                                                          + encrypt() + +  : mixed +
                                                                                                                          +
                                                                                                                          + +
                                                                                                                          + + + + + + +
                                                                                                                          +

                                                                                                                          + Properties + +

                                                                                                                          +
                                                                                                                          +

                                                                                                                          + $framework + + + +

                                                                                                                          + + + + + protected + ContaoFrameworkInterface + $framework + + + + + + +
                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +

                                                                                                                          + Methods + +

                                                                                                                          +
                                                                                                                          +

                                                                                                                          + __construct() + +

                                                                                                                          + + + + + public + __construct(ContaoFrameworkInterface $framework) : mixed + +
                                                                                                                          + +
                                                                                                                          Parameters
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + $framework + : ContaoFrameworkInterface +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + + + +
                                                                                                                          Return values
                                                                                                                          + mixed + — + + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + decrypt() + +

                                                                                                                          + + + + + public + decrypt(string $encrypted, string $iv[, string $key = '' ][, string $cipher = 'aes-256-ctr' ], mixed $options) : mixed + +
                                                                                                                          + +
                                                                                                                          Parameters
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + $encrypted + : string +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + $iv + : string +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + $key + : string + = ''
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + $cipher + : string + = 'aes-256-ctr'
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + $options + : mixed +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + + + +
                                                                                                                          Return values
                                                                                                                          + mixed + — + + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + encrypt() + +

                                                                                                                          + + + + + public + encrypt(string $plain[, string $key = '' ][, string $cipher = 'aes-256-ctr' ], mixed $options) : mixed + +
                                                                                                                          + +
                                                                                                                          Parameters
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + $plain + : string +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + $key + : string + = ''
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + $cipher + : string + = 'aes-256-ctr'
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + $options + : mixed +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + + + +
                                                                                                                          Return values
                                                                                                                          + mixed + — + + +
                                                                                                                          +
                                                                                                                          + + + + +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          Search results

                                                                                                                          + +
                                                                                                                          +
                                                                                                                          +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + + +
                                                                                                                            + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-Util-AnonymizeUtil.html b/classes/HeimrichHannot-UtilsBundle-String-AnonymizerUtil.html similarity index 85% rename from classes/HeimrichHannot-UtilsBundle-Util-AnonymizeUtil.html rename to classes/HeimrichHannot-UtilsBundle-String-AnonymizerUtil.html index 496e7df9..6b7e894e 100644 --- a/classes/HeimrichHannot-UtilsBundle-Util-AnonymizeUtil.html +++ b/classes/HeimrichHannot-UtilsBundle-String-AnonymizerUtil.html @@ -86,12 +86,12 @@

                                                                                                                            Fil

                                                                                                                            - AnonymizeUtil + AnonymizerUtil
                                                                                                                            @@ -105,14 +105,14 @@

                                                                                                                            - -
                                                                                                                            +

                                                                                                                            Class AnonymizerUtil.

                                                                                                                            + @@ -128,11 +128,11 @@

                                                                                                                            - anonymizeEmail() + anonymizeEmail()  : string
                                                                                                                            -
                                                                                                                            Returns an anonymized email address.
                                                                                                                            +
                                                                                                                            Returns an ananymized email address.
                                                                                                                            @@ -145,7 +145,7 @@

                                                                                                                            Methods - +

                                                                                                                            >

                                                                                                                            anonymizeEmail() - +

                                                                                                                            -

                                                                                                                            Returns an anonymized email address.

                                                                                                                            +

                                                                                                                            Returns an ananymized email address.

                                                                                                                            public @@ -188,6 +188,20 @@
                                                                                                                            Parameters

                                                                                                                            +
                                                                                                                            + Tags + +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + since +
                                                                                                                            +
                                                                                                                            + 2.131 + + +
                                                                                                                            +
                                                                                                                            Return values
                                                                                                                            string @@ -275,7 +289,7 @@

                                                                                                                            Search results

                                                                                                                            - + diff --git a/classes/HeimrichHannot-UtilsBundle-String-StringUtil.html b/classes/HeimrichHannot-UtilsBundle-String-StringUtil.html new file mode 100644 index 00000000..1e8b4a26 --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-String-StringUtil.html @@ -0,0 +1,2263 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                            +

                                                                                                                            Contao Utils Bundle

                                                                                                                            + + + + + +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + + + + +
                                                                                                                            + + +
                                                                                                                            +

                                                                                                                            + StringUtil + + +
                                                                                                                            + in package + +
                                                                                                                            + + +

                                                                                                                            + + + +

                                                                                                                            Class StringUtil.

                                                                                                                            + + + +
                                                                                                                            + Tags + +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + deprecated +
                                                                                                                            +
                                                                                                                            + +

                                                                                                                            Use Utils service instead

                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + + + + + + +

                                                                                                                            + Table of Contents + +

                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + CAPITAL_LETTERS + +  = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            + CAPITAL_LETTERS_NONAMBIGUOUS + +  = 'ABCDEFGHJKLMNPQRSTUVWX' +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            + NUMBERS + +  = '0123456789' +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            + NUMBERS_NONAMBIGUOUS + +  = '23456789' +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            + SMALL_LETTERS + +  = 'abcdefghijklmnopqrstuvwxyz' +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            + SMALL_LETTERS_NONAMBIGUOUS + +  = 'abcdefghjkmnpqrstuvwx' +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            + $framework + +  : ContaoFrameworkInterface +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            + $utils + +  : Utils +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            + __construct() + +  : mixed +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            + camelCaseToDashed() + +  : string +
                                                                                                                            +
                                                                                                                            Convert a camel case string to a dashed string.
                                                                                                                            + +
                                                                                                                            + camelCaseToSnake() + +  : string +
                                                                                                                            +
                                                                                                                            Convert a camel case string to a snake cased string.
                                                                                                                            + +
                                                                                                                            + convertToInlineCss() + +  : string +
                                                                                                                            +
                                                                                                                            Convert css into inline styles.
                                                                                                                            + +
                                                                                                                            + convertXmlToArray() + +  : mixed +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            + endsWith() + +  : bool +
                                                                                                                            +
                                                                                                                            Check for the occurrence at the end of the string.
                                                                                                                            + +
                                                                                                                            + ensureLineBreaks() + +  : string +
                                                                                                                            +
                                                                                                                            Ensure line breaks for several languages.
                                                                                                                            + +
                                                                                                                            + html2Text() + +  : string +
                                                                                                                            +
                                                                                                                            Converts html to text.
                                                                                                                            + +
                                                                                                                            + lowerCase() + +  : string +
                                                                                                                            +
                                                                                                                            Convenience method for lower casing in a save callback.
                                                                                                                            + +
                                                                                                                            + pregReplaceLast() + +  : mixed|string +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            + random() + +  : mixed +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            + randomChar() + +  : mixed +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            + randomLetter() + +  : mixed +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            + randomNumber() + +  : mixed +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            + removeLeadingAndTrailingSlash() + +  : string +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            + removeLeadingString() + +  : mixed +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            + removeTrailingString() + +  : mixed +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            + replaceInsertTags() + +  : string +
                                                                                                                            +
                                                                                                                            Replace insert tags with their values.
                                                                                                                            + +
                                                                                                                            + replaceUnicodeEmojisByHtml() + +  : array<string|int, mixed>|string|array<string|int, string>|null +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            + restoreBasicEntities() + +  : string +
                                                                                                                            +
                                                                                                                            Restore basic entities.
                                                                                                                            + +
                                                                                                                            + startsWith() + +  : bool +
                                                                                                                            +
                                                                                                                            Check for the occurrence at the start of the string.
                                                                                                                            + +
                                                                                                                            + truncateHtml() + +  : string +
                                                                                                                            +
                                                                                                                            Truncates a given string respecting html element.
                                                                                                                            + +
                                                                                                                            + + + + +
                                                                                                                            +

                                                                                                                            + Constants + +

                                                                                                                            +
                                                                                                                            +

                                                                                                                            + CAPITAL_LETTERS + +

                                                                                                                            + + + + + + public + mixed + CAPITAL_LETTERS + = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' + + + +
                                                                                                                            + +
                                                                                                                            + + + +
                                                                                                                            +
                                                                                                                            +

                                                                                                                            + CAPITAL_LETTERS_NONAMBIGUOUS + +

                                                                                                                            + + + + + + public + mixed + CAPITAL_LETTERS_NONAMBIGUOUS + = 'ABCDEFGHJKLMNPQRSTUVWX' + + + +
                                                                                                                            + +
                                                                                                                            + + + +
                                                                                                                            +
                                                                                                                            +

                                                                                                                            + NUMBERS + +

                                                                                                                            + + + + + + public + mixed + NUMBERS + = '0123456789' + + + +
                                                                                                                            + +
                                                                                                                            + + + +
                                                                                                                            +
                                                                                                                            +

                                                                                                                            + NUMBERS_NONAMBIGUOUS + +

                                                                                                                            + + + + + + public + mixed + NUMBERS_NONAMBIGUOUS + = '23456789' + + + +
                                                                                                                            + +
                                                                                                                            + + + +
                                                                                                                            +
                                                                                                                            +

                                                                                                                            + SMALL_LETTERS + +

                                                                                                                            + + + + + + public + mixed + SMALL_LETTERS + = 'abcdefghijklmnopqrstuvwxyz' + + + +
                                                                                                                            + +
                                                                                                                            + + + +
                                                                                                                            +
                                                                                                                            +

                                                                                                                            + SMALL_LETTERS_NONAMBIGUOUS + +

                                                                                                                            + + + + + + public + mixed + SMALL_LETTERS_NONAMBIGUOUS + = 'abcdefghjkmnpqrstuvwx' + + + +
                                                                                                                            + +
                                                                                                                            + + + +
                                                                                                                            +
                                                                                                                            + + +
                                                                                                                            +

                                                                                                                            + Properties + +

                                                                                                                            +
                                                                                                                            +

                                                                                                                            + $framework + + + +

                                                                                                                            + + + + + protected + ContaoFrameworkInterface + $framework + + + + + + +
                                                                                                                            +
                                                                                                                            +

                                                                                                                            + $utils + + + +

                                                                                                                            + + + + + protected + Utils + $utils + + + + + + +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +

                                                                                                                            + Methods + +

                                                                                                                            +
                                                                                                                            +

                                                                                                                            + __construct() + +

                                                                                                                            + + + + + public + __construct(ContaoFrameworkInterface $framework, Utils $utils) : mixed + +
                                                                                                                            + +
                                                                                                                            Parameters
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + $framework + : ContaoFrameworkInterface +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + $utils + : Utils +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + + + +
                                                                                                                            Return values
                                                                                                                            + mixed + — + + +
                                                                                                                            +
                                                                                                                            +

                                                                                                                            + camelCaseToDashed() + +

                                                                                                                            + + +

                                                                                                                            Convert a camel case string to a dashed string.

                                                                                                                            + + + public + camelCaseToDashed(string $value) : string + +

                                                                                                                            Example: MyPrettyClass to my-pretty-class

                                                                                                                            +
                                                                                                                            + +
                                                                                                                            Parameters
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + $value + : string +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + + +
                                                                                                                            + Tags + +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + deprecated +
                                                                                                                            +
                                                                                                                            + +

                                                                                                                            Use utils service instead

                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + codeCoverageIgnore +
                                                                                                                            +
                                                                                                                            + + +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            Return values
                                                                                                                            + string + — + + +
                                                                                                                            +
                                                                                                                            +

                                                                                                                            + camelCaseToSnake() + +

                                                                                                                            + + +

                                                                                                                            Convert a camel case string to a snake cased string.

                                                                                                                            + + + public + camelCaseToSnake(string $value) : string + +

                                                                                                                            Example: MyPrettyClass to my_pretty_class

                                                                                                                            +
                                                                                                                            + +
                                                                                                                            Parameters
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + $value + : string +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + + +
                                                                                                                            + Tags + +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + deprecated +
                                                                                                                            +
                                                                                                                            + +

                                                                                                                            Use utils service instead

                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + codeCoverageIgnore +
                                                                                                                            +
                                                                                                                            + + +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            Return values
                                                                                                                            + string + — + + +
                                                                                                                            +
                                                                                                                            +

                                                                                                                            + convertToInlineCss() + +

                                                                                                                            + + +

                                                                                                                            Convert css into inline styles.

                                                                                                                            + + + public + convertToInlineCss(string $text[, array<string|int, mixed> $cssText = null ]) : string + + +
                                                                                                                            Parameters
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + $text + : string +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + $cssText + : array<string|int, mixed> + = null
                                                                                                                            +
                                                                                                                            +

                                                                                                                            the css as text (no paths allowed atm)

                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + + +
                                                                                                                            + Tags + +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + codeCoverageIgnore +
                                                                                                                            +
                                                                                                                            + + +
                                                                                                                            +
                                                                                                                            + deprecated +
                                                                                                                            +
                                                                                                                            + +

                                                                                                                            Use CssInliner-Library directly in your code. We recommend tijsverkoyen/css-to-inline-styles (https://github.com/tijsverkoyen/CssToInlineStyles)

                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            Return values
                                                                                                                            + string + — + + +
                                                                                                                            +
                                                                                                                            +

                                                                                                                            + convertXmlToArray() + +

                                                                                                                            + + + + + public + convertXmlToArray(string $xmlData) : mixed + + +
                                                                                                                            Parameters
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + $xmlData + : string +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + + +
                                                                                                                            + Tags + +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + codeCoverageIgnore +
                                                                                                                            +
                                                                                                                            + + +
                                                                                                                            +
                                                                                                                            + deprecated +
                                                                                                                            +
                                                                                                                            + +

                                                                                                                            Use utils service instead

                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            Return values
                                                                                                                            + mixed + — + + +
                                                                                                                            +
                                                                                                                            +

                                                                                                                            + endsWith() + +

                                                                                                                            + + +

                                                                                                                            Check for the occurrence at the end of the string.

                                                                                                                            + + + public + endsWith(string $haystack, string $needle) : bool + + +
                                                                                                                            Parameters
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + $haystack + : string +
                                                                                                                            +
                                                                                                                            +

                                                                                                                            The string to search in

                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + $needle + : string +
                                                                                                                            +
                                                                                                                            +

                                                                                                                            The needle

                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + + +
                                                                                                                            + Tags + +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + deprecated +
                                                                                                                            +
                                                                                                                            + +

                                                                                                                            Use utils service instead

                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + codeCoverageIgnore +
                                                                                                                            +
                                                                                                                            + + +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            Return values
                                                                                                                            + bool + — + + +
                                                                                                                            +
                                                                                                                            +

                                                                                                                            + ensureLineBreaks() + +

                                                                                                                            + + +

                                                                                                                            Ensure line breaks for several languages.

                                                                                                                            + + + public + ensureLineBreaks(string $buffer[, string $language = 'en' ]) : string + + +
                                                                                                                            Parameters
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + $buffer + : string +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + $language + : string + = 'en'
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + + +
                                                                                                                            + Tags + +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + deprecated +
                                                                                                                            +
                                                                                                                            + +

                                                                                                                            use locale util of utils service instead

                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            Return values
                                                                                                                            + string + — + + +
                                                                                                                            +
                                                                                                                            +

                                                                                                                            + html2Text() + +

                                                                                                                            + + +

                                                                                                                            Converts html to text.

                                                                                                                            + + + public + html2Text(string $html[, array<string|int, mixed> $options = [] ]) : string + + +
                                                                                                                            Parameters
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + $html + : string +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + $options + : array<string|int, mixed> + = []
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + + +
                                                                                                                            + Tags + +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + throws +
                                                                                                                            +
                                                                                                                            + Html2TextException + + +
                                                                                                                            +
                                                                                                                            + codeCoverageIgnore +
                                                                                                                            +
                                                                                                                            + + +
                                                                                                                            +
                                                                                                                            + deprecated +
                                                                                                                            +
                                                                                                                            + +

                                                                                                                            Use html2text-library direct in your code, we recommend html2text/html2text (https://github.com/mtibben/html2text)

                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            Return values
                                                                                                                            + string + — + + +
                                                                                                                            +
                                                                                                                            +

                                                                                                                            + lowerCase() + +

                                                                                                                            + + +

                                                                                                                            Convenience method for lower casing in a save callback.

                                                                                                                            + + + public + lowerCase( $value, DataContainer $objDc) : string + + +
                                                                                                                            Parameters
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + $value + : +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + $objDc + : DataContainer +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + + +
                                                                                                                            + Tags + +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + codeCoverageIgnore +
                                                                                                                            +
                                                                                                                            + + +
                                                                                                                            +
                                                                                                                            + deprecated +
                                                                                                                            +
                                                                                                                            + +

                                                                                                                            Deprecated in favor of custom callback that could be used with contao service callbacks

                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            Return values
                                                                                                                            + string + — + + +
                                                                                                                            +
                                                                                                                            +

                                                                                                                            + pregReplaceLast() + +

                                                                                                                            + + + + + public + pregReplaceLast(string $regExp, string $subject) : mixed|string + + +
                                                                                                                            Parameters
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + $regExp + : string +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + $subject + : string +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + + +
                                                                                                                            + Tags + +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + codeCoverageIgnore +
                                                                                                                            +
                                                                                                                            + + +
                                                                                                                            +
                                                                                                                            + deprecated +
                                                                                                                            +
                                                                                                                            + +

                                                                                                                            Use utils service instead

                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            Return values
                                                                                                                            + mixed|string + — + + +
                                                                                                                            +
                                                                                                                            +

                                                                                                                            + random() + +

                                                                                                                            + + + + + public + random(string $charList) : mixed + + +
                                                                                                                            Parameters
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + $charList + : string +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + + +
                                                                                                                            + Tags + +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + codeCoverageIgnore +
                                                                                                                            +
                                                                                                                            + + +
                                                                                                                            +
                                                                                                                            + deprecated +
                                                                                                                            +
                                                                                                                            + +

                                                                                                                            Use utils service instead

                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            Return values
                                                                                                                            + mixed + — + + +
                                                                                                                            +
                                                                                                                            +

                                                                                                                            + randomChar() + +

                                                                                                                            + + + + + public + randomChar([bool $includeAmbiguousChars = false ]) : mixed + + +
                                                                                                                            Parameters
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + $includeAmbiguousChars + : bool + = false
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + + +
                                                                                                                            + Tags + +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + codeCoverageIgnore +
                                                                                                                            +
                                                                                                                            + + +
                                                                                                                            +
                                                                                                                            + deprecated +
                                                                                                                            +
                                                                                                                            + +

                                                                                                                            Use utils service instead

                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            Return values
                                                                                                                            + mixed + — + + +
                                                                                                                            +
                                                                                                                            +

                                                                                                                            + randomLetter() + +

                                                                                                                            + + + + + public + randomLetter([bool $includeAmbiguousChars = false ]) : mixed + + +
                                                                                                                            Parameters
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + $includeAmbiguousChars + : bool + = false
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + + +
                                                                                                                            + Tags + +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + codeCoverageIgnore +
                                                                                                                            +
                                                                                                                            + + +
                                                                                                                            +
                                                                                                                            + deprecated +
                                                                                                                            +
                                                                                                                            + +

                                                                                                                            Use utils service instead

                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            Return values
                                                                                                                            + mixed + — + + +
                                                                                                                            +
                                                                                                                            +

                                                                                                                            + randomNumber() + +

                                                                                                                            + + + + + public + randomNumber([bool $includeAmbiguousChars = false ]) : mixed + + +
                                                                                                                            Parameters
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + $includeAmbiguousChars + : bool + = false
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + + +
                                                                                                                            + Tags + +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + codeCoverageIgnore +
                                                                                                                            +
                                                                                                                            + + +
                                                                                                                            +
                                                                                                                            + deprecated +
                                                                                                                            +
                                                                                                                            + +

                                                                                                                            Use utils service instead

                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            Return values
                                                                                                                            + mixed + — + + +
                                                                                                                            +
                                                                                                                            +

                                                                                                                            + removeLeadingAndTrailingSlash() + +

                                                                                                                            + + + + + public + removeLeadingAndTrailingSlash(string $string) : string + + +
                                                                                                                            Parameters
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + $string + : string +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + + +
                                                                                                                            + Tags + +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + codeCoverageIgnore +
                                                                                                                            +
                                                                                                                            + + +
                                                                                                                            +
                                                                                                                            + deprecated +
                                                                                                                            +
                                                                                                                            + +

                                                                                                                            Use trim($string, "/") instead

                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            Return values
                                                                                                                            + string + — + + +
                                                                                                                            +
                                                                                                                            +

                                                                                                                            + removeLeadingString() + +

                                                                                                                            + + + + + public + removeLeadingString(string $string, string $subject) : mixed + + +
                                                                                                                            Parameters
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + $string + : string +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + $subject + : string +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + + +
                                                                                                                            + Tags + +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + codeCoverageIgnore +
                                                                                                                            +
                                                                                                                            + + +
                                                                                                                            +
                                                                                                                            + deprecated +
                                                                                                                            +
                                                                                                                            + +

                                                                                                                            Use utils service instead

                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            Return values
                                                                                                                            + mixed + — + + +
                                                                                                                            +
                                                                                                                            +

                                                                                                                            + removeTrailingString() + +

                                                                                                                            + + + + + public + removeTrailingString(string $string, string $subject) : mixed + + +
                                                                                                                            Parameters
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + $string + : string +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + $subject + : string +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + + +
                                                                                                                            + Tags + +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + codeCoverageIgnore +
                                                                                                                            +
                                                                                                                            + + +
                                                                                                                            +
                                                                                                                            + deprecated +
                                                                                                                            +
                                                                                                                            + +

                                                                                                                            Use utils service instead

                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            Return values
                                                                                                                            + mixed + — + + +
                                                                                                                            +
                                                                                                                            +

                                                                                                                            + replaceInsertTags() + +

                                                                                                                            + + +

                                                                                                                            Replace insert tags with their values.

                                                                                                                            + + + public + replaceInsertTags(string $buffer[, bool $cache = true ]) : string + + +
                                                                                                                            Parameters
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + $buffer + : string +
                                                                                                                            +
                                                                                                                            +

                                                                                                                            The text with the tags to be replaced

                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + $cache + : bool + = true
                                                                                                                            +
                                                                                                                            +

                                                                                                                            If false, non-cacheable tags will be replaced

                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + + +
                                                                                                                            + Tags + +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + codeCoverageIgnore +
                                                                                                                            +
                                                                                                                            + + +
                                                                                                                            +
                                                                                                                            + deprecated +
                                                                                                                            +
                                                                                                                            + +

                                                                                                                            Use Controller::replaceInsertTags as adapter

                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            Return values
                                                                                                                            + string + — +

                                                                                                                            The text with the replaced tags

                                                                                                                            +
                                                                                                                            + + +
                                                                                                                            +
                                                                                                                            +

                                                                                                                            + replaceUnicodeEmojisByHtml() + +

                                                                                                                            + + + + + public + replaceUnicodeEmojisByHtml(string|null $text) : array<string|int, mixed>|string|array<string|int, string>|null + + +
                                                                                                                            Parameters
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + $text + : string|null +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + + +
                                                                                                                            + Tags + +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + codeCoverageIgnore +
                                                                                                                            +
                                                                                                                            + + +
                                                                                                                            +
                                                                                                                            + deprecated +
                                                                                                                            +
                                                                                                                            + +

                                                                                                                            Will be removed in version 3.0. Use elvanto/litemoji (https://github.com/elvanto/litemoji) instead.

                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            Return values
                                                                                                                            + array<string|int, mixed>|string|array<string|int, string>|null + — + + +
                                                                                                                            +
                                                                                                                            +

                                                                                                                            + restoreBasicEntities() + +

                                                                                                                            + + +

                                                                                                                            Restore basic entities.

                                                                                                                            + + + public + restoreBasicEntities(string $string) : string + + +
                                                                                                                            Parameters
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + $string + : string +
                                                                                                                            +
                                                                                                                            +

                                                                                                                            The string with the tags to be replaced

                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + + +
                                                                                                                            + Tags + +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + codeCoverageIgnore +
                                                                                                                            +
                                                                                                                            + + +
                                                                                                                            +
                                                                                                                            + deprecated +
                                                                                                                            +
                                                                                                                            + +

                                                                                                                            use \Contao\StringUtil::restoreBasicEntities() instead

                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            Return values
                                                                                                                            + string + — +

                                                                                                                            The string with the original entities

                                                                                                                            +
                                                                                                                            + + +
                                                                                                                            +
                                                                                                                            +

                                                                                                                            + startsWith() + +

                                                                                                                            + + +

                                                                                                                            Check for the occurrence at the start of the string.

                                                                                                                            + + + public + startsWith( $haystack,  $needle) : bool + + +
                                                                                                                            Parameters
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + $haystack + : +
                                                                                                                            +
                                                                                                                            +

                                                                                                                            string The string to search in

                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + $needle + : +
                                                                                                                            +
                                                                                                                            +

                                                                                                                            string The needle

                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + + +
                                                                                                                            + Tags + +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + deprecated +
                                                                                                                            +
                                                                                                                            + +

                                                                                                                            Use utils service instead

                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + codeCoverageIgnore +
                                                                                                                            +
                                                                                                                            + + +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            Return values
                                                                                                                            + bool + — + + +
                                                                                                                            +
                                                                                                                            +

                                                                                                                            + truncateHtml() + +

                                                                                                                            + + +

                                                                                                                            Truncates a given string respecting html element.

                                                                                                                            + + + public + truncateHtml(string $text[, int $length = 100 ][, string $ending = '&nbsp;&hellip;' ][, bool $exact = false ][, bool $considerHtml = true ]) : string + + +
                                                                                                                            Parameters
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + $text + : string +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + $length + : int + = 100
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + $ending + : string + = '&nbsp;&hellip;'
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + $exact + : bool + = false
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + $considerHtml + : bool + = true
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + + +
                                                                                                                            + Tags + +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + codeCoverageIgnore +
                                                                                                                            +
                                                                                                                            + + +
                                                                                                                            +
                                                                                                                            + deprecated +
                                                                                                                            +
                                                                                                                            + +

                                                                                                                            Use utils service instead

                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            Return values
                                                                                                                            + string + — + + +
                                                                                                                            +
                                                                                                                            + + + + +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            +

                                                                                                                            Search results

                                                                                                                            + +
                                                                                                                            +
                                                                                                                            +
                                                                                                                              +
                                                                                                                              +
                                                                                                                              +
                                                                                                                              +
                                                                                                                              +
                                                                                                                              + + +
                                                                                                                              + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-Template-TemplateUtil.html b/classes/HeimrichHannot-UtilsBundle-Template-TemplateUtil.html new file mode 100644 index 00000000..1279e134 --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-Template-TemplateUtil.html @@ -0,0 +1,1099 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                              +

                                                                                                                              Contao Utils Bundle

                                                                                                                              + + + + + +
                                                                                                                              + +
                                                                                                                              +
                                                                                                                              + + + + +
                                                                                                                              + + +
                                                                                                                              +

                                                                                                                              + TemplateUtil + + +
                                                                                                                              + in package + +
                                                                                                                              + + +

                                                                                                                              + + + + +
                                                                                                                              + + + + + + + + +

                                                                                                                              + Table of Contents + +

                                                                                                                              + +
                                                                                                                              +
                                                                                                                              + $cache + +  : FilesystemAdapter +
                                                                                                                              +
                                                                                                                              + +
                                                                                                                              + $container + +  : ContainerInterface +
                                                                                                                              +
                                                                                                                              + +
                                                                                                                              + $containerUtil + +  : ContainerUtil +
                                                                                                                              +
                                                                                                                              + +
                                                                                                                              + $twigFiles + +  : array<string|int, mixed> +
                                                                                                                              +
                                                                                                                              Known files.
                                                                                                                              + +
                                                                                                                              + $kernel + +  : KernelInterface +
                                                                                                                              +
                                                                                                                              + +
                                                                                                                              + __construct() + +  : mixed +
                                                                                                                              +
                                                                                                                              + +
                                                                                                                              + findTemplates() + +  : array<string|int, mixed> +
                                                                                                                              +
                                                                                                                              Return the files matching a GLOB pattern.
                                                                                                                              + +
                                                                                                                              + getAllTemplates() + +  : mixed +
                                                                                                                              +
                                                                                                                              Get a list of all available templates.
                                                                                                                              + +
                                                                                                                              + getBundleTemplate() + +  : string +
                                                                                                                              +
                                                                                                                              Find a particular template file within all bundles and return its path.
                                                                                                                              + +
                                                                                                                              + getPageAliasAsCssClass() + +  : mixed +
                                                                                                                              +
                                                                                                                              + +
                                                                                                                              + getTemplate() + +  : string +
                                                                                                                              +
                                                                                                                              Find a particular template file and return its path.
                                                                                                                              + +
                                                                                                                              + getTemplateGroup() + +  : array<string|int, mixed> +
                                                                                                                              +
                                                                                                                              Return all template files of a particular group as array.
                                                                                                                              + +
                                                                                                                              + isTemplatePartEmpty() + +  : bool +
                                                                                                                              +
                                                                                                                              Return true, if the template part is empty.
                                                                                                                              + +
                                                                                                                              + removeTemplateComment() + +  : mixed +
                                                                                                                              +
                                                                                                                              remove TEMPLATE START/END comment from template if in debug mode.
                                                                                                                              + +
                                                                                                                              + renderTwigTemplate() + +  : string +
                                                                                                                              +
                                                                                                                              Renders a twig template with data.
                                                                                                                              + +
                                                                                                                              + + + + + + +
                                                                                                                              +

                                                                                                                              + Properties + +

                                                                                                                              +
                                                                                                                              +

                                                                                                                              + $cache + + + +

                                                                                                                              + + + + + protected + FilesystemAdapter + $cache + + + + + + +
                                                                                                                              +
                                                                                                                              +

                                                                                                                              + $container + + + +

                                                                                                                              + + + + + protected + ContainerInterface + $container + + + + + + +
                                                                                                                              + +
                                                                                                                              +

                                                                                                                              + $twigFiles + + + +

                                                                                                                              + + +

                                                                                                                              Known files.

                                                                                                                              + + + protected + static array<string|int, mixed> + $twigFiles + = [] + + + + + +
                                                                                                                              +
                                                                                                                              +

                                                                                                                              + $kernel + + + +

                                                                                                                              + + + + + private + KernelInterface + $kernel + + + + + + +
                                                                                                                              +
                                                                                                                              + +
                                                                                                                              +

                                                                                                                              + Methods + +

                                                                                                                              +
                                                                                                                              +

                                                                                                                              + __construct() + +

                                                                                                                              + + + + + public + __construct(ContainerInterface $container) : mixed + +
                                                                                                                              + +
                                                                                                                              Parameters
                                                                                                                              +
                                                                                                                              +
                                                                                                                              + $container + : ContainerInterface +
                                                                                                                              +
                                                                                                                              +
                                                                                                                              + +
                                                                                                                              +
                                                                                                                              + + + +
                                                                                                                              Return values
                                                                                                                              + mixed + — + + +
                                                                                                                              +
                                                                                                                              +

                                                                                                                              + findTemplates() + +

                                                                                                                              + + +

                                                                                                                              Return the files matching a GLOB pattern.

                                                                                                                              + + + public + findTemplates(string $path[, string $pattern = null ][, string $format = 'twig' ]) : array<string|int, mixed> + + +
                                                                                                                              Parameters
                                                                                                                              +
                                                                                                                              +
                                                                                                                              + $path + : string +
                                                                                                                              +
                                                                                                                              +
                                                                                                                              + +
                                                                                                                              +
                                                                                                                              + $pattern + : string + = null
                                                                                                                              +
                                                                                                                              + +
                                                                                                                              +
                                                                                                                              + $format + : string + = 'twig'
                                                                                                                              +
                                                                                                                              +
                                                                                                                              + +
                                                                                                                              +
                                                                                                                              + + + +
                                                                                                                              Return values
                                                                                                                              + array<string|int, mixed> + — + + +
                                                                                                                              +
                                                                                                                              +

                                                                                                                              + getAllTemplates() + +

                                                                                                                              + + +

                                                                                                                              Get a list of all available templates.

                                                                                                                              + + + public + getAllTemplates() : mixed + + + + + +
                                                                                                                              Return values
                                                                                                                              + mixed + — + + +
                                                                                                                              +
                                                                                                                              +

                                                                                                                              + getBundleTemplate() + +

                                                                                                                              + + +

                                                                                                                              Find a particular template file within all bundles and return its path.

                                                                                                                              + + + public + getBundleTemplate(string $name[, string $format = 'html.twig' ]) : string + + +
                                                                                                                              Parameters
                                                                                                                              +
                                                                                                                              +
                                                                                                                              + $name + : string +
                                                                                                                              +
                                                                                                                              +

                                                                                                                              The name of the template

                                                                                                                              +
                                                                                                                              + +
                                                                                                                              +
                                                                                                                              + $format + : string + = 'html.twig'
                                                                                                                              +
                                                                                                                              +

                                                                                                                              The file extension

                                                                                                                              +
                                                                                                                              + +
                                                                                                                              +
                                                                                                                              + + +
                                                                                                                              + Tags + +
                                                                                                                              +
                                                                                                                              +
                                                                                                                              + throws +
                                                                                                                              +
                                                                                                                              + InvalidArgumentException + +

                                                                                                                              If $strFormat is unknown

                                                                                                                              +
                                                                                                                              + +
                                                                                                                              +
                                                                                                                              + throws +
                                                                                                                              +
                                                                                                                              + RuntimeException + +

                                                                                                                              If the template group folder is insecure

                                                                                                                              +
                                                                                                                              + +
                                                                                                                              +
                                                                                                                              + +
                                                                                                                              Return values
                                                                                                                              + string + — +

                                                                                                                              The path to the template file

                                                                                                                              +
                                                                                                                              + + +
                                                                                                                              +
                                                                                                                              +

                                                                                                                              + getPageAliasAsCssClass() + +

                                                                                                                              + + + + + public + getPageAliasAsCssClass() : mixed + +
                                                                                                                              + + + + +
                                                                                                                              Return values
                                                                                                                              + mixed + — + + +
                                                                                                                              +
                                                                                                                              +

                                                                                                                              + getTemplate() + +

                                                                                                                              + + +

                                                                                                                              Find a particular template file and return its path.

                                                                                                                              + + + public + getTemplate(string $name[, string $format = 'twig' ]) : string + + +
                                                                                                                              Parameters
                                                                                                                              +
                                                                                                                              +
                                                                                                                              + $name + : string +
                                                                                                                              +
                                                                                                                              +

                                                                                                                              The name of the template

                                                                                                                              +
                                                                                                                              + +
                                                                                                                              +
                                                                                                                              + $format + : string + = 'twig'
                                                                                                                              +
                                                                                                                              +

                                                                                                                              The file extension

                                                                                                                              +
                                                                                                                              + +
                                                                                                                              +
                                                                                                                              + + +
                                                                                                                              + Tags + +
                                                                                                                              +
                                                                                                                              +
                                                                                                                              + throws +
                                                                                                                              +
                                                                                                                              + InvalidArgumentException + +

                                                                                                                              If $strFormat is unknown

                                                                                                                              +
                                                                                                                              + +
                                                                                                                              +
                                                                                                                              + throws +
                                                                                                                              +
                                                                                                                              + RuntimeException + +

                                                                                                                              If the template group folder is insecure

                                                                                                                              +
                                                                                                                              + +
                                                                                                                              +
                                                                                                                              + throws +
                                                                                                                              +
                                                                                                                              + Twig_Error_Loader + + +
                                                                                                                              +
                                                                                                                              + +
                                                                                                                              Return values
                                                                                                                              + string + — +

                                                                                                                              The path to the template file

                                                                                                                              +
                                                                                                                              + + +
                                                                                                                              +
                                                                                                                              +

                                                                                                                              + getTemplateGroup() + +

                                                                                                                              + + +

                                                                                                                              Return all template files of a particular group as array.

                                                                                                                              + + + public + getTemplateGroup(string $prefix[, string $format = 'html.twig' ]) : array<string|int, mixed> + + +
                                                                                                                              Parameters
                                                                                                                              +
                                                                                                                              +
                                                                                                                              + $prefix + : string +
                                                                                                                              +
                                                                                                                              +

                                                                                                                              The template name prefix (e.g. "ce_")

                                                                                                                              +
                                                                                                                              + +
                                                                                                                              +
                                                                                                                              + $format + : string + = 'html.twig'
                                                                                                                              +
                                                                                                                              +

                                                                                                                              The file extension

                                                                                                                              +
                                                                                                                              + +
                                                                                                                              +
                                                                                                                              + + +
                                                                                                                              + Tags + +
                                                                                                                              +
                                                                                                                              +
                                                                                                                              + coversNothing +
                                                                                                                              +
                                                                                                                              + +

                                                                                                                              As long as Controller::getTemplateGroup is not testable (ThemeModel…)

                                                                                                                              +
                                                                                                                              + +
                                                                                                                              +
                                                                                                                              + +
                                                                                                                              Return values
                                                                                                                              + array<string|int, mixed> + — +

                                                                                                                              An array of template names (html.twig templates without file extension, others with file extension)

                                                                                                                              +
                                                                                                                              + + +
                                                                                                                              +
                                                                                                                              +

                                                                                                                              + isTemplatePartEmpty() + +

                                                                                                                              + + +

                                                                                                                              Return true, if the template part is empty.

                                                                                                                              + + + public + isTemplatePartEmpty([string $template = null ]) : bool + +

                                                                                                                              Template comments from debug and white spaces are treated as empty.

                                                                                                                              +

                                                                                                                              Datatypes other than string (typical null) are also treated as empty.

                                                                                                                              +
                                                                                                                              + +
                                                                                                                              Parameters
                                                                                                                              +
                                                                                                                              +
                                                                                                                              + $template + : string + = null
                                                                                                                              +
                                                                                                                              + +
                                                                                                                              +
                                                                                                                              + + + +
                                                                                                                              Return values
                                                                                                                              + bool + — + + +
                                                                                                                              +
                                                                                                                              +

                                                                                                                              + removeTemplateComment() + +

                                                                                                                              + + +

                                                                                                                              remove TEMPLATE START/END comment from template if in debug mode.

                                                                                                                              + + + public + removeTemplateComment(mixed $template) : mixed + + +
                                                                                                                              Parameters
                                                                                                                              +
                                                                                                                              +
                                                                                                                              + $template + : mixed +
                                                                                                                              +
                                                                                                                              +
                                                                                                                              + +
                                                                                                                              +
                                                                                                                              + + + +
                                                                                                                              Return values
                                                                                                                              + mixed + — + + +
                                                                                                                              +
                                                                                                                              +

                                                                                                                              + renderTwigTemplate() + +

                                                                                                                              + + +

                                                                                                                              Renders a twig template with data.

                                                                                                                              + + + public + renderTwigTemplate(string $name[, array<string|int, mixed> $context = [] ]) : string + + +
                                                                                                                              Parameters
                                                                                                                              +
                                                                                                                              +
                                                                                                                              + $name + : string +
                                                                                                                              +
                                                                                                                              +

                                                                                                                              The twig template name

                                                                                                                              +
                                                                                                                              + +
                                                                                                                              +
                                                                                                                              + $context + : array<string|int, mixed> + = []
                                                                                                                              +
                                                                                                                              +

                                                                                                                              The twig template context data

                                                                                                                              +
                                                                                                                              + +
                                                                                                                              +
                                                                                                                              + + +
                                                                                                                              + Tags + +
                                                                                                                              +
                                                                                                                              +
                                                                                                                              + throws +
                                                                                                                              +
                                                                                                                              + InvalidArgumentException + + +
                                                                                                                              +
                                                                                                                              + throws +
                                                                                                                              +
                                                                                                                              + Twig_Error_Loader + + +
                                                                                                                              +
                                                                                                                              + throws +
                                                                                                                              +
                                                                                                                              + Twig_Error_Runtime + + +
                                                                                                                              +
                                                                                                                              + throws +
                                                                                                                              +
                                                                                                                              + Twig_Error_Syntax + + +
                                                                                                                              +
                                                                                                                              + +
                                                                                                                              Return values
                                                                                                                              + string + — + + +
                                                                                                                              +
                                                                                                                              + + + + +
                                                                                                                              +
                                                                                                                              +
                                                                                                                              +
                                                                                                                              +

                                                                                                                              Search results

                                                                                                                              + +
                                                                                                                              +
                                                                                                                              +
                                                                                                                                +
                                                                                                                                +
                                                                                                                                +
                                                                                                                                +
                                                                                                                                +
                                                                                                                                + + +
                                                                                                                                + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-Twig-ArrayExtension.html b/classes/HeimrichHannot-UtilsBundle-Twig-ArrayExtension.html new file mode 100644 index 00000000..9e72ffca --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-Twig-ArrayExtension.html @@ -0,0 +1,352 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                +

                                                                                                                                Contao Utils Bundle

                                                                                                                                + + + + + +
                                                                                                                                + +
                                                                                                                                +
                                                                                                                                + + + + +
                                                                                                                                + + +
                                                                                                                                +

                                                                                                                                + ArrayExtension + + + extends AbstractExtension + + +
                                                                                                                                + in package + +
                                                                                                                                + + + implements + ContainerAwareInterface + + + Uses + ContainerAwareTrait +

                                                                                                                                + + + + +
                                                                                                                                + + + + + + +

                                                                                                                                + Interfaces, Classes and Traits + +

                                                                                                                                + +
                                                                                                                                +
                                                                                                                                ContainerAwareInterface
                                                                                                                                +
                                                                                                                                + + +
                                                                                                                                + + +

                                                                                                                                + Table of Contents + +

                                                                                                                                + +
                                                                                                                                +
                                                                                                                                + deserialize() + +  : array<string|int, mixed>|null +
                                                                                                                                +
                                                                                                                                + +
                                                                                                                                + getFilters() + +  : array<string|int, mixed>|array<string|int, Twig_SimpleFilter> +
                                                                                                                                +
                                                                                                                                Get list of twig filters.
                                                                                                                                + +
                                                                                                                                + + + + + + + +
                                                                                                                                +

                                                                                                                                + Methods + +

                                                                                                                                +
                                                                                                                                +

                                                                                                                                + deserialize() + +

                                                                                                                                + + + + + public + deserialize(string|null $text[, bool $forceArray = false ]) : array<string|int, mixed>|null + +
                                                                                                                                + +
                                                                                                                                Parameters
                                                                                                                                +
                                                                                                                                +
                                                                                                                                + $text + : string|null +
                                                                                                                                +
                                                                                                                                +
                                                                                                                                + +
                                                                                                                                +
                                                                                                                                + $forceArray + : bool + = false
                                                                                                                                +
                                                                                                                                +
                                                                                                                                + +
                                                                                                                                +
                                                                                                                                + + + +
                                                                                                                                Return values
                                                                                                                                + array<string|int, mixed>|null + — + + +
                                                                                                                                +
                                                                                                                                +

                                                                                                                                + getFilters() + +

                                                                                                                                + + +

                                                                                                                                Get list of twig filters.

                                                                                                                                + + + public + getFilters() : array<string|int, mixed>|array<string|int, Twig_SimpleFilter> + + + + + +
                                                                                                                                Return values
                                                                                                                                + array<string|int, mixed>|array<string|int, Twig_SimpleFilter> + — + + +
                                                                                                                                +
                                                                                                                                + + + + +
                                                                                                                                +
                                                                                                                                +
                                                                                                                                +
                                                                                                                                +

                                                                                                                                Search results

                                                                                                                                + +
                                                                                                                                +
                                                                                                                                +
                                                                                                                                  +
                                                                                                                                  +
                                                                                                                                  +
                                                                                                                                  +
                                                                                                                                  +
                                                                                                                                  + + +
                                                                                                                                  + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-Twig-DateExtension.html b/classes/HeimrichHannot-UtilsBundle-Twig-DateExtension.html new file mode 100644 index 00000000..53ddf151 --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-Twig-DateExtension.html @@ -0,0 +1,335 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                  +

                                                                                                                                  Contao Utils Bundle

                                                                                                                                  + + + + + +
                                                                                                                                  + +
                                                                                                                                  +
                                                                                                                                  + + + + +
                                                                                                                                  + + +
                                                                                                                                  +

                                                                                                                                  + DateExtension + + + extends AbstractExtension + + +
                                                                                                                                  + in package + +
                                                                                                                                  + + +

                                                                                                                                  + + + + +
                                                                                                                                  + + + + + + + + +

                                                                                                                                  + Table of Contents + +

                                                                                                                                  + +
                                                                                                                                  +
                                                                                                                                  + getFilters() + +  : array<string|int, mixed>|array<string|int, Twig_SimpleFilter> +
                                                                                                                                  +
                                                                                                                                  Get list of twig filters.
                                                                                                                                  + +
                                                                                                                                  + getLocalizedDate() + +  : string +
                                                                                                                                  +
                                                                                                                                  + +
                                                                                                                                  + + + + + + + +
                                                                                                                                  +

                                                                                                                                  + Methods + +

                                                                                                                                  +
                                                                                                                                  +

                                                                                                                                  + getFilters() + +

                                                                                                                                  + + +

                                                                                                                                  Get list of twig filters.

                                                                                                                                  + + + public + getFilters() : array<string|int, mixed>|array<string|int, Twig_SimpleFilter> + + + + + +
                                                                                                                                  Return values
                                                                                                                                  + array<string|int, mixed>|array<string|int, Twig_SimpleFilter> + — + + +
                                                                                                                                  +
                                                                                                                                  +

                                                                                                                                  + getLocalizedDate() + +

                                                                                                                                  + + + + + public + getLocalizedDate(mixed $timestamp[, string $format = null ]) : string + +
                                                                                                                                  + +
                                                                                                                                  Parameters
                                                                                                                                  +
                                                                                                                                  +
                                                                                                                                  + $timestamp + : mixed +
                                                                                                                                  +
                                                                                                                                  +
                                                                                                                                  + +
                                                                                                                                  +
                                                                                                                                  + $format + : string + = null
                                                                                                                                  +
                                                                                                                                  +
                                                                                                                                  + +
                                                                                                                                  +
                                                                                                                                  + + + +
                                                                                                                                  Return values
                                                                                                                                  + string + — + + +
                                                                                                                                  +
                                                                                                                                  + + + + +
                                                                                                                                  +
                                                                                                                                  +
                                                                                                                                  +
                                                                                                                                  +

                                                                                                                                  Search results

                                                                                                                                  + +
                                                                                                                                  +
                                                                                                                                  +
                                                                                                                                    +
                                                                                                                                    +
                                                                                                                                    +
                                                                                                                                    +
                                                                                                                                    +
                                                                                                                                    + + +
                                                                                                                                    + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-Twig-DcaExtension.html b/classes/HeimrichHannot-UtilsBundle-Twig-DcaExtension.html new file mode 100644 index 00000000..ea18faf2 --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-Twig-DcaExtension.html @@ -0,0 +1,352 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                    +

                                                                                                                                    Contao Utils Bundle

                                                                                                                                    + + + + + +
                                                                                                                                    + +
                                                                                                                                    +
                                                                                                                                    + + + + +
                                                                                                                                    + + +
                                                                                                                                    +

                                                                                                                                    + DcaExtension + + + extends AbstractExtension + + +
                                                                                                                                    + in package + +
                                                                                                                                    + + + implements + ContainerAwareInterface + + + Uses + ContainerAwareTrait +

                                                                                                                                    + + + + +
                                                                                                                                    + + + + + + +

                                                                                                                                    + Interfaces, Classes and Traits + +

                                                                                                                                    + +
                                                                                                                                    +
                                                                                                                                    ContainerAwareInterface
                                                                                                                                    +
                                                                                                                                    + + +
                                                                                                                                    + + +

                                                                                                                                    + Table of Contents + +

                                                                                                                                    + +
                                                                                                                                    +
                                                                                                                                    + fieldLabel() + +  : string +
                                                                                                                                    +
                                                                                                                                    + +
                                                                                                                                    + getFilters() + +  : mixed +
                                                                                                                                    +
                                                                                                                                    + +
                                                                                                                                    + + + + + + + +
                                                                                                                                    +

                                                                                                                                    + Methods + +

                                                                                                                                    +
                                                                                                                                    +

                                                                                                                                    + fieldLabel() + +

                                                                                                                                    + + + + + public + fieldLabel(string $field, string $table) : string + +
                                                                                                                                    + +
                                                                                                                                    Parameters
                                                                                                                                    +
                                                                                                                                    +
                                                                                                                                    + $field + : string +
                                                                                                                                    +
                                                                                                                                    +
                                                                                                                                    + +
                                                                                                                                    +
                                                                                                                                    + $table + : string +
                                                                                                                                    +
                                                                                                                                    +
                                                                                                                                    + +
                                                                                                                                    +
                                                                                                                                    + + + +
                                                                                                                                    Return values
                                                                                                                                    + string + — + + +
                                                                                                                                    +
                                                                                                                                    +

                                                                                                                                    + getFilters() + +

                                                                                                                                    + + + + + public + getFilters() : mixed + +
                                                                                                                                    + + + + +
                                                                                                                                    Return values
                                                                                                                                    + mixed + — + + +
                                                                                                                                    +
                                                                                                                                    + + + + +
                                                                                                                                    +
                                                                                                                                    +
                                                                                                                                    +
                                                                                                                                    +

                                                                                                                                    Search results

                                                                                                                                    + +
                                                                                                                                    +
                                                                                                                                    +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      + + +
                                                                                                                                      + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-Twig-DownloadExtension.html b/classes/HeimrichHannot-UtilsBundle-Twig-DownloadExtension.html new file mode 100644 index 00000000..f0fe02d9 --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-Twig-DownloadExtension.html @@ -0,0 +1,829 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                      +

                                                                                                                                      Contao Utils Bundle

                                                                                                                                      + + + + + +
                                                                                                                                      + +
                                                                                                                                      +
                                                                                                                                      + + + + +
                                                                                                                                      + + +
                                                                                                                                      +

                                                                                                                                      + DownloadExtension + + + extends AbstractExtension + + +
                                                                                                                                      + in package + +
                                                                                                                                      + + +

                                                                                                                                      + + + + +
                                                                                                                                      + + + + + + + + +

                                                                                                                                      + Table of Contents + +

                                                                                                                                      + +
                                                                                                                                      +
                                                                                                                                      + $requestStack + +  : RequestStack +
                                                                                                                                      +
                                                                                                                                      + +
                                                                                                                                      + $twig + +  : Environment +
                                                                                                                                      +
                                                                                                                                      + +
                                                                                                                                      + $utils + +  : Utils +
                                                                                                                                      +
                                                                                                                                      + +
                                                                                                                                      + __construct() + +  : mixed +
                                                                                                                                      +
                                                                                                                                      + +
                                                                                                                                      + getDownload() + +  : string +
                                                                                                                                      +
                                                                                                                                      Get download based on given path/uuid.
                                                                                                                                      + +
                                                                                                                                      + getDownloadData() + +  : array<string|int, mixed>|null +
                                                                                                                                      +
                                                                                                                                      Get download data based on given path/uuid.
                                                                                                                                      + +
                                                                                                                                      + getDownloadLink() + +  : string +
                                                                                                                                      +
                                                                                                                                      Get download link `?file=` based on given path/uuid.
                                                                                                                                      + +
                                                                                                                                      + getDownloadPath() + +  : string +
                                                                                                                                      +
                                                                                                                                      Get download path based on given path/uuid.
                                                                                                                                      + +
                                                                                                                                      + getDownloadTitle() + +  : string +
                                                                                                                                      +
                                                                                                                                      Get download title based on given path/uuid.
                                                                                                                                      + +
                                                                                                                                      + getFilters() + +  : array<string|int, mixed>|array<string|int, Twig_SimpleFilter> +
                                                                                                                                      +
                                                                                                                                      Get list of twig filters.
                                                                                                                                      + +
                                                                                                                                      + + + + + + +
                                                                                                                                      +

                                                                                                                                      + Properties + +

                                                                                                                                      +
                                                                                                                                      +

                                                                                                                                      + $requestStack + + + +

                                                                                                                                      + + + + + private + RequestStack + $requestStack + + + + + + +
                                                                                                                                      +
                                                                                                                                      +

                                                                                                                                      + $twig + + + +

                                                                                                                                      + + + + + private + Environment + $twig + + + + + + +
                                                                                                                                      + +
                                                                                                                                      + +
                                                                                                                                      +

                                                                                                                                      + Methods + +

                                                                                                                                      +
                                                                                                                                      +

                                                                                                                                      + __construct() + +

                                                                                                                                      + + + + + public + __construct(RequestStack $requestStack, Utils $utils, Environment $twig) : mixed + +
                                                                                                                                      + +
                                                                                                                                      Parameters
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      + $requestStack + : RequestStack +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      + +
                                                                                                                                      +
                                                                                                                                      + $utils + : Utils +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      + +
                                                                                                                                      +
                                                                                                                                      + $twig + : Environment +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      + +
                                                                                                                                      +
                                                                                                                                      + + + +
                                                                                                                                      Return values
                                                                                                                                      + mixed + — + + +
                                                                                                                                      +
                                                                                                                                      +

                                                                                                                                      + getDownload() + +

                                                                                                                                      + + +

                                                                                                                                      Get download based on given path/uuid.

                                                                                                                                      + + + public + getDownload(mixed $path[, bool $download = true ][, array<string|int, mixed> $data = [] ][, string $template = '@HeimrichHannotContaoUtils/download.html.twig' ]) : string + + +
                                                                                                                                      Parameters
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      + $path + : mixed +
                                                                                                                                      +
                                                                                                                                      +

                                                                                                                                      File path/uuid

                                                                                                                                      +
                                                                                                                                      + +
                                                                                                                                      +
                                                                                                                                      + $download + : bool + = true
                                                                                                                                      +
                                                                                                                                      +

                                                                                                                                      Return link as download link if true, as download path if false

                                                                                                                                      +
                                                                                                                                      + +
                                                                                                                                      +
                                                                                                                                      + $data + : array<string|int, mixed> + = []
                                                                                                                                      +
                                                                                                                                      +

                                                                                                                                      Add custom data here

                                                                                                                                      +
                                                                                                                                      + +
                                                                                                                                      +
                                                                                                                                      + $template + : string + = '@HeimrichHannotContaoUtils/download.html.twig'
                                                                                                                                      +
                                                                                                                                      +

                                                                                                                                      Use custom download template

                                                                                                                                      +
                                                                                                                                      + +
                                                                                                                                      +
                                                                                                                                      + + +
                                                                                                                                      + Tags + +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      + throws +
                                                                                                                                      +
                                                                                                                                      + LoaderError + + +
                                                                                                                                      +
                                                                                                                                      + throws +
                                                                                                                                      +
                                                                                                                                      + RuntimeError + + +
                                                                                                                                      +
                                                                                                                                      + throws +
                                                                                                                                      +
                                                                                                                                      + SyntaxError + + +
                                                                                                                                      +
                                                                                                                                      + +
                                                                                                                                      Return values
                                                                                                                                      + string + — +

                                                                                                                                      Download html element

                                                                                                                                      +
                                                                                                                                      + + +
                                                                                                                                      +
                                                                                                                                      +

                                                                                                                                      + getDownloadData() + +

                                                                                                                                      + + +

                                                                                                                                      Get download data based on given path/uuid.

                                                                                                                                      + + + public + getDownloadData(mixed $path[, array<string|int, mixed> $data = [] ]) : array<string|int, mixed>|null + + +
                                                                                                                                      Parameters
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      + $path + : mixed +
                                                                                                                                      +
                                                                                                                                      +

                                                                                                                                      File path/uuid

                                                                                                                                      +
                                                                                                                                      + +
                                                                                                                                      +
                                                                                                                                      + $data + : array<string|int, mixed> + = []
                                                                                                                                      +
                                                                                                                                      +

                                                                                                                                      Add custom data here

                                                                                                                                      +
                                                                                                                                      + +
                                                                                                                                      +
                                                                                                                                      + + + +
                                                                                                                                      Return values
                                                                                                                                      + array<string|int, mixed>|null + — +

                                                                                                                                      Download element data

                                                                                                                                      +
                                                                                                                                      + + +
                                                                                                                                      +
                                                                                                                                      + + + +

                                                                                                                                      Get download link `?file=` based on given path/uuid.

                                                                                                                                      + + + public + getDownloadLink(mixed $path[, array<string|int, mixed> $data = [] ]) : string + + +
                                                                                                                                      Parameters
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      + $path + : mixed +
                                                                                                                                      +
                                                                                                                                      +

                                                                                                                                      File path/uuid

                                                                                                                                      +
                                                                                                                                      + +
                                                                                                                                      +
                                                                                                                                      + $data + : array<string|int, mixed> + = []
                                                                                                                                      +
                                                                                                                                      +

                                                                                                                                      Add custom data here

                                                                                                                                      +
                                                                                                                                      + +
                                                                                                                                      +
                                                                                                                                      + + + +
                                                                                                                                      Return values
                                                                                                                                      + string + — +

                                                                                                                                      File download link

                                                                                                                                      +
                                                                                                                                      + + +
                                                                                                                                      +
                                                                                                                                      +

                                                                                                                                      + getDownloadPath() + +

                                                                                                                                      + + +

                                                                                                                                      Get download path based on given path/uuid.

                                                                                                                                      + + + public + getDownloadPath(mixed $path[, array<string|int, mixed> $data = [] ]) : string + + +
                                                                                                                                      Parameters
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      + $path + : mixed +
                                                                                                                                      +
                                                                                                                                      +

                                                                                                                                      File path/uuid

                                                                                                                                      +
                                                                                                                                      + +
                                                                                                                                      +
                                                                                                                                      + $data + : array<string|int, mixed> + = []
                                                                                                                                      +
                                                                                                                                      +

                                                                                                                                      Add custom data here

                                                                                                                                      +
                                                                                                                                      + +
                                                                                                                                      +
                                                                                                                                      + + + +
                                                                                                                                      Return values
                                                                                                                                      + string + — +

                                                                                                                                      File path

                                                                                                                                      +
                                                                                                                                      + + +
                                                                                                                                      +
                                                                                                                                      +

                                                                                                                                      + getDownloadTitle() + +

                                                                                                                                      + + +

                                                                                                                                      Get download title based on given path/uuid.

                                                                                                                                      + + + public + getDownloadTitle(mixed $path[, array<string|int, mixed> $data = [] ]) : string + + +
                                                                                                                                      Parameters
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      + $path + : mixed +
                                                                                                                                      +
                                                                                                                                      +

                                                                                                                                      File path/uuid

                                                                                                                                      +
                                                                                                                                      + +
                                                                                                                                      +
                                                                                                                                      + $data + : array<string|int, mixed> + = []
                                                                                                                                      +
                                                                                                                                      +

                                                                                                                                      Add custom data here

                                                                                                                                      +
                                                                                                                                      + +
                                                                                                                                      +
                                                                                                                                      + + + +
                                                                                                                                      Return values
                                                                                                                                      + string + — +

                                                                                                                                      Download title

                                                                                                                                      +
                                                                                                                                      + + +
                                                                                                                                      +
                                                                                                                                      +

                                                                                                                                      + getFilters() + +

                                                                                                                                      + + +

                                                                                                                                      Get list of twig filters.

                                                                                                                                      + + + public + getFilters() : array<string|int, mixed>|array<string|int, Twig_SimpleFilter> + + + + + +
                                                                                                                                      Return values
                                                                                                                                      + array<string|int, mixed>|array<string|int, Twig_SimpleFilter> + — + + +
                                                                                                                                      +
                                                                                                                                      + + + + +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      +

                                                                                                                                      Search results

                                                                                                                                      + +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                        +
                                                                                                                                        +
                                                                                                                                        +
                                                                                                                                        +
                                                                                                                                        +
                                                                                                                                        + + +
                                                                                                                                        + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-Twig-FileExtension.html b/classes/HeimrichHannot-UtilsBundle-Twig-FileExtension.html new file mode 100644 index 00000000..3265e5f9 --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-Twig-FileExtension.html @@ -0,0 +1,577 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                        +

                                                                                                                                        Contao Utils Bundle

                                                                                                                                        + + + + + +
                                                                                                                                        + +
                                                                                                                                        +
                                                                                                                                        + + + + +
                                                                                                                                        + + +
                                                                                                                                        +

                                                                                                                                        + FileExtension + + + extends AbstractExtension + + +
                                                                                                                                        + in package + +
                                                                                                                                        + + + implements + ContainerAwareInterface + + + Uses + ContainerAwareTrait +

                                                                                                                                        + + + + +
                                                                                                                                        + + + + + + +

                                                                                                                                        + Interfaces, Classes and Traits + +

                                                                                                                                        + +
                                                                                                                                        +
                                                                                                                                        ContainerAwareInterface
                                                                                                                                        +
                                                                                                                                        + + +
                                                                                                                                        + + +

                                                                                                                                        + Table of Contents + +

                                                                                                                                        + +
                                                                                                                                        +
                                                                                                                                        + FILE_OBJECT_PROPERTIES + +  = ['size', 'readableFilesize', 'filesize', 'name', 'basename', 'dirname', 'filename', 'extension', 'origext', 'tmpname', 'path', 'value', 'mime', 'ctime', 'mtime', 'atime', 'icon', 'imageSize', 'width', 'height', 'imageViewSize', 'viewWidth', 'viewHeight', 'isImage', 'isGdImage', 'isSvgImage', 'channels', 'bits', 'isRgbImage', 'isCmykImage'] +
                                                                                                                                        +
                                                                                                                                        + +
                                                                                                                                        + convertBinaryToUuid() + +  : mixed +
                                                                                                                                        +
                                                                                                                                        + +
                                                                                                                                        + getFileContent() + +  : mixed +
                                                                                                                                        +
                                                                                                                                        + +
                                                                                                                                        + getFileData() + +  : array<string|int, mixed> +
                                                                                                                                        +
                                                                                                                                        Get file data based on given uuid.
                                                                                                                                        + +
                                                                                                                                        + getFilePath() + +  : string +
                                                                                                                                        +
                                                                                                                                        Get file path based on given uuid.
                                                                                                                                        + +
                                                                                                                                        + getFilters() + +  : array<string|int, mixed>|array<string|int, Twig_SimpleFilter> +
                                                                                                                                        +
                                                                                                                                        Get list of twig filters.
                                                                                                                                        + +
                                                                                                                                        + + + + +
                                                                                                                                        +

                                                                                                                                        + Constants + +

                                                                                                                                        +
                                                                                                                                        +

                                                                                                                                        + FILE_OBJECT_PROPERTIES + +

                                                                                                                                        + + + + + + public + mixed + FILE_OBJECT_PROPERTIES + = ['size', 'readableFilesize', 'filesize', 'name', 'basename', 'dirname', 'filename', 'extension', 'origext', 'tmpname', 'path', 'value', 'mime', 'ctime', 'mtime', 'atime', 'icon', 'imageSize', 'width', 'height', 'imageViewSize', 'viewWidth', 'viewHeight', 'isImage', 'isGdImage', 'isSvgImage', 'channels', 'bits', 'isRgbImage', 'isCmykImage'] + + + +
                                                                                                                                        + +
                                                                                                                                        + + + +
                                                                                                                                        +
                                                                                                                                        + + + +
                                                                                                                                        +

                                                                                                                                        + Methods + +

                                                                                                                                        +
                                                                                                                                        +

                                                                                                                                        + convertBinaryToUuid() + +

                                                                                                                                        + + + + + public + convertBinaryToUuid(mixed $binary) : mixed + +
                                                                                                                                        + +
                                                                                                                                        Parameters
                                                                                                                                        +
                                                                                                                                        +
                                                                                                                                        + $binary + : mixed +
                                                                                                                                        +
                                                                                                                                        +
                                                                                                                                        + +
                                                                                                                                        +
                                                                                                                                        + + + +
                                                                                                                                        Return values
                                                                                                                                        + mixed + — + + +
                                                                                                                                        +
                                                                                                                                        +

                                                                                                                                        + getFileContent() + +

                                                                                                                                        + + + + + public + getFileContent(mixed $file) : mixed + +
                                                                                                                                        + +
                                                                                                                                        Parameters
                                                                                                                                        +
                                                                                                                                        +
                                                                                                                                        + $file + : mixed +
                                                                                                                                        +
                                                                                                                                        +
                                                                                                                                        + +
                                                                                                                                        +
                                                                                                                                        + + + +
                                                                                                                                        Return values
                                                                                                                                        + mixed + — + + +
                                                                                                                                        +
                                                                                                                                        +

                                                                                                                                        + getFileData() + +

                                                                                                                                        + + +

                                                                                                                                        Get file data based on given uuid.

                                                                                                                                        + + + public + getFileData(mixed $file[, array<string|int, mixed> $data = [] ][, array<string|int, mixed> $jsonSerializeOptions = [] ]) : array<string|int, mixed> + + +
                                                                                                                                        Parameters
                                                                                                                                        +
                                                                                                                                        +
                                                                                                                                        + $file + : mixed +
                                                                                                                                        +
                                                                                                                                        +

                                                                                                                                        File uuid

                                                                                                                                        +
                                                                                                                                        + +
                                                                                                                                        +
                                                                                                                                        + $data + : array<string|int, mixed> + = []
                                                                                                                                        +
                                                                                                                                        +

                                                                                                                                        Add file data here

                                                                                                                                        +
                                                                                                                                        + +
                                                                                                                                        +
                                                                                                                                        + $jsonSerializeOptions + : array<string|int, mixed> + = []
                                                                                                                                        +
                                                                                                                                        +

                                                                                                                                        Options for the object to array transformation

                                                                                                                                        +
                                                                                                                                        + +
                                                                                                                                        +
                                                                                                                                        + + +
                                                                                                                                        + Tags + +
                                                                                                                                        +
                                                                                                                                        +
                                                                                                                                        + throws +
                                                                                                                                        +
                                                                                                                                        + ReflectionException + + +
                                                                                                                                        +
                                                                                                                                        + +
                                                                                                                                        Return values
                                                                                                                                        + array<string|int, mixed> + — +

                                                                                                                                        File data

                                                                                                                                        +
                                                                                                                                        + + +
                                                                                                                                        +
                                                                                                                                        +

                                                                                                                                        + getFilePath() + +

                                                                                                                                        + + +

                                                                                                                                        Get file path based on given uuid.

                                                                                                                                        + + + public + getFilePath(mixed $file) : string + + +
                                                                                                                                        Parameters
                                                                                                                                        +
                                                                                                                                        +
                                                                                                                                        + $file + : mixed +
                                                                                                                                        +
                                                                                                                                        +

                                                                                                                                        File uuid

                                                                                                                                        +
                                                                                                                                        + +
                                                                                                                                        +
                                                                                                                                        + + + +
                                                                                                                                        Return values
                                                                                                                                        + string + — +

                                                                                                                                        File path

                                                                                                                                        +
                                                                                                                                        + + +
                                                                                                                                        +
                                                                                                                                        +

                                                                                                                                        + getFilters() + +

                                                                                                                                        + + +

                                                                                                                                        Get list of twig filters.

                                                                                                                                        + + + public + getFilters() : array<string|int, mixed>|array<string|int, Twig_SimpleFilter> + + + + + +
                                                                                                                                        Return values
                                                                                                                                        + array<string|int, mixed>|array<string|int, Twig_SimpleFilter> + — + + +
                                                                                                                                        +
                                                                                                                                        + + + + +
                                                                                                                                        +
                                                                                                                                        +
                                                                                                                                        +
                                                                                                                                        +

                                                                                                                                        Search results

                                                                                                                                        + +
                                                                                                                                        +
                                                                                                                                        +
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          + + +
                                                                                                                                          + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-Twig-ImageExtension.html b/classes/HeimrichHannot-UtilsBundle-Twig-ImageExtension.html new file mode 100644 index 00000000..abed8946 --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-Twig-ImageExtension.html @@ -0,0 +1,702 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                          +

                                                                                                                                          Contao Utils Bundle

                                                                                                                                          + + + + + +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + + + + +
                                                                                                                                          + + +
                                                                                                                                          +

                                                                                                                                          + ImageExtension + + + extends AbstractExtension + + +
                                                                                                                                          + in package + +
                                                                                                                                          + + + implements + ContainerAwareInterface + + + Uses + ContainerAwareTrait +

                                                                                                                                          + + + + +
                                                                                                                                          + + + + + + +

                                                                                                                                          + Interfaces, Classes and Traits + +

                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          ContainerAwareInterface
                                                                                                                                          +
                                                                                                                                          + + +
                                                                                                                                          + + +

                                                                                                                                          + Table of Contents + +

                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + getFilters() + +  : array<string|int, mixed>|array<string|int, Twig_SimpleFilter> +
                                                                                                                                          +
                                                                                                                                          Get list of twig filters.
                                                                                                                                          + +
                                                                                                                                          + getImage() + +  : string +
                                                                                                                                          +
                                                                                                                                          Get image based on given path/uuid.
                                                                                                                                          + +
                                                                                                                                          + getImageCaption() + +  : string|null +
                                                                                                                                          +
                                                                                                                                          Get image caption based on given path/uuid.
                                                                                                                                          + +
                                                                                                                                          + getImageData() + +  : array<string|int, mixed> +
                                                                                                                                          +
                                                                                                                                          Get image data based on given path/uuid.
                                                                                                                                          + +
                                                                                                                                          + getImageGallery() + +  : string +
                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          + getImageSize() + +  : mixed +
                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          + getImageWidth() + +  : string|null +
                                                                                                                                          +
                                                                                                                                          Get image width based on given path/uuid.
                                                                                                                                          + +
                                                                                                                                          + + + + + + + +
                                                                                                                                          +

                                                                                                                                          + Methods + +

                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + getFilters() + +

                                                                                                                                          + + +

                                                                                                                                          Get list of twig filters.

                                                                                                                                          + + + public + getFilters() : array<string|int, mixed>|array<string|int, Twig_SimpleFilter> + + + + + +
                                                                                                                                          Return values
                                                                                                                                          + array<string|int, mixed>|array<string|int, Twig_SimpleFilter> + — + + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + getImage() + +

                                                                                                                                          + + +

                                                                                                                                          Get image based on given path/uuid.

                                                                                                                                          + + + public + getImage(mixed $image[, string|array<string|int, mixed> $size = null ][, array<string|int, mixed> $data = [] ][, string $template = 'image.html.twig' ]) : string + + +
                                                                                                                                          Parameters
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          + $image + : mixed +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          File path/uuid

                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + $size + : string|array<string|int, mixed> + = null
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          Array or serialized string containing [width, height, imageSize-ID]

                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + $data + : array<string|int, mixed> + = []
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          Add image data here [href => 'URL', class => 'img css class']…

                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + $template + : string + = 'image.html.twig'
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          Use custom image template

                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + + +
                                                                                                                                          + Tags + +
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          + throws +
                                                                                                                                          +
                                                                                                                                          + InvalidArgumentException + + +
                                                                                                                                          +
                                                                                                                                          + throws +
                                                                                                                                          +
                                                                                                                                          + Twig_Error_Loader + + +
                                                                                                                                          +
                                                                                                                                          + throws +
                                                                                                                                          +
                                                                                                                                          + Twig_Error_Runtime + + +
                                                                                                                                          +
                                                                                                                                          + throws +
                                                                                                                                          +
                                                                                                                                          + Twig_Error_Syntax + + +
                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          Return values
                                                                                                                                          + string + — +

                                                                                                                                          Image html element with given size

                                                                                                                                          +
                                                                                                                                          + + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + getImageCaption() + +

                                                                                                                                          + + +

                                                                                                                                          Get image caption based on given path/uuid.

                                                                                                                                          + + + public + getImageCaption(mixed $image) : string|null + + +
                                                                                                                                          Parameters
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          + $image + : mixed +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          File path/uuid

                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + + + +
                                                                                                                                          Return values
                                                                                                                                          + string|null + — +

                                                                                                                                          Image caption if available, else null

                                                                                                                                          +
                                                                                                                                          + + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + getImageData() + +

                                                                                                                                          + + +

                                                                                                                                          Get image data based on given path/uuid.

                                                                                                                                          + + + public + getImageData(mixed $image[, string|array<string|int, mixed> $size = null ][, array<string|int, mixed> $data = [] ]) : array<string|int, mixed> + + +
                                                                                                                                          Parameters
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          + $image + : mixed +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          File path/uuid

                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + $size + : string|array<string|int, mixed> + = null
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          Array or serialized string containing [width, height, imageSize-ID]

                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + $data + : array<string|int, mixed> + = []
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          Add image data here [href => 'URL', class => 'img css class']…

                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + + + +
                                                                                                                                          Return values
                                                                                                                                          + array<string|int, mixed> + — +

                                                                                                                                          Image data

                                                                                                                                          +
                                                                                                                                          + + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + getImageGallery() + +

                                                                                                                                          + + + + + public + getImageGallery(mixed $images[, string $template = 'image_gallery.html.twig' ]) : string + +
                                                                                                                                          + +
                                                                                                                                          Parameters
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          + $images + : mixed +
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + $template + : string + = 'image_gallery.html.twig'
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + + + +
                                                                                                                                          Return values
                                                                                                                                          + string + — + + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + getImageSize() + +

                                                                                                                                          + + + + + public + getImageSize(mixed $size) : mixed + +
                                                                                                                                          + +
                                                                                                                                          Parameters
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          + $size + : mixed +
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + + + +
                                                                                                                                          Return values
                                                                                                                                          + mixed + — + + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + getImageWidth() + +

                                                                                                                                          + + +

                                                                                                                                          Get image width based on given path/uuid.

                                                                                                                                          + + + public + getImageWidth(mixed $image) : string|null + + +
                                                                                                                                          Parameters
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          + $image + : mixed +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          File path/uuid

                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + + + +
                                                                                                                                          Return values
                                                                                                                                          + string|null + — +

                                                                                                                                          Image caption if available, else null

                                                                                                                                          +
                                                                                                                                          + + +
                                                                                                                                          +
                                                                                                                                          + + + + +
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          Search results

                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            + + +
                                                                                                                                            + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-Twig-StringExtension.html b/classes/HeimrichHannot-UtilsBundle-Twig-StringExtension.html index 8d10b40a..f7132106 100644 --- a/classes/HeimrichHannot-UtilsBundle-Twig-StringExtension.html +++ b/classes/HeimrichHannot-UtilsBundle-Twig-StringExtension.html @@ -110,7 +110,7 @@

                                                                                                                                            @@ -130,10 +130,17 @@

                                                                                                                                            -
                                                                                                                                            - $utils +
                                                                                                                                            + $anonymizerUtil + +  : AnonymizerUtil +
                                                                                                                                            +
                                                                                                                                            + +
                                                                                                                                            + $framework -  : Utils +  : ContaoFrameworkInterface
                                                                                                                                            @@ -149,6 +156,13 @@

                                                                                                                                             : string +
                                                                                                                                            + +
                                                                                                                                            + autolink() + +  : string +
                                                                                                                                            @@ -158,6 +172,13 @@

                                                                                                                                            Get list of twig filters.
                                                                                                                                            +
                                                                                                                                            + replaceInsertTag() + +  : mixed +
                                                                                                                                            +
                                                                                                                                            +

                                                                                                                                            @@ -174,34 +195,64 @@

                                                                                                                                            class=" phpdocumentor-element -property - -protected + -private " > -

                                                                                                                                            - $utils - +

                                                                                                                                            + $anonymizerUtil +

                                                                                                                                            - protected - Utils - $utils + private + AnonymizerUtil + $anonymizerUtil -
                                                                                                                                            + + + -
                                                                                                                                            +

                                                                                                                                            +
                                                                                                                                            +

                                                                                                                                            + $framework + + + +

                                                                                                                                            + + + private + ContaoFrameworkInterface + $framework + + + + +
                                                                                                                                            @@ -224,22 +275,30 @@

                                                                                                                                            public - __construct(Utils $utils) : mixed + __construct(AnonymizerUtil $anonymizerUtil, ContaoFrameworkInterface $framework) : mixed

                                                                                                                                            Parameters
                                                                                                                                            - $utils - : Utils + $anonymizerUtil + : AnonymizerUtil +
                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            + +
                                                                                                                                            +
                                                                                                                                            + $framework + : ContaoFrameworkInterface
                                                                                                                                            @@ -268,7 +327,7 @@

                                                                                                                                            @@ -298,6 +357,58 @@

                                                                                                                                            Return values
                                                                                                                                            — + +
                                                                                                                                            + + + + + + public + autolink(string $text[, array<string|int, mixed> $options = [] ]) : string + +
                                                                                                                                            + +
                                                                                                                                            Parameters
                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            + $text + : string +
                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            + +
                                                                                                                                            +
                                                                                                                                            + $options + : array<string|int, mixed> + = []
                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            + +
                                                                                                                                            +
                                                                                                                                            + + + +
                                                                                                                                            Return values
                                                                                                                                            + string + — + +
                                                                                                                                            +
                                                                                                                                            +

                                                                                                                                            + replaceInsertTag() + +

                                                                                                                                            + + + + + public + replaceInsertTag(string $text[, bool $cache = true ]) : mixed + +
                                                                                                                                            + +
                                                                                                                                            Parameters
                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            + $text + : string +
                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            + +
                                                                                                                                            +
                                                                                                                                            + $cache + : bool + = true
                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            + +
                                                                                                                                            +
                                                                                                                                            + + + +
                                                                                                                                            Return values
                                                                                                                                            + mixed + — + +
                                                                                                                                            diff --git a/classes/HeimrichHannot-UtilsBundle-Twig-TestExtension.html b/classes/HeimrichHannot-UtilsBundle-Twig-TestExtension.html new file mode 100644 index 00000000..28d86609 --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-Twig-TestExtension.html @@ -0,0 +1,904 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                            +

                                                                                                                                            Contao Utils Bundle

                                                                                                                                            + + + + + +
                                                                                                                                            + +
                                                                                                                                            +
                                                                                                                                            + + + + +
                                                                                                                                            + + +
                                                                                                                                            +

                                                                                                                                            + TestExtension + + + extends AbstractExtension + + +
                                                                                                                                            + in package + +
                                                                                                                                            + + + implements + ContainerAwareInterface + + + Uses + ContainerAwareTrait +

                                                                                                                                            + + + + +
                                                                                                                                            + + + + + + +

                                                                                                                                            + Interfaces, Classes and Traits + +

                                                                                                                                            + +
                                                                                                                                            +
                                                                                                                                            ContainerAwareInterface
                                                                                                                                            +
                                                                                                                                            + + +
                                                                                                                                            + + +

                                                                                                                                            + Table of Contents + +

                                                                                                                                            + +
                                                                                                                                            +
                                                                                                                                            + getTests() + +  : array<string|int, mixed>|array<string|int, TwigTest> +
                                                                                                                                            +
                                                                                                                                            + +
                                                                                                                                            + isArray() + +  : bool +
                                                                                                                                            +
                                                                                                                                            + +
                                                                                                                                            + isBinaryUuid() + +  : bool +
                                                                                                                                            +
                                                                                                                                            + +
                                                                                                                                            + isBool() + +  : bool +
                                                                                                                                            +
                                                                                                                                            + +
                                                                                                                                            + isEmail() + +  : bool +
                                                                                                                                            +
                                                                                                                                            + +
                                                                                                                                            + isFloat() + +  : bool +
                                                                                                                                            +
                                                                                                                                            + +
                                                                                                                                            + isInt() + +  : bool +
                                                                                                                                            +
                                                                                                                                            + +
                                                                                                                                            + isNumeric() + +  : bool +
                                                                                                                                            +
                                                                                                                                            + +
                                                                                                                                            + isObject() + +  : bool +
                                                                                                                                            +
                                                                                                                                            + +
                                                                                                                                            + isString() + +  : bool +
                                                                                                                                            +
                                                                                                                                            + +
                                                                                                                                            + isStringUuid() + +  : bool +
                                                                                                                                            +
                                                                                                                                            + +
                                                                                                                                            + isUrl() + +  : bool +
                                                                                                                                            +
                                                                                                                                            + +
                                                                                                                                            + isUuid() + +  : bool +
                                                                                                                                            +
                                                                                                                                            + +
                                                                                                                                            + + + + + + + +
                                                                                                                                            +

                                                                                                                                            + Methods + +

                                                                                                                                            +
                                                                                                                                            +

                                                                                                                                            + getTests() + +

                                                                                                                                            + + + + + public + getTests() : array<string|int, mixed>|array<string|int, TwigTest> + + + + + +
                                                                                                                                            Return values
                                                                                                                                            + array<string|int, mixed>|array<string|int, TwigTest> + — + + +
                                                                                                                                            +
                                                                                                                                            +

                                                                                                                                            + isArray() + +

                                                                                                                                            + + + + + public + isArray(mixed $value) : bool + +
                                                                                                                                            + +
                                                                                                                                            Parameters
                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            + $value + : mixed +
                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            + +
                                                                                                                                            +
                                                                                                                                            + + + +
                                                                                                                                            Return values
                                                                                                                                            + bool + — + + +
                                                                                                                                            +
                                                                                                                                            +

                                                                                                                                            + isBinaryUuid() + +

                                                                                                                                            + + + + + public + isBinaryUuid(mixed $value) : bool + +
                                                                                                                                            + +
                                                                                                                                            Parameters
                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            + $value + : mixed +
                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            + +
                                                                                                                                            +
                                                                                                                                            + + + +
                                                                                                                                            Return values
                                                                                                                                            + bool + — + + +
                                                                                                                                            +
                                                                                                                                            +

                                                                                                                                            + isBool() + +

                                                                                                                                            + + + + + public + isBool(mixed $value) : bool + +
                                                                                                                                            + +
                                                                                                                                            Parameters
                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            + $value + : mixed +
                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            + +
                                                                                                                                            +
                                                                                                                                            + + + +
                                                                                                                                            Return values
                                                                                                                                            + bool + — + + +
                                                                                                                                            +
                                                                                                                                            +

                                                                                                                                            + isEmail() + +

                                                                                                                                            + + + + + public + isEmail(mixed $value) : bool + +
                                                                                                                                            + +
                                                                                                                                            Parameters
                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            + $value + : mixed +
                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            + +
                                                                                                                                            +
                                                                                                                                            + + + +
                                                                                                                                            Return values
                                                                                                                                            + bool + — + + +
                                                                                                                                            +
                                                                                                                                            +

                                                                                                                                            + isFloat() + +

                                                                                                                                            + + + + + public + isFloat(mixed $value) : bool + +
                                                                                                                                            + +
                                                                                                                                            Parameters
                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            + $value + : mixed +
                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            + +
                                                                                                                                            +
                                                                                                                                            + + + +
                                                                                                                                            Return values
                                                                                                                                            + bool + — + + +
                                                                                                                                            +
                                                                                                                                            +

                                                                                                                                            + isInt() + +

                                                                                                                                            + + + + + public + isInt(mixed $value) : bool + +
                                                                                                                                            + +
                                                                                                                                            Parameters
                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            + $value + : mixed +
                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            + +
                                                                                                                                            +
                                                                                                                                            + + + +
                                                                                                                                            Return values
                                                                                                                                            + bool + — + + +
                                                                                                                                            +
                                                                                                                                            +

                                                                                                                                            + isNumeric() + +

                                                                                                                                            + + + + + public + isNumeric(mixed $value) : bool + +
                                                                                                                                            + +
                                                                                                                                            Parameters
                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            + $value + : mixed +
                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            + +
                                                                                                                                            +
                                                                                                                                            + + + +
                                                                                                                                            Return values
                                                                                                                                            + bool + — + + +
                                                                                                                                            +
                                                                                                                                            +

                                                                                                                                            + isObject() + +

                                                                                                                                            + + + + + public + isObject(mixed $value) : bool + +
                                                                                                                                            + +
                                                                                                                                            Parameters
                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            + $value + : mixed +
                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            + +
                                                                                                                                            +
                                                                                                                                            + + + +
                                                                                                                                            Return values
                                                                                                                                            + bool + — + + +
                                                                                                                                            +
                                                                                                                                            +

                                                                                                                                            + isString() + +

                                                                                                                                            + + + + + public + isString(mixed $value) : bool + +
                                                                                                                                            + +
                                                                                                                                            Parameters
                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            + $value + : mixed +
                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            + +
                                                                                                                                            +
                                                                                                                                            + + + +
                                                                                                                                            Return values
                                                                                                                                            + bool + — + + +
                                                                                                                                            +
                                                                                                                                            +

                                                                                                                                            + isStringUuid() + +

                                                                                                                                            + + + + + public + isStringUuid(mixed $value) : bool + +
                                                                                                                                            + +
                                                                                                                                            Parameters
                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            + $value + : mixed +
                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            + +
                                                                                                                                            +
                                                                                                                                            + + + +
                                                                                                                                            Return values
                                                                                                                                            + bool + — + + +
                                                                                                                                            +
                                                                                                                                            +

                                                                                                                                            + isUrl() + +

                                                                                                                                            + + + + + public + isUrl(mixed $value) : bool + +
                                                                                                                                            + +
                                                                                                                                            Parameters
                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            + $value + : mixed +
                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            + +
                                                                                                                                            +
                                                                                                                                            + + + +
                                                                                                                                            Return values
                                                                                                                                            + bool + — + + +
                                                                                                                                            +
                                                                                                                                            +

                                                                                                                                            + isUuid() + +

                                                                                                                                            + + + + + public + isUuid(mixed $value) : bool + +
                                                                                                                                            + +
                                                                                                                                            Parameters
                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            + $value + : mixed +
                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            + +
                                                                                                                                            +
                                                                                                                                            + + + +
                                                                                                                                            Return values
                                                                                                                                            + bool + — + + +
                                                                                                                                            +
                                                                                                                                            + + + + +
                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            +

                                                                                                                                            Search results

                                                                                                                                            + +
                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + + +
                                                                                                                                              + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-Url-UrlUtil.html b/classes/HeimrichHannot-UtilsBundle-Url-UrlUtil.html new file mode 100644 index 00000000..e2d616f4 --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-Url-UrlUtil.html @@ -0,0 +1,1354 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                              +

                                                                                                                                              Contao Utils Bundle

                                                                                                                                              + + + + + +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              + + + + +
                                                                                                                                              + + +
                                                                                                                                              +

                                                                                                                                              + UrlUtil + + +
                                                                                                                                              + in package + +
                                                                                                                                              + + +

                                                                                                                                              + + + + +
                                                                                                                                              + + + + + + + + +

                                                                                                                                              + Table of Contents + +

                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              + TERMINATE_EXIT_LOCATION_SET + +  = 900 +
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              + TERMINATE_HEADERS_ALREADY_SENT + +  = 800 +
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              + $framework + +  : ContaoFrameworkInterface +
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              + $requestStack + +  : RequestStack +
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              + $requestUtil + +  : RequestUtil +
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              + __construct() + +  : mixed +
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              + addAutoItemToPage() + +  : mixed +
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              + addQueryString() + +  : string +
                                                                                                                                              +
                                                                                                                                              Add a query string to the given URI string or page ID.
                                                                                                                                              + +
                                                                                                                                              + addURIScheme() + +  : string +
                                                                                                                                              +
                                                                                                                                              Add a url scheme to a given url.
                                                                                                                                              + +
                                                                                                                                              + getBaseUrl() + +  : mixed +
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              + getCurrentUrl() + +  : string +
                                                                                                                                              +
                                                                                                                                              Return the current url with requestUri.
                                                                                                                                              + +
                                                                                                                                              + getJumpToPageObject() + +  : PageModel|null +
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              + getJumpToPageUrl() + +  : string|null +
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              + getRelativePath() + +  : string +
                                                                                                                                              +
                                                                                                                                              Convert an absolute url to an relative url.
                                                                                                                                              + +
                                                                                                                                              + isNewVisitor() + +  : bool +
                                                                                                                                              +
                                                                                                                                              Detect if user already visited our domain before.
                                                                                                                                              + +
                                                                                                                                              + prepareUrl() + +  : string +
                                                                                                                                              +
                                                                                                                                              Prepare URL from ID and keep query string from current string.
                                                                                                                                              + +
                                                                                                                                              + redirect() + +  : int|array<string|int, mixed>|null +
                                                                                                                                              +
                                                                                                                                              Redirect to another page.
                                                                                                                                              + +
                                                                                                                                              + removeQueryString() + +  : string +
                                                                                                                                              +
                                                                                                                                              Remove query parameters from the current URL.
                                                                                                                                              + +
                                                                                                                                              + + + + +
                                                                                                                                              +

                                                                                                                                              + Constants + +

                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              + TERMINATE_EXIT_LOCATION_SET + +

                                                                                                                                              + + + + + + public + mixed + TERMINATE_EXIT_LOCATION_SET + = 900 + + + +
                                                                                                                                              + +
                                                                                                                                              + + + +
                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              + TERMINATE_HEADERS_ALREADY_SENT + +

                                                                                                                                              + + + + + + public + mixed + TERMINATE_HEADERS_ALREADY_SENT + = 800 + + + +
                                                                                                                                              + +
                                                                                                                                              + + + +
                                                                                                                                              +
                                                                                                                                              + + +
                                                                                                                                              +

                                                                                                                                              + Properties + +

                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              + $framework + + + +

                                                                                                                                              + + + + + protected + ContaoFrameworkInterface + $framework + + + + + + +
                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              + $requestStack + + + +

                                                                                                                                              + + + + + private + RequestStack + $requestStack + + + + + + +
                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              + $requestUtil + + + +

                                                                                                                                              + + + + + private + RequestUtil + $requestUtil + + + + + + +
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              +

                                                                                                                                              + Methods + +

                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              + __construct() + +

                                                                                                                                              + + + + + public + __construct(ContaoFrameworkInterface $framework, RequestUtil $requestUtil, RequestStack $requestStack) : mixed + +
                                                                                                                                              + +
                                                                                                                                              Parameters
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + $framework + : ContaoFrameworkInterface +
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              + $requestUtil + : RequestUtil +
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              + $requestStack + : RequestStack +
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              + + + +
                                                                                                                                              Return values
                                                                                                                                              + mixed + — + + +
                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              + addAutoItemToPage() + +

                                                                                                                                              + + + + + public + static addAutoItemToPage(Model $page, Model $entity[, mixed $autoItemType = 'items' ]) : mixed + +
                                                                                                                                              + +
                                                                                                                                              Parameters
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + $page + : Model +
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              + $entity + : Model +
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              + $autoItemType + : mixed + = 'items'
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              + + + +
                                                                                                                                              Return values
                                                                                                                                              + mixed + — + + +
                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              + addQueryString() + +

                                                                                                                                              + + +

                                                                                                                                              Add a query string to the given URI string or page ID.

                                                                                                                                              + + + public + addQueryString(string $query[, mixed $url = null ]) : string + + +
                                                                                                                                              Parameters
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + $query + : string +
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              + $url + : mixed + = null
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              + + +
                                                                                                                                              + Tags + +
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + throws +
                                                                                                                                              +
                                                                                                                                              + InvalidArgumentException + + +
                                                                                                                                              +
                                                                                                                                              + deprecated +
                                                                                                                                              +
                                                                                                                                              + +

                                                                                                                                              Use Utils service instead

                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              + codeCoverageIgnore +
                                                                                                                                              +
                                                                                                                                              + + +
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              Return values
                                                                                                                                              + string + — + + +
                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              + addURIScheme() + +

                                                                                                                                              + + +

                                                                                                                                              Add a url scheme to a given url.

                                                                                                                                              + + + public + addURIScheme([string $url = '' ][, string $protocol = 'http' ]) : string + + +
                                                                                                                                              Parameters
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + $url + : string + = ''
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              + $protocol + : string + = 'http'
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              + + + +
                                                                                                                                              Return values
                                                                                                                                              + string + — + + +
                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              + getBaseUrl() + +

                                                                                                                                              + + + + + public + getBaseUrl([bool $absolute = false ]) : mixed + + +
                                                                                                                                              Parameters
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + $absolute + : bool + = false
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              + + +
                                                                                                                                              + Tags + +
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + deprecated +
                                                                                                                                              +
                                                                                                                                              + +

                                                                                                                                              Use Utils::request() instead

                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              Return values
                                                                                                                                              + mixed + — + + +
                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              + getCurrentUrl() + +

                                                                                                                                              + + +

                                                                                                                                              Return the current url with requestUri.

                                                                                                                                              + + + public + getCurrentUrl([array<string|int, mixed> $options = [] ]) : string + +

                                                                                                                                              Options:

                                                                                                                                              +
                                                                                                                                                +
                                                                                                                                              • skipParams: boolean
                                                                                                                                              • +
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              Parameters
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + $options + : array<string|int, mixed> + = []
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              + + + +
                                                                                                                                              Return values
                                                                                                                                              + string + — + + +
                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              + getJumpToPageObject() + +

                                                                                                                                              + + + + + public + getJumpToPageObject(int $jumpTo[, bool $fallbackToObjPage = true ]) : PageModel|null + + +
                                                                                                                                              Parameters
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + $jumpTo + : int +
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              + $fallbackToObjPage + : bool + = true
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              + + + +
                                                                                                                                              Return values
                                                                                                                                              + PageModel|null + — + + +
                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              + getJumpToPageUrl() + +

                                                                                                                                              + + + + + public + getJumpToPageUrl(int $jumpTo[, bool $fallbackToObjPage = true ]) : string|null + +
                                                                                                                                              + +
                                                                                                                                              Parameters
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + $jumpTo + : int +
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              + $fallbackToObjPage + : bool + = true
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              + + + +
                                                                                                                                              Return values
                                                                                                                                              + string|null + — + + +
                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              + getRelativePath() + +

                                                                                                                                              + + +

                                                                                                                                              Convert an absolute url to an relative url.

                                                                                                                                              + + + public + getRelativePath(string $url[, array<string|int, mixed> $options = [] ]) : string + +

                                                                                                                                              Options:

                                                                                                                                              +
                                                                                                                                                +
                                                                                                                                              • removeLeadingSlash: (boolean) Remove a
                                                                                                                                              • +
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              Parameters
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + $url + : string +
                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              The url that should be made relative

                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              + $options + : array<string|int, mixed> + = []
                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              Pass additional options

                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              + + +
                                                                                                                                              + Tags + +
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + throws +
                                                                                                                                              +
                                                                                                                                              + InvalidUrlException + + +
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              Return values
                                                                                                                                              + string + — + + +
                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              + isNewVisitor() + +

                                                                                                                                              + + +

                                                                                                                                              Detect if user already visited our domain before.

                                                                                                                                              + + + public + isNewVisitor() : bool + + + + +
                                                                                                                                              + Tags + +
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + deprecated +
                                                                                                                                              +
                                                                                                                                              + +

                                                                                                                                              please use RequestUtil::isNewVisitor() instead

                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              + codeCoverageIgnore +
                                                                                                                                              +
                                                                                                                                              + + +
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              Return values
                                                                                                                                              + bool + — + + +
                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              + prepareUrl() + +

                                                                                                                                              + + +

                                                                                                                                              Prepare URL from ID and keep query string from current string.

                                                                                                                                              + + + public + prepareUrl([mixed $url = null ][, array<string|int, mixed> $options = [] ]) : string + +

                                                                                                                                              Options:

                                                                                                                                              +
                                                                                                                                                +
                                                                                                                                              • absoluteUrl: (boolean) Return absolute url instead of relative url. Only applicable if id or null is given as url. Default: false
                                                                                                                                              • +
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              Parameters
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + $url + : mixed + = null
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              + $options + : array<string|int, mixed> + = []
                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              pass additional options

                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              + + +
                                                                                                                                              + Tags + +
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + deprecated +
                                                                                                                                              +
                                                                                                                                              + + +
                                                                                                                                              +
                                                                                                                                              + codeCoverageIgnore +
                                                                                                                                              +
                                                                                                                                              + + +
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              Return values
                                                                                                                                              + string + — + + +
                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              + redirect() + +

                                                                                                                                              + + +

                                                                                                                                              Redirect to another page.

                                                                                                                                              + + + public + redirect(string $strLocation[, int $intStatus = 303 ][, bool $test = false ][, bool $skipSent = false ]) : int|array<string|int, mixed>|null + + +
                                                                                                                                              Parameters
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + $strLocation + : string +
                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              The target URL

                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              + $intStatus + : int + = 303
                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              The HTTP status code (defaults to 303)

                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              + $test + : bool + = false
                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              For test purposes set to true to test exit/headers

                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              + $skipSent + : bool + = false
                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              Skip if headers already sent for test purposes

                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              + + + +
                                                                                                                                              Return values
                                                                                                                                              + int|array<string|int, mixed>|null + — + + +
                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              + removeQueryString() + +

                                                                                                                                              + + +

                                                                                                                                              Remove query parameters from the current URL.

                                                                                                                                              + + + public + removeQueryString(array<string|int, mixed> $params[, string|int|null $url = null ][, array<string|int, mixed> $options = [] ]) : string + +

                                                                                                                                              Options:

                                                                                                                                              +
                                                                                                                                                +
                                                                                                                                              • absoluteUrl: (boolean) Return absolute url instead of relative url. Only applicable if id or null is given as url. Default: false
                                                                                                                                              • +
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              Parameters
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + $params + : array<string|int, mixed> +
                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              List of parameters to remove from url

                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              + $url + : string|int|null + = null
                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              Full Uri, Page id or null (for current environment uri)

                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              + $options + : array<string|int, mixed> + = []
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              + + +
                                                                                                                                              + Tags + +
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + deprecated +
                                                                                                                                              +
                                                                                                                                              + +

                                                                                                                                              Use utils service instead

                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              + codeCoverageIgnore +
                                                                                                                                              +
                                                                                                                                              + + +
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              Return values
                                                                                                                                              + string + — + + +
                                                                                                                                              +
                                                                                                                                              + + + + +
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              Search results

                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                + + +
                                                                                                                                                + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-User-UserUtil.html b/classes/HeimrichHannot-UtilsBundle-User-UserUtil.html new file mode 100644 index 00000000..0b1f6603 --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-User-UserUtil.html @@ -0,0 +1,593 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                +

                                                                                                                                                Contao Utils Bundle

                                                                                                                                                + + + + + +
                                                                                                                                                + +
                                                                                                                                                +
                                                                                                                                                + + + + +
                                                                                                                                                + + +
                                                                                                                                                +

                                                                                                                                                + UserUtil + + +
                                                                                                                                                + in package + +
                                                                                                                                                + + + + Uses + PersonTrait +

                                                                                                                                                + + + +

                                                                                                                                                Class UserUtil.

                                                                                                                                                + + + + + + + + + +

                                                                                                                                                + Table of Contents + +

                                                                                                                                                + +
                                                                                                                                                +
                                                                                                                                                + TABLE + +  = 'tl_user' +
                                                                                                                                                +
                                                                                                                                                + +
                                                                                                                                                + $framework + +  : ContaoFrameworkInterface +
                                                                                                                                                +
                                                                                                                                                + +
                                                                                                                                                + $modelUtil + +  : ModelUtil +
                                                                                                                                                +
                                                                                                                                                + +
                                                                                                                                                + __construct() + +  : mixed +
                                                                                                                                                +
                                                                                                                                                + +
                                                                                                                                                + findActiveByGroups() + +  : UserModel|array<string|int, UserModel>|Collection|null +
                                                                                                                                                +
                                                                                                                                                + +
                                                                                                                                                + hasAccessToField() + +  : mixed +
                                                                                                                                                +
                                                                                                                                                + +
                                                                                                                                                + isAdmin() + +  : bool +
                                                                                                                                                +
                                                                                                                                                + +
                                                                                                                                                + + + + +
                                                                                                                                                +

                                                                                                                                                + Constants + +

                                                                                                                                                +
                                                                                                                                                +

                                                                                                                                                + TABLE + +

                                                                                                                                                + + + + + + public + mixed + TABLE + = 'tl_user' + + + +
                                                                                                                                                + +
                                                                                                                                                + + + +
                                                                                                                                                +
                                                                                                                                                + + +
                                                                                                                                                +

                                                                                                                                                + Properties + +

                                                                                                                                                +
                                                                                                                                                +

                                                                                                                                                + $framework + + + +

                                                                                                                                                + + + + + protected + ContaoFrameworkInterface + $framework + + + + + + +
                                                                                                                                                +
                                                                                                                                                +

                                                                                                                                                + $modelUtil + + + +

                                                                                                                                                + + + + + protected + ModelUtil + $modelUtil + + + + + + +
                                                                                                                                                +
                                                                                                                                                + +
                                                                                                                                                +

                                                                                                                                                + Methods + +

                                                                                                                                                +
                                                                                                                                                +

                                                                                                                                                + __construct() + +

                                                                                                                                                + + + + + public + __construct(ContaoFrameworkInterface $framework, ModelUtil $modelUtil) : mixed + +
                                                                                                                                                + +
                                                                                                                                                Parameters
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                + $framework + : ContaoFrameworkInterface +
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                + +
                                                                                                                                                +
                                                                                                                                                + $modelUtil + : ModelUtil +
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                + +
                                                                                                                                                +
                                                                                                                                                + + + +
                                                                                                                                                Return values
                                                                                                                                                + mixed + — + + +
                                                                                                                                                +
                                                                                                                                                +

                                                                                                                                                + findActiveByGroups() + +

                                                                                                                                                + + + + + public + findActiveByGroups(array<string|int, mixed> $groups[, array<string|int, mixed> $options = [] ]) : UserModel|array<string|int, UserModel>|Collection|null + + +
                                                                                                                                                Parameters
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                + $groups + : array<string|int, mixed> +
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                + +
                                                                                                                                                +
                                                                                                                                                + $options + : array<string|int, mixed> + = []
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                + +
                                                                                                                                                +
                                                                                                                                                + + +
                                                                                                                                                + Tags + +
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                + deprecated +
                                                                                                                                                +
                                                                                                                                                + +

                                                                                                                                                use Utils service instead

                                                                                                                                                +
                                                                                                                                                + +
                                                                                                                                                +
                                                                                                                                                + +
                                                                                                                                                Return values
                                                                                                                                                + UserModel|array<string|int, UserModel>|Collection|null + — + + +
                                                                                                                                                +
                                                                                                                                                +

                                                                                                                                                + hasAccessToField() + +

                                                                                                                                                + + + + + public + hasAccessToField(mixed $table, mixed $field) : mixed + +
                                                                                                                                                + +
                                                                                                                                                Parameters
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                + $table + : mixed +
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                + +
                                                                                                                                                +
                                                                                                                                                + $field + : mixed +
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                + +
                                                                                                                                                +
                                                                                                                                                + + + +
                                                                                                                                                Return values
                                                                                                                                                + mixed + — + + +
                                                                                                                                                +
                                                                                                                                                +

                                                                                                                                                + isAdmin() + +

                                                                                                                                                + + + + + public + isAdmin() : bool + +
                                                                                                                                                + + + + +
                                                                                                                                                Return values
                                                                                                                                                + bool + — + + +
                                                                                                                                                +
                                                                                                                                                + + + + +
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                +

                                                                                                                                                Search results

                                                                                                                                                + +
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                  +
                                                                                                                                                  +
                                                                                                                                                  +
                                                                                                                                                  +
                                                                                                                                                  +
                                                                                                                                                  + + +
                                                                                                                                                  + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-Util-AbstractServiceSubscriber.html b/classes/HeimrichHannot-UtilsBundle-Util-AbstractServiceSubscriber.html new file mode 100644 index 00000000..03a0df82 --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-Util-AbstractServiceSubscriber.html @@ -0,0 +1,234 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                  +

                                                                                                                                                  Contao Utils Bundle

                                                                                                                                                  + + + + + +
                                                                                                                                                  + +
                                                                                                                                                  +
                                                                                                                                                  + + + + +
                                                                                                                                                  + + +
                                                                                                                                                  +

                                                                                                                                                  + AbstractServiceSubscriber + + +
                                                                                                                                                  + in package + +
                                                                                                                                                  + + + implements + ServiceSubscriberInterface + +

                                                                                                                                                  + + + + +
                                                                                                                                                  + + + + + + +

                                                                                                                                                  + Interfaces, Classes and Traits + +

                                                                                                                                                  + +
                                                                                                                                                  +
                                                                                                                                                  ServiceSubscriberInterface
                                                                                                                                                  +
                                                                                                                                                  + + +
                                                                                                                                                  + + + + + + + + + + + + + +
                                                                                                                                                  +
                                                                                                                                                  +
                                                                                                                                                  +
                                                                                                                                                  +

                                                                                                                                                  Search results

                                                                                                                                                  + +
                                                                                                                                                  +
                                                                                                                                                  +
                                                                                                                                                    +
                                                                                                                                                    +
                                                                                                                                                    +
                                                                                                                                                    +
                                                                                                                                                    +
                                                                                                                                                    + + +
                                                                                                                                                    + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-Util-ArrayUtil.html b/classes/HeimrichHannot-UtilsBundle-Util-ArrayUtil.html deleted file mode 100644 index 7dda8680..00000000 --- a/classes/HeimrichHannot-UtilsBundle-Util-ArrayUtil.html +++ /dev/null @@ -1,515 +0,0 @@ - - - - - Contao Utils Bundle - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                    -

                                                                                                                                                    Contao Utils Bundle

                                                                                                                                                    - - - - - -
                                                                                                                                                    - -
                                                                                                                                                    -
                                                                                                                                                    - - - - -
                                                                                                                                                    - - -
                                                                                                                                                    -

                                                                                                                                                    - ArrayUtil - - -
                                                                                                                                                    - in package - -
                                                                                                                                                    - - -

                                                                                                                                                    - - - - -
                                                                                                                                                    - - - - - - - - -

                                                                                                                                                    - Table of Contents - -

                                                                                                                                                    - -
                                                                                                                                                    -
                                                                                                                                                    - insertAfterKey() - -  : void -
                                                                                                                                                    -
                                                                                                                                                    Insert a value into an existing array by key name.
                                                                                                                                                    - -
                                                                                                                                                    - insertBeforeKey() - -  : void -
                                                                                                                                                    -
                                                                                                                                                    Insert a new entry before a specific or multiple keys in array.
                                                                                                                                                    - -
                                                                                                                                                    - removeValue() - -  : bool -
                                                                                                                                                    -
                                                                                                                                                    Removes a value from an array.
                                                                                                                                                    - -
                                                                                                                                                    - - - - - - - -
                                                                                                                                                    -

                                                                                                                                                    - Methods - -

                                                                                                                                                    -
                                                                                                                                                    -

                                                                                                                                                    - insertAfterKey() - -

                                                                                                                                                    - - -

                                                                                                                                                    Insert a value into an existing array by key name.

                                                                                                                                                    - - - public - insertAfterKey(array<string|int, mixed> &$array, string $key, mixed $value[, string $newKey = null ][, array<string|int, mixed> $options = [] ]) : void - -

                                                                                                                                                    Additional options:

                                                                                                                                                    -
                                                                                                                                                      -
                                                                                                                                                    • (bool) strict: Strict behavior for array search. Default false
                                                                                                                                                    • -
                                                                                                                                                    • (bool) attachIfKeyNotExist: Attach value at the end of the array if key not exist. Default: true
                                                                                                                                                    • -
                                                                                                                                                    • (int) offset: Add additional offset
                                                                                                                                                    • -
                                                                                                                                                    -
                                                                                                                                                    - -
                                                                                                                                                    Parameters
                                                                                                                                                    -
                                                                                                                                                    -
                                                                                                                                                    - $array - : array<string|int, mixed> -
                                                                                                                                                    -
                                                                                                                                                    -

                                                                                                                                                    The target array

                                                                                                                                                    -
                                                                                                                                                    - -
                                                                                                                                                    -
                                                                                                                                                    - $key - : string -
                                                                                                                                                    -
                                                                                                                                                    -

                                                                                                                                                    the existing target key in the array

                                                                                                                                                    -
                                                                                                                                                    - -
                                                                                                                                                    -
                                                                                                                                                    - $value - : mixed -
                                                                                                                                                    -
                                                                                                                                                    -

                                                                                                                                                    the new value to be inserted

                                                                                                                                                    -
                                                                                                                                                    - -
                                                                                                                                                    -
                                                                                                                                                    - $newKey - : string - = null
                                                                                                                                                    -
                                                                                                                                                    -
                                                                                                                                                    - -
                                                                                                                                                    -
                                                                                                                                                    - $options - : array<string|int, mixed> - = []
                                                                                                                                                    -
                                                                                                                                                    -
                                                                                                                                                    - -
                                                                                                                                                    -
                                                                                                                                                    - - -
                                                                                                                                                    - Tags - -
                                                                                                                                                    -
                                                                                                                                                    -
                                                                                                                                                    - deprecated -
                                                                                                                                                    -
                                                                                                                                                    - -

                                                                                                                                                    Use StaticArrayUtil::insertAfterKey() instead. -Beware: The option keys have changed!

                                                                                                                                                    -
                                                                                                                                                    - -
                                                                                                                                                    -
                                                                                                                                                    - -
                                                                                                                                                    Return values
                                                                                                                                                    - void - — - - -
                                                                                                                                                    -
                                                                                                                                                    -

                                                                                                                                                    - insertBeforeKey() - -

                                                                                                                                                    - - -

                                                                                                                                                    Insert a new entry before a specific or multiple keys in array.

                                                                                                                                                    - - - public - static insertBeforeKey(array<string|int, mixed> &$array, array<string|int, mixed>|string $keys, string $newKey, mixed $newValue) : void - -

                                                                                                                                                    If the keys not exist, the new entry is added to the end of the array. -Array is passed as reference.

                                                                                                                                                    -
                                                                                                                                                    - -
                                                                                                                                                    Parameters
                                                                                                                                                    -
                                                                                                                                                    -
                                                                                                                                                    - $array - : array<string|int, mixed> -
                                                                                                                                                    -
                                                                                                                                                    -

                                                                                                                                                    Array the new entry should inserted to

                                                                                                                                                    -
                                                                                                                                                    - -
                                                                                                                                                    -
                                                                                                                                                    - $keys - : array<string|int, mixed>|string -
                                                                                                                                                    -
                                                                                                                                                    -

                                                                                                                                                    The key or keys where the new entry should be added before

                                                                                                                                                    -
                                                                                                                                                    - -
                                                                                                                                                    -
                                                                                                                                                    - $newKey - : string -
                                                                                                                                                    -
                                                                                                                                                    -

                                                                                                                                                    The key of the entry that should be added

                                                                                                                                                    -
                                                                                                                                                    - -
                                                                                                                                                    -
                                                                                                                                                    - $newValue - : mixed -
                                                                                                                                                    -
                                                                                                                                                    -

                                                                                                                                                    The value of the entry that should be added

                                                                                                                                                    -
                                                                                                                                                    - -
                                                                                                                                                    -
                                                                                                                                                    - - -
                                                                                                                                                    - Tags - -
                                                                                                                                                    -
                                                                                                                                                    -
                                                                                                                                                    - deprecated -
                                                                                                                                                    -
                                                                                                                                                    - -

                                                                                                                                                    Use StaticArrayUtil::insertBeforeKey() instead.

                                                                                                                                                    -
                                                                                                                                                    - -
                                                                                                                                                    -
                                                                                                                                                    - -
                                                                                                                                                    Return values
                                                                                                                                                    - void - — - - -
                                                                                                                                                    -
                                                                                                                                                    -

                                                                                                                                                    - removeValue() - -

                                                                                                                                                    - - -

                                                                                                                                                    Removes a value from an array.

                                                                                                                                                    - - - public - removeValue(mixed $value, array<string|int, mixed> &$array) : bool - - -
                                                                                                                                                    Parameters
                                                                                                                                                    -
                                                                                                                                                    -
                                                                                                                                                    - $value - : mixed -
                                                                                                                                                    -
                                                                                                                                                    -
                                                                                                                                                    - -
                                                                                                                                                    -
                                                                                                                                                    - $array - : array<string|int, mixed> -
                                                                                                                                                    -
                                                                                                                                                    -
                                                                                                                                                    - -
                                                                                                                                                    -
                                                                                                                                                    - - -
                                                                                                                                                    - Tags - -
                                                                                                                                                    -
                                                                                                                                                    -
                                                                                                                                                    - deprecated -
                                                                                                                                                    -
                                                                                                                                                    - -

                                                                                                                                                    Use StaticArrayUtil::removeValue() instead.

                                                                                                                                                    -
                                                                                                                                                    - -
                                                                                                                                                    -
                                                                                                                                                    - -
                                                                                                                                                    Return values
                                                                                                                                                    - bool - — -

                                                                                                                                                    True if the value was found and removed, false otherwise.

                                                                                                                                                    -
                                                                                                                                                    - - -
                                                                                                                                                    -
                                                                                                                                                    - - - - -
                                                                                                                                                    -
                                                                                                                                                    -
                                                                                                                                                    -
                                                                                                                                                    -

                                                                                                                                                    Search results

                                                                                                                                                    - -
                                                                                                                                                    -
                                                                                                                                                    -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - - -
                                                                                                                                                      - - - - - - - - diff --git a/classes/HeimrichHannot-UtilsBundle-Util-ClassUtil.html b/classes/HeimrichHannot-UtilsBundle-Util-ClassUtil.html index 94534991..d184ceab 100644 --- a/classes/HeimrichHannot-UtilsBundle-Util-ClassUtil.html +++ b/classes/HeimrichHannot-UtilsBundle-Util-ClassUtil.html @@ -107,7 +107,7 @@

                                                                                                                                                      @@ -151,7 +151,7 @@

                                                                                                                                                      class="phpdocumentor-element -method -public - -deprecated " + " >

                                                                                                                                                      classImplementsTrait() @@ -160,13 +160,13 @@

                                                                                                                                                      Return true if the given class or a parent class implements the given trait

                                                                                                                                                      - + public classImplementsTrait(object|string $class, string $trait) : bool @@ -178,35 +178,18 @@
                                                                                                                                                      Parameters
                                                                                                                                                      : object|string
                                                                                                                                                      -
                                                                                                                                                      - +
                                                                                                                                                      $trait : string
                                                                                                                                                      -
                                                                                                                                                      - +

                                                                                                                                                      -
                                                                                                                                                      - Tags - -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - deprecated -
                                                                                                                                                      -
                                                                                                                                                      - -

                                                                                                                                                      Use StaticClassUtil::hasTrait() instead.

                                                                                                                                                      -
                                                                                                                                                      - -
                                                                                                                                                      -
                                                                                                                                                      Return values
                                                                                                                                                      bool diff --git a/classes/HeimrichHannot-UtilsBundle-Util-ContainerUtil.html b/classes/HeimrichHannot-UtilsBundle-Util-Container-ContainerUtil.html similarity index 71% rename from classes/HeimrichHannot-UtilsBundle-Util-ContainerUtil.html rename to classes/HeimrichHannot-UtilsBundle-Util-Container-ContainerUtil.html index a3fc64cc..99be0529 100644 --- a/classes/HeimrichHannot-UtilsBundle-Util-ContainerUtil.html +++ b/classes/HeimrichHannot-UtilsBundle-Util-Container-ContainerUtil.html @@ -87,12 +87,16 @@

                                                                                                                                                      Fil
                                                                                                                                                    • HeimrichHannot
                                                                                                                                                    • UtilsBundle
                                                                                                                                                    • Util
                                                                                                                                                    • +
                                                                                                                                                    • Container
                                                                                                                                                    • ContainerUtil + + extends AbstractServiceSubscriber +
                                                                                                                                                      in package @@ -101,16 +105,13 @@

                                                                                                                                                      - - implements - ServiceSubscriberInterface

                                                                                                                                                      @@ -122,17 +123,6 @@

                                                                                                                                                      -

                                                                                                                                                      - Interfaces, Classes and Traits - -

                                                                                                                                                      - -
                                                                                                                                                      -
                                                                                                                                                      ServiceSubscriberInterface
                                                                                                                                                      -
                                                                                                                                                      - - -

                                                                                                                                                      @@ -141,57 +131,64 @@

                                                                                                                                                      -
                                                                                                                                                      - $filesystem +
                                                                                                                                                      + $filesystem  : Filesystem
                                                                                                                                                      -
                                                                                                                                                      - $framework +
                                                                                                                                                      + $framework  : ContaoFramework
                                                                                                                                                      -
                                                                                                                                                      - $kernel +
                                                                                                                                                      + $kernel  : KernelInterface
                                                                                                                                                      -
                                                                                                                                                      - $locator +
                                                                                                                                                      + $kernelBundles + +  : array<string|int, mixed> +
                                                                                                                                                      +
                                                                                                                                                      + +
                                                                                                                                                      + $locator  : ContainerInterface
                                                                                                                                                      -
                                                                                                                                                      - $requestStack +
                                                                                                                                                      + $requestStack  : RequestStack
                                                                                                                                                      - $scopeMatcher + $scopeMatcher  : ScopeMatcher
                                                                                                                                                      - __construct() + __construct()  : mixed
                                                                                                                                                      - getBundlePath() + getBundlePath()  : string|null
                                                                                                                                                      @@ -199,7 +196,7 @@

                                                                                                                                                      Attention: resolves symlinks!
                                                                                                                                                      - getBundleResourcePath() + getBundleResourcePath()  : string|array<string|int, mixed>|null
                                                                                                                                                      @@ -207,63 +204,70 @@

                                                                                                                                                      Attention: resolves symlinks!
                                                                                                                                                      - getSubscribedServices() + getSubscribedServices() -  : array<string|int, mixed> +  : mixed
                                                                                                                                                      - isBackend() + isBackend()  : bool
                                                                                                                                                      Return if currently in backend scope.
                                                                                                                                                      - isDev() + isBundleActive() + +  : bool +
                                                                                                                                                      +
                                                                                                                                                      Checks if some bundle is active. Pass in the class name (e.g. 'HeimrichHannot\FilterBundle\HeimrichHannotContaoFilterBundle' or the legacy Contao 3 name like 'news').
                                                                                                                                                      + +
                                                                                                                                                      + isDev()  : bool
                                                                                                                                                      Return if in dev environment.
                                                                                                                                                      - isFrontend() + isFrontend()  : bool
                                                                                                                                                      Return if currently in frontend scope.
                                                                                                                                                      - isFrontendCron() + isFrontendCron()  : bool
                                                                                                                                                      Return if in cron route (Attention: not cron command!).
                                                                                                                                                      - isInstall() + isInstall()  : bool
                                                                                                                                                      Return if in install route (Attention: not migration!).
                                                                                                                                                      - isMaintenanceModeActive() + isMaintenanceModeActive()  : bool
                                                                                                                                                      Return if currently in maintenance mode.
                                                                                                                                                      - isPreviewMode() + isPreviewMode()  : bool
                                                                                                                                                      Return if currently in preview mode.
                                                                                                                                                      - log() + log()  : void
                                                                                                                                                      @@ -279,39 +283,37 @@

                                                                                                                                                      Properties - +

                                                                                                                                                      @@ -319,33 +321,31 @@

                                                                                                                                                      class=" phpdocumentor-element -property - -private + -protected " >

                                                                                                                                                      $framework - +

                                                                                                                                                      - private + protected ContaoFramework $framework -
                                                                                                                                                      - -
                                                                                                                                                      - + +

                                                                                                                                                      @@ -353,33 +353,63 @@

                                                                                                                                                      class=" phpdocumentor-element -property - -private + -protected " >

                                                                                                                                                      $kernel - +

                                                                                                                                                      - private + protected KernelInterface $kernel -
                                                                                                                                                      + + + -
                                                                                                                                                      + +
                                                                                                                                                      +

                                                                                                                                                      + $kernelBundles + + + +

                                                                                                                                                      + + + + + protected + array<string|int, mixed> + $kernelBundles + + + +
                                                                                                                                                      @@ -387,33 +417,31 @@

                                                                                                                                                      class=" phpdocumentor-element -property - -private + -protected " >

                                                                                                                                                      $locator - +

                                                                                                                                                      - private + protected ContainerInterface $locator -
                                                                                                                                                      - -
                                                                                                                                                      - + + @@ -421,33 +449,31 @@

                                                                                                                                                      class=" phpdocumentor-element -property - -private + -protected " >

                                                                                                                                                      $requestStack - +

                                                                                                                                                      - private + protected RequestStack $requestStack -
                                                                                                                                                      - -
                                                                                                                                                      - + + @@ -460,14 +486,14 @@

                                                                                                                                                      >

                                                                                                                                                      $scopeMatcher - +

                                                                                                                                                      @@ -478,10 +504,8 @@

                                                                                                                                                      $scopeMatcher -
                                                                                                                                                      - -
                                                                                                                                                      - + + @@ -490,7 +514,7 @@

                                                                                                                                                      Methods - +

                                                                                                                                                      >

                                                                                                                                                      __construct() - +

                                                                                                                                                      public - __construct(ContainerInterface $locator, KernelInterface $kernel, ContaoFramework $framework, ScopeMatcher $scopeMatcher, RequestStack $requestStack, Filesystem $filesystem) : mixed + __construct(ContainerInterface $locator, array<string|int, mixed> $kernelBundles, KernelInterface $kernel, ContaoFrameworkInterface $framework, ScopeMatcher $scopeMatcher, RequestStack $requestStack, Filesystem $filesystem) : mixed
                                                                                                                                                      @@ -525,6 +549,14 @@
                                                                                                                                                      Parameters
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + $kernelBundles + : array<string|int, mixed> +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      $kernel @@ -536,7 +568,7 @@
                                                                                                                                                      Parameters
                                                                                                                                                      $framework - : ContaoFramework + : ContaoFrameworkInterface
                                                                                                                                                      @@ -584,12 +616,12 @@
                                                                                                                                                      Return values
                                                                                                                                                      >

                                                                                                                                                      getBundlePath() - +

                                                                                                                                                      @@ -632,12 +664,12 @@
                                                                                                                                                      Return values
                                                                                                                                                      >

                                                                                                                                                      getBundleResourcePath() - +

                                                                                                                                                      @@ -698,19 +730,19 @@
                                                                                                                                                      Return values
                                                                                                                                                      >

                                                                                                                                                      getSubscribedServices() - +

                                                                                                                                                      public - static getSubscribedServices() : array<string|int, mixed> + static getSubscribedServices() : mixed
                                                                                                                                                      @@ -718,7 +750,7 @@

                                                                                                                                                      Return values
                                                                                                                                                      - array<string|int, mixed> + mixed — @@ -731,12 +763,12 @@
                                                                                                                                                      Return values
                                                                                                                                                      >

                                                                                                                                                      isBackend() - +

                                                                                                                                                      @@ -750,6 +782,50 @@

                                                                                                                                                      +

                                                                                                                                                      Return values
                                                                                                                                                      + bool + — + + +
                                                                                                                                                      +
                                                                                                                                                      +

                                                                                                                                                      + isBundleActive() + +

                                                                                                                                                      + + +

                                                                                                                                                      Checks if some bundle is active. Pass in the class name (e.g. 'HeimrichHannot\FilterBundle\HeimrichHannotContaoFilterBundle' or the legacy Contao 3 name like 'news').

                                                                                                                                                      + + + public + isBundleActive(string $bundleName) : bool + + +
                                                                                                                                                      Parameters
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + $bundleName + : string +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + +
                                                                                                                                                      +
                                                                                                                                                      + + +
                                                                                                                                                      Return values
                                                                                                                                                      bool — @@ -764,12 +840,12 @@
                                                                                                                                                      Return values
                                                                                                                                                      >

                                                                                                                                                      isDev() - +

                                                                                                                                                      @@ -797,12 +873,12 @@
                                                                                                                                                      Return values
                                                                                                                                                      >

                                                                                                                                                      isFrontend() - +

                                                                                                                                                      @@ -830,12 +906,12 @@
                                                                                                                                                      Return values
                                                                                                                                                      >

                                                                                                                                                      isFrontendCron() - +

                                                                                                                                                      @@ -863,12 +939,12 @@
                                                                                                                                                      Return values
                                                                                                                                                      >

                                                                                                                                                      isInstall() - +

                                                                                                                                                      @@ -896,12 +972,12 @@
                                                                                                                                                      Return values
                                                                                                                                                      >

                                                                                                                                                      isMaintenanceModeActive() - +

                                                                                                                                                      @@ -909,14 +985,14 @@

                                                                                                                                                      public - isMaintenanceModeActive([PageModel $page = null ]) : bool + isMaintenanceModeActive([mixed $page = null ]) : bool

                                                                                                                                                      Parameters
                                                                                                                                                      $page - : PageModel + : mixed = null
                                                                                                                                                      @@ -940,12 +1016,12 @@
                                                                                                                                                      Return values
                                                                                                                                                      >

                                                                                                                                                      isPreviewMode() - +

                                                                                                                                                      @@ -973,12 +1049,12 @@
                                                                                                                                                      Return values
                                                                                                                                                      >

                                                                                                                                                      log() - +

                                                                                                                                                      @@ -1106,7 +1182,7 @@

                                                                                                                                                      Search results

                                                                                                                                                      - + diff --git a/classes/HeimrichHannot-UtilsBundle-Util-DatabaseUtil-CreateWhereForSerializedBlobResult.html b/classes/HeimrichHannot-UtilsBundle-Util-DatabaseUtil-CreateWhereForSerializedBlobResult.html new file mode 100644 index 00000000..0aaf642f --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-Util-DatabaseUtil-CreateWhereForSerializedBlobResult.html @@ -0,0 +1,577 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                      +

                                                                                                                                                      Contao Utils Bundle

                                                                                                                                                      + + + + + +
                                                                                                                                                      + +
                                                                                                                                                      +
                                                                                                                                                      + + + + +
                                                                                                                                                      + + +
                                                                                                                                                      +

                                                                                                                                                      + CreateWhereForSerializedBlobResult + + +
                                                                                                                                                      + in package + +
                                                                                                                                                      + + +

                                                                                                                                                      + + + + +
                                                                                                                                                      + + + + + + + + +

                                                                                                                                                      + Table of Contents + +

                                                                                                                                                      + +
                                                                                                                                                      +
                                                                                                                                                      + $field + +  : string +
                                                                                                                                                      +
                                                                                                                                                      + +
                                                                                                                                                      + $values + +  : array<string|int, mixed> +
                                                                                                                                                      +
                                                                                                                                                      + +
                                                                                                                                                      + __construct() + +  : mixed +
                                                                                                                                                      +
                                                                                                                                                      + +
                                                                                                                                                      + createAndWhere() + +  : string +
                                                                                                                                                      +
                                                                                                                                                      Return the where query with AND operation and placeholder for each value ('REGEXP (?)'). Values can be obtained from the values property.
                                                                                                                                                      + +
                                                                                                                                                      + createInlineAndWhere() + +  : string +
                                                                                                                                                      +
                                                                                                                                                      Return the where query with AND operation for each value. Values are inlined in the query ('REGEXP (':"3"')' instead of 'REGEXP (?)').
                                                                                                                                                      + +
                                                                                                                                                      + createInlineOrWhere() + +  : string +
                                                                                                                                                      +
                                                                                                                                                      Return the where query with OR operation for each value. Values are inlined in the query ('REGEXP (':"3"')' instead of 'REGEXP (?)').
                                                                                                                                                      + +
                                                                                                                                                      + createOrWhere() + +  : string +
                                                                                                                                                      +
                                                                                                                                                      Return the where query with OR operation and placeholder for each value ('REGEXP (?)'). Values can be obtained from the values property.
                                                                                                                                                      + +
                                                                                                                                                      + getValueList() + +  : array<string|int, mixed> +
                                                                                                                                                      +
                                                                                                                                                      + +
                                                                                                                                                      + + + + + + +
                                                                                                                                                      +

                                                                                                                                                      + Properties + +

                                                                                                                                                      + + +
                                                                                                                                                      + +
                                                                                                                                                      +

                                                                                                                                                      + Methods + +

                                                                                                                                                      +
                                                                                                                                                      +

                                                                                                                                                      + __construct() + +

                                                                                                                                                      + + + + + public + __construct(string $field, array<string|int, mixed> $values) : mixed + +
                                                                                                                                                      + +
                                                                                                                                                      Parameters
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + $field + : string +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + +
                                                                                                                                                      +
                                                                                                                                                      + $values + : array<string|int, mixed> +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + +
                                                                                                                                                      +
                                                                                                                                                      + + + +
                                                                                                                                                      Return values
                                                                                                                                                      + mixed + — + + +
                                                                                                                                                      +
                                                                                                                                                      +

                                                                                                                                                      + createAndWhere() + +

                                                                                                                                                      + + +

                                                                                                                                                      Return the where query with AND operation and placeholder for each value ('REGEXP (?)'). Values can be obtained from the values property.

                                                                                                                                                      + + + public + createAndWhere() : string + + + + + +
                                                                                                                                                      Return values
                                                                                                                                                      + string + — + + +
                                                                                                                                                      +
                                                                                                                                                      +

                                                                                                                                                      + createInlineAndWhere() + +

                                                                                                                                                      + + +

                                                                                                                                                      Return the where query with AND operation for each value. Values are inlined in the query ('REGEXP (':"3"')' instead of 'REGEXP (?)').

                                                                                                                                                      + + + public + createInlineAndWhere() : string + + + + + +
                                                                                                                                                      Return values
                                                                                                                                                      + string + — + + +
                                                                                                                                                      +
                                                                                                                                                      +

                                                                                                                                                      + createInlineOrWhere() + +

                                                                                                                                                      + + +

                                                                                                                                                      Return the where query with OR operation for each value. Values are inlined in the query ('REGEXP (':"3"')' instead of 'REGEXP (?)').

                                                                                                                                                      + + + public + createInlineOrWhere() : string + + + + + +
                                                                                                                                                      Return values
                                                                                                                                                      + string + — + + +
                                                                                                                                                      +
                                                                                                                                                      +

                                                                                                                                                      + createOrWhere() + +

                                                                                                                                                      + + +

                                                                                                                                                      Return the where query with OR operation and placeholder for each value ('REGEXP (?)'). Values can be obtained from the values property.

                                                                                                                                                      + + + public + createOrWhere() : string + + + + + +
                                                                                                                                                      Return values
                                                                                                                                                      + string + — + + +
                                                                                                                                                      +
                                                                                                                                                      +

                                                                                                                                                      + getValueList() + +

                                                                                                                                                      + + + + + private + getValueList() : array<string|int, mixed> + +
                                                                                                                                                      + + + + +
                                                                                                                                                      Return values
                                                                                                                                                      + array<string|int, mixed> + — + + +
                                                                                                                                                      +
                                                                                                                                                      + + + + +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +

                                                                                                                                                      Search results

                                                                                                                                                      + +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        + + +
                                                                                                                                                        + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-Util-DatabaseUtil.html b/classes/HeimrichHannot-UtilsBundle-Util-DatabaseUtil.html index 181eb4af..8a7435fe 100644 --- a/classes/HeimrichHannot-UtilsBundle-Util-DatabaseUtil.html +++ b/classes/HeimrichHannot-UtilsBundle-Util-DatabaseUtil.html @@ -130,7 +130,7 @@

                                                                                                                                                        createWhereForSerializedBlob() -  : CreateWhereForSerializedBlobResult +  : CreateWhereForSerializedBlobResult
                                                                                                                                                        Create a where condition for a field that contains a serialized blob.
                                                                                                                                                        @@ -168,7 +168,7 @@

                                                                                                                                                        public - createWhereForSerializedBlob(string $field, array<string|int, mixed> $values) : CreateWhereForSerializedBlobResult + createWhereForSerializedBlob(string $field, array<string|int, mixed> $values) : CreateWhereForSerializedBlobResult

                                                                                                                                                        Parameters
                                                                                                                                                        @@ -196,7 +196,7 @@

                                                                                                                                                        Parameters
                                                                                                                                                        Return values
                                                                                                                                                        - CreateWhereForSerializedBlobResult + CreateWhereForSerializedBlobResult — diff --git a/classes/HeimrichHannot-UtilsBundle-Util-DcaUtil.html b/classes/HeimrichHannot-UtilsBundle-Util-Dca-DcaUtil.html similarity index 75% rename from classes/HeimrichHannot-UtilsBundle-Util-DcaUtil.html rename to classes/HeimrichHannot-UtilsBundle-Util-Dca-DcaUtil.html index bf346436..3fc1faf3 100644 --- a/classes/HeimrichHannot-UtilsBundle-Util-DcaUtil.html +++ b/classes/HeimrichHannot-UtilsBundle-Util-Dca-DcaUtil.html @@ -87,6 +87,7 @@

                                                                                                                                                        Fil
                                                                                                                                                      • HeimrichHannot
                                                                                                                                                      • UtilsBundle
                                                                                                                                                      • Util
                                                                                                                                                      • +
                                                                                                                                                      • Dca
                                                                                                                                                      • @@ -105,9 +106,9 @@

                                                                                                                                                        @@ -128,42 +129,35 @@

                                                                                                                                                        - $contaoFramework + $contaoFramework  : ContaoFramework
                                                                                                                                                        - __construct() + __construct()  : mixed
                                                                                                                                                        - executeCallback() - -  : mixed|null -
                                                                                                                                                        -
                                                                                                                                                        Execute a callback with given arguments.
                                                                                                                                                        - -
                                                                                                                                                        - explodePalette() + explodePalette()  : array<string|int, mixed>
                                                                                                                                                        Explode a palette string.
                                                                                                                                                        - getDcaFields() + getDcaFields()  : array<string|int, mixed>
                                                                                                                                                        Return a list of dca fields for given table.
                                                                                                                                                        - getPaletteFields() + getPaletteFields()  : array<string|int, mixed>
                                                                                                                                                        @@ -179,7 +173,7 @@

                                                                                                                                                        Properties - +

                                                                                                                                                        >

                                                                                                                                                        $contaoFramework - +

                                                                                                                                                        @@ -208,10 +202,8 @@

                                                                                                                                                        $contaoFramework -
                                                                                                                                                        - -
                                                                                                                                                        - + +

                                                                                                                                                        @@ -220,7 +212,7 @@

                                                                                                                                                        Methods - +

                                                                                                                                                        -
                                                                                                                                                        -

                                                                                                                                                        - executeCallback() - -

                                                                                                                                                        - - -

                                                                                                                                                        Execute a callback with given arguments.

                                                                                                                                                        - - - public - executeCallback(array<string|int, mixed>|callable|null $callback, mixed ...$arguments) : mixed|null - - -
                                                                                                                                                        Parameters
                                                                                                                                                        -
                                                                                                                                                        -
                                                                                                                                                        - $callback - : array<string|int, mixed>|callable|null -
                                                                                                                                                        -
                                                                                                                                                        -

                                                                                                                                                        The callback can be a callable or an array with the first element being -the class name and the second element being the method name.

                                                                                                                                                        -
                                                                                                                                                        - -
                                                                                                                                                        -
                                                                                                                                                        - $arguments - : mixed -
                                                                                                                                                        -
                                                                                                                                                        -
                                                                                                                                                        - -
                                                                                                                                                        -
                                                                                                                                                        - - - -
                                                                                                                                                        Return values
                                                                                                                                                        - mixed|null - — -

                                                                                                                                                        The retrieved value or null if the callback is not callable or an error occurred.

                                                                                                                                                        -
                                                                                                                                                        - -
                                                                                                                                                        Return values

                                                                                                                                                        >

                                                                                                                                                        explodePalette() - +

                                                                                                                                                        @@ -374,12 +310,12 @@
                                                                                                                                                        Return values
                                                                                                                                                        >

                                                                                                                                                        getDcaFields() - +

                                                                                                                                                        @@ -387,9 +323,17 @@

                                                                                                                                                        public - getDcaFields(string $table[, GetDcaFieldsOptions|null $options = null ]) : array<string|int, mixed> + getDcaFields(string $table[, array<string|int, mixed> $options = [] ]) : array<string|int, mixed>

                                                                                                                                                        Fields can be filtered by given options.

                                                                                                                                                        +

                                                                                                                                                        Options:

                                                                                                                                                        +
                                                                                                                                                          +
                                                                                                                                                        • onlyDatabaseFields (bool): Return only fields with sql definition. Default false
                                                                                                                                                        • +
                                                                                                                                                        • allowedInputTypes (array): Return only fields of given types.
                                                                                                                                                        • +
                                                                                                                                                        • evalConditions (array): Return only fields with given eval key-value-pairs.
                                                                                                                                                        • +
                                                                                                                                                        • localizeLabels (bool): Return also the field labels (key = field name, value = field label). Default false
                                                                                                                                                        • +
                                                                                                                                                        • skipSorting (bool): Skip sorting fields by field name alphabetical. Default false
                                                                                                                                                        • +

                                                                                                                                                        Parameters
                                                                                                                                                        @@ -404,8 +348,8 @@
                                                                                                                                                        Parameters
                                                                                                                                                        $options - : GetDcaFieldsOptions|null - = null
                                                                                                                                                        + : array<string|int, mixed> + = []
                                                                                                                                                        @@ -428,12 +372,12 @@
                                                                                                                                                        Return values
                                                                                                                                                        >

                                                                                                                                                        getPaletteFields() - +

                                                                                                                                                        @@ -445,7 +389,7 @@

                                                                                                                                                        Options:

                                                                                                                                                          -
                                                                                                                                                        • skip_subpalettes (bool): Don't add subpalette fields to result. Default false
                                                                                                                                                        • +
                                                                                                                                                        • skip_subpalettes (bool): Don't add subpalette fields to result.
                                                                                                                                                        @@ -563,7 +507,7 @@

                                                                                                                                                        Search results

                                                                                                                                                        - + diff --git a/classes/HeimrichHannot-UtilsBundle-Util-DcaUtil-GetDcaFieldsOptions.html b/classes/HeimrichHannot-UtilsBundle-Util-DcaUtil-GetDcaFieldsOptions.html deleted file mode 100644 index 5f2fbf3d..00000000 --- a/classes/HeimrichHannot-UtilsBundle-Util-DcaUtil-GetDcaFieldsOptions.html +++ /dev/null @@ -1,1028 +0,0 @@ - - - - - Contao Utils Bundle - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                        -

                                                                                                                                                        Contao Utils Bundle

                                                                                                                                                        - - - - - -
                                                                                                                                                        - -
                                                                                                                                                        -
                                                                                                                                                        - - - - -
                                                                                                                                                        - - -
                                                                                                                                                        -

                                                                                                                                                        - GetDcaFieldsOptions - - -
                                                                                                                                                        - in package - -
                                                                                                                                                        - - -

                                                                                                                                                        - - - - -
                                                                                                                                                        - - - - - - - - -

                                                                                                                                                        - Table of Contents - -

                                                                                                                                                        - -
                                                                                                                                                        -
                                                                                                                                                        - $allowedInputTypes - -  : array<string|int, mixed> -
                                                                                                                                                        -
                                                                                                                                                        - -
                                                                                                                                                        - $evalConditions - -  : array<string|int, mixed> -
                                                                                                                                                        -
                                                                                                                                                        - -
                                                                                                                                                        - $localizeLabels - -  : bool -
                                                                                                                                                        -
                                                                                                                                                        - -
                                                                                                                                                        - $onlyDatabaseFields - -  : bool -
                                                                                                                                                        -
                                                                                                                                                        'onlyDatabaseFields' => false, -'allowedInputTypes' => [], -'evalConditions' => [], -'localizeLabels' => false, -'skipSorting' => false,
                                                                                                                                                        - -
                                                                                                                                                        - $skipSorting - -  : bool -
                                                                                                                                                        -
                                                                                                                                                        - -
                                                                                                                                                        - create() - -  : self -
                                                                                                                                                        -
                                                                                                                                                        - -
                                                                                                                                                        - getAllowedInputTypes() - -  : array<string|int, mixed> -
                                                                                                                                                        -
                                                                                                                                                        - -
                                                                                                                                                        - getEvalConditions() - -  : array<string|int, mixed> -
                                                                                                                                                        -
                                                                                                                                                        - -
                                                                                                                                                        - isHasEvalConditions() - -  : bool -
                                                                                                                                                        -
                                                                                                                                                        - -
                                                                                                                                                        - isLocalizeLabels() - -  : bool -
                                                                                                                                                        -
                                                                                                                                                        - -
                                                                                                                                                        - isOnlyAllowedInputTypes() - -  : bool -
                                                                                                                                                        -
                                                                                                                                                        - -
                                                                                                                                                        - isOnlyDatabaseFields() - -  : bool -
                                                                                                                                                        -
                                                                                                                                                        - -
                                                                                                                                                        - isSkipSorting() - -  : bool -
                                                                                                                                                        -
                                                                                                                                                        - -
                                                                                                                                                        - setAllowedInputTypes() - -  : GetDcaFieldsOptions -
                                                                                                                                                        -
                                                                                                                                                        Return only fields of given types.
                                                                                                                                                        - -
                                                                                                                                                        - setEvalConditions() - -  : GetDcaFieldsOptions -
                                                                                                                                                        -
                                                                                                                                                        Return only fields with given eval key-value-pairs.
                                                                                                                                                        - -
                                                                                                                                                        - setLocalizeLabels() - -  : GetDcaFieldsOptions -
                                                                                                                                                        -
                                                                                                                                                        Return also the field labels (key = field name, value = field label). Default false
                                                                                                                                                        - -
                                                                                                                                                        - setOnlyDatabaseFields() - -  : GetDcaFieldsOptions -
                                                                                                                                                        -
                                                                                                                                                        Return only fields with sql definition. Default false
                                                                                                                                                        - -
                                                                                                                                                        - setSkipSorting() - -  : GetDcaFieldsOptions -
                                                                                                                                                        -
                                                                                                                                                        Skip sorting fields by field name alphabetical. Default false
                                                                                                                                                        - -
                                                                                                                                                        - - - - - - -
                                                                                                                                                        -

                                                                                                                                                        - Properties - -

                                                                                                                                                        -
                                                                                                                                                        -

                                                                                                                                                        - $allowedInputTypes - - - -

                                                                                                                                                        - - - - - private - array<string|int, mixed> - $allowedInputTypes - = [] - -
                                                                                                                                                        - -
                                                                                                                                                        - - - -
                                                                                                                                                        -
                                                                                                                                                        -

                                                                                                                                                        - $evalConditions - - - -

                                                                                                                                                        - - - - - private - array<string|int, mixed> - $evalConditions - = [] - -
                                                                                                                                                        - -
                                                                                                                                                        - - - -
                                                                                                                                                        -
                                                                                                                                                        -

                                                                                                                                                        - $localizeLabels - - - -

                                                                                                                                                        - - - - - private - bool - $localizeLabels - = false - -
                                                                                                                                                        - -
                                                                                                                                                        - - - -
                                                                                                                                                        -
                                                                                                                                                        -

                                                                                                                                                        - $onlyDatabaseFields - - - -

                                                                                                                                                        - - -

                                                                                                                                                        'onlyDatabaseFields' => false, -'allowedInputTypes' => [], -'evalConditions' => [], -'localizeLabels' => false, -'skipSorting' => false,

                                                                                                                                                        - - - private - bool - $onlyDatabaseFields - = false - - -
                                                                                                                                                        - - - -
                                                                                                                                                        -
                                                                                                                                                        -

                                                                                                                                                        - $skipSorting - - - -

                                                                                                                                                        - - - - - private - bool - $skipSorting - = false - -
                                                                                                                                                        - -
                                                                                                                                                        - - - -
                                                                                                                                                        -
                                                                                                                                                        - -
                                                                                                                                                        -

                                                                                                                                                        - Methods - -

                                                                                                                                                        -
                                                                                                                                                        -

                                                                                                                                                        - create() - -

                                                                                                                                                        - - - - - public - static create() : self - -
                                                                                                                                                        - - - - -
                                                                                                                                                        Return values
                                                                                                                                                        - self - — - - -
                                                                                                                                                        -
                                                                                                                                                        -

                                                                                                                                                        - getAllowedInputTypes() - -

                                                                                                                                                        - - - - - public - getAllowedInputTypes() : array<string|int, mixed> - -
                                                                                                                                                        - - - - -
                                                                                                                                                        Return values
                                                                                                                                                        - array<string|int, mixed> - — - - -
                                                                                                                                                        -
                                                                                                                                                        -

                                                                                                                                                        - getEvalConditions() - -

                                                                                                                                                        - - - - - public - getEvalConditions() : array<string|int, mixed> - -
                                                                                                                                                        - - - - -
                                                                                                                                                        Return values
                                                                                                                                                        - array<string|int, mixed> - — - - -
                                                                                                                                                        -
                                                                                                                                                        -

                                                                                                                                                        - isHasEvalConditions() - -

                                                                                                                                                        - - - - - public - isHasEvalConditions() : bool - -
                                                                                                                                                        - - - - -
                                                                                                                                                        Return values
                                                                                                                                                        - bool - — - - -
                                                                                                                                                        -
                                                                                                                                                        -

                                                                                                                                                        - isLocalizeLabels() - -

                                                                                                                                                        - - - - - public - isLocalizeLabels() : bool - -
                                                                                                                                                        - - - - -
                                                                                                                                                        Return values
                                                                                                                                                        - bool - — - - -
                                                                                                                                                        -
                                                                                                                                                        -

                                                                                                                                                        - isOnlyAllowedInputTypes() - -

                                                                                                                                                        - - - - - public - isOnlyAllowedInputTypes() : bool - -
                                                                                                                                                        - - - - -
                                                                                                                                                        Return values
                                                                                                                                                        - bool - — - - -
                                                                                                                                                        -
                                                                                                                                                        -

                                                                                                                                                        - isOnlyDatabaseFields() - -

                                                                                                                                                        - - - - - public - isOnlyDatabaseFields() : bool - -
                                                                                                                                                        - - - - -
                                                                                                                                                        Return values
                                                                                                                                                        - bool - — - - -
                                                                                                                                                        -
                                                                                                                                                        -

                                                                                                                                                        - isSkipSorting() - -

                                                                                                                                                        - - - - - public - isSkipSorting() : bool - -
                                                                                                                                                        - - - - -
                                                                                                                                                        Return values
                                                                                                                                                        - bool - — - - -
                                                                                                                                                        -
                                                                                                                                                        -

                                                                                                                                                        - setAllowedInputTypes() - -

                                                                                                                                                        - - -

                                                                                                                                                        Return only fields of given types.

                                                                                                                                                        - - - public - setAllowedInputTypes(array<string|int, mixed> $allowedInputTypes) : GetDcaFieldsOptions - - -
                                                                                                                                                        Parameters
                                                                                                                                                        -
                                                                                                                                                        -
                                                                                                                                                        - $allowedInputTypes - : array<string|int, mixed> -
                                                                                                                                                        -
                                                                                                                                                        -
                                                                                                                                                        - -
                                                                                                                                                        -
                                                                                                                                                        - - - -
                                                                                                                                                        Return values
                                                                                                                                                        - GetDcaFieldsOptions - — - - -
                                                                                                                                                        -
                                                                                                                                                        -

                                                                                                                                                        - setEvalConditions() - -

                                                                                                                                                        - - -

                                                                                                                                                        Return only fields with given eval key-value-pairs.

                                                                                                                                                        - - - public - setEvalConditions(array<string|int, mixed> $evalConditions) : GetDcaFieldsOptions - - -
                                                                                                                                                        Parameters
                                                                                                                                                        -
                                                                                                                                                        -
                                                                                                                                                        - $evalConditions - : array<string|int, mixed> -
                                                                                                                                                        -
                                                                                                                                                        -
                                                                                                                                                        - -
                                                                                                                                                        -
                                                                                                                                                        - - - -
                                                                                                                                                        Return values
                                                                                                                                                        - GetDcaFieldsOptions - — - - -
                                                                                                                                                        -
                                                                                                                                                        -

                                                                                                                                                        - setLocalizeLabels() - -

                                                                                                                                                        - - -

                                                                                                                                                        Return also the field labels (key = field name, value = field label). Default false

                                                                                                                                                        - - - public - setLocalizeLabels(bool $localizeLabels) : GetDcaFieldsOptions - - -
                                                                                                                                                        Parameters
                                                                                                                                                        -
                                                                                                                                                        -
                                                                                                                                                        - $localizeLabels - : bool -
                                                                                                                                                        -
                                                                                                                                                        -
                                                                                                                                                        - -
                                                                                                                                                        -
                                                                                                                                                        - - - -
                                                                                                                                                        Return values
                                                                                                                                                        - GetDcaFieldsOptions - — - - -
                                                                                                                                                        -
                                                                                                                                                        -

                                                                                                                                                        - setOnlyDatabaseFields() - -

                                                                                                                                                        - - -

                                                                                                                                                        Return only fields with sql definition. Default false

                                                                                                                                                        - - - public - setOnlyDatabaseFields(bool $onlyDatabaseFields) : GetDcaFieldsOptions - - -
                                                                                                                                                        Parameters
                                                                                                                                                        -
                                                                                                                                                        -
                                                                                                                                                        - $onlyDatabaseFields - : bool -
                                                                                                                                                        -
                                                                                                                                                        -
                                                                                                                                                        - -
                                                                                                                                                        -
                                                                                                                                                        - - - -
                                                                                                                                                        Return values
                                                                                                                                                        - GetDcaFieldsOptions - — - - -
                                                                                                                                                        -
                                                                                                                                                        -

                                                                                                                                                        - setSkipSorting() - -

                                                                                                                                                        - - -

                                                                                                                                                        Skip sorting fields by field name alphabetical. Default false

                                                                                                                                                        - - - public - setSkipSorting(bool $skipSorting) : GetDcaFieldsOptions - - -
                                                                                                                                                        Parameters
                                                                                                                                                        -
                                                                                                                                                        -
                                                                                                                                                        - $skipSorting - : bool -
                                                                                                                                                        -
                                                                                                                                                        -
                                                                                                                                                        - -
                                                                                                                                                        -
                                                                                                                                                        - - - -
                                                                                                                                                        Return values
                                                                                                                                                        - GetDcaFieldsOptions - — - - -
                                                                                                                                                        -
                                                                                                                                                        - - - - -
                                                                                                                                                        -
                                                                                                                                                        -
                                                                                                                                                        -
                                                                                                                                                        -

                                                                                                                                                        Search results

                                                                                                                                                        - -
                                                                                                                                                        -
                                                                                                                                                        -
                                                                                                                                                          -
                                                                                                                                                          -
                                                                                                                                                          -
                                                                                                                                                          -
                                                                                                                                                          -
                                                                                                                                                          - - -
                                                                                                                                                          - - - - - - - - diff --git a/classes/HeimrichHannot-UtilsBundle-Util-FileUtil.html b/classes/HeimrichHannot-UtilsBundle-Util-File-FileUtil.html similarity index 88% rename from classes/HeimrichHannot-UtilsBundle-Util-FileUtil.html rename to classes/HeimrichHannot-UtilsBundle-Util-File-FileUtil.html index f73a016b..d928e1a8 100644 --- a/classes/HeimrichHannot-UtilsBundle-Util-FileUtil.html +++ b/classes/HeimrichHannot-UtilsBundle-Util-File-FileUtil.html @@ -87,6 +87,7 @@

                                                                                                                                                          Fil
                                                                                                                                                        • HeimrichHannot
                                                                                                                                                        • UtilsBundle
                                                                                                                                                        • Util
                                                                                                                                                        • +
                                                                                                                                                        • File
                                                                                                                                                        • @@ -105,7 +106,7 @@

                                                                                                                                                          @@ -240,7 +237,7 @@

                                                                                                                                                          Methods - +

                                                                                                                                                          - + diff --git a/classes/HeimrichHannot-UtilsBundle-Util-FormatterUtil-FormatDcaFieldValueOptions.html b/classes/HeimrichHannot-UtilsBundle-Util-FormatterUtil-FormatDcaFieldValueOptions.html deleted file mode 100644 index 69a6f354..00000000 --- a/classes/HeimrichHannot-UtilsBundle-Util-FormatterUtil-FormatDcaFieldValueOptions.html +++ /dev/null @@ -1,936 +0,0 @@ - - - - - Contao Utils Bundle - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                          -

                                                                                                                                                          Contao Utils Bundle

                                                                                                                                                          - - - - - -
                                                                                                                                                          - -
                                                                                                                                                          -
                                                                                                                                                          - - - - -
                                                                                                                                                          - - -
                                                                                                                                                          -

                                                                                                                                                          - FormatDcaFieldValueOptions - - -
                                                                                                                                                          - in package - -
                                                                                                                                                          - - -

                                                                                                                                                          - - - - - - -
                                                                                                                                                          - Tags - -
                                                                                                                                                          -
                                                                                                                                                          -
                                                                                                                                                          - codeCoverageIgnore -
                                                                                                                                                          -
                                                                                                                                                          - -

                                                                                                                                                          This is a simple DTO.

                                                                                                                                                          -
                                                                                                                                                          - -
                                                                                                                                                          -
                                                                                                                                                          - - - - - - -

                                                                                                                                                          - Table of Contents - -

                                                                                                                                                          - -
                                                                                                                                                          -
                                                                                                                                                          - $arrayJoiner - -  : string -
                                                                                                                                                          -
                                                                                                                                                          - -
                                                                                                                                                          - $cacheOptions - -  : bool -
                                                                                                                                                          -
                                                                                                                                                          - -
                                                                                                                                                          - $dcaOverride - -  : array<string|int, mixed>|null -
                                                                                                                                                          -
                                                                                                                                                          - -
                                                                                                                                                          - $loadDca - -  : bool -
                                                                                                                                                          -
                                                                                                                                                          - -
                                                                                                                                                          - $localize - -  : bool -
                                                                                                                                                          -
                                                                                                                                                          - -
                                                                                                                                                          - $preserveEmptyArrayValues - -  : bool -
                                                                                                                                                          -
                                                                                                                                                          - -
                                                                                                                                                          - $replaceInsertTags - -  : bool -
                                                                                                                                                          -
                                                                                                                                                          - -
                                                                                                                                                          - create() - -  : FormatDcaFieldValueOptions -
                                                                                                                                                          -
                                                                                                                                                          - -
                                                                                                                                                          - setArrayJoiner() - -  : $this -
                                                                                                                                                          -
                                                                                                                                                          The string that joins array values. Default: ', '.
                                                                                                                                                          - -
                                                                                                                                                          - setCacheOptions() - -  : FormatDcaFieldValueOptions -
                                                                                                                                                          -
                                                                                                                                                          - -
                                                                                                                                                          - setDcaOverride() - -  : $this -
                                                                                                                                                          -
                                                                                                                                                          Override the DCA field settings. If not set, the DCA field settings will be used.
                                                                                                                                                          - -
                                                                                                                                                          - setLoadDca() - -  : FormatDcaFieldValueOptions -
                                                                                                                                                          -
                                                                                                                                                          - -
                                                                                                                                                          - setLocalize() - -  : FormatDcaFieldValueOptions -
                                                                                                                                                          -
                                                                                                                                                          - -
                                                                                                                                                          - setPreserveEmptyArrayValues() - -  : FormatDcaFieldValueOptions -
                                                                                                                                                          -
                                                                                                                                                          - -
                                                                                                                                                          - setReplaceInsertTags() - -  : FormatDcaFieldValueOptions -
                                                                                                                                                          -
                                                                                                                                                          - -
                                                                                                                                                          - - - - - - -
                                                                                                                                                          -

                                                                                                                                                          - Properties - -

                                                                                                                                                          - - -
                                                                                                                                                          -

                                                                                                                                                          - $dcaOverride - - - -

                                                                                                                                                          - - - - - public - array<string|int, mixed>|null - $dcaOverride - = null - -
                                                                                                                                                          - -
                                                                                                                                                          - - - -
                                                                                                                                                          - - -
                                                                                                                                                          -

                                                                                                                                                          - $preserveEmptyArrayValues - - - -

                                                                                                                                                          - - - - - public - bool - $preserveEmptyArrayValues - = false - -
                                                                                                                                                          - -
                                                                                                                                                          - - - -
                                                                                                                                                          - -
                                                                                                                                                          - -
                                                                                                                                                          -

                                                                                                                                                          - Methods - -

                                                                                                                                                          - -
                                                                                                                                                          -

                                                                                                                                                          - setArrayJoiner() - -

                                                                                                                                                          - - -

                                                                                                                                                          The string that joins array values. Default: ', '.

                                                                                                                                                          - - - public - setArrayJoiner(string $arrayJoiner) : $this - - -
                                                                                                                                                          Parameters
                                                                                                                                                          -
                                                                                                                                                          -
                                                                                                                                                          - $arrayJoiner - : string -
                                                                                                                                                          -
                                                                                                                                                          - -
                                                                                                                                                          -
                                                                                                                                                          - - - -
                                                                                                                                                          Return values
                                                                                                                                                          - $this - — - - -
                                                                                                                                                          - -
                                                                                                                                                          -

                                                                                                                                                          - setDcaOverride() - -

                                                                                                                                                          - - -

                                                                                                                                                          Override the DCA field settings. If not set, the DCA field settings will be used.

                                                                                                                                                          - - - public - setDcaOverride(array<string|int, mixed>|null $dcaOverride) : $this - - -
                                                                                                                                                          Parameters
                                                                                                                                                          -
                                                                                                                                                          -
                                                                                                                                                          - $dcaOverride - : array<string|int, mixed>|null -
                                                                                                                                                          -
                                                                                                                                                          - -
                                                                                                                                                          -
                                                                                                                                                          - - - -
                                                                                                                                                          Return values
                                                                                                                                                          - $this - — - - -
                                                                                                                                                          - - - - -
                                                                                                                                                          - - - - -
                                                                                                                                                          -
                                                                                                                                                          -
                                                                                                                                                          -
                                                                                                                                                          -

                                                                                                                                                          Search results

                                                                                                                                                          - -
                                                                                                                                                          -
                                                                                                                                                          -
                                                                                                                                                            -
                                                                                                                                                            -
                                                                                                                                                            -
                                                                                                                                                            -
                                                                                                                                                            -
                                                                                                                                                            - - -
                                                                                                                                                            - - - - - - - - diff --git a/classes/HeimrichHannot-UtilsBundle-Util-HtmlUtil.html b/classes/HeimrichHannot-UtilsBundle-Util-Html-HtmlUtil.html similarity index 87% rename from classes/HeimrichHannot-UtilsBundle-Util-HtmlUtil.html rename to classes/HeimrichHannot-UtilsBundle-Util-Html-HtmlUtil.html index c7097d52..922790b8 100644 --- a/classes/HeimrichHannot-UtilsBundle-Util-HtmlUtil.html +++ b/classes/HeimrichHannot-UtilsBundle-Util-Html-HtmlUtil.html @@ -87,6 +87,7 @@

                                                                                                                                                            Fil
                                                                                                                                                          • HeimrichHannot
                                                                                                                                                          • UtilsBundle
                                                                                                                                                          • Util
                                                                                                                                                          • +
                                                                                                                                                          • Html
                                                                                                                                                          • @@ -105,9 +106,9 @@

                                                                                                                                                            @@ -128,14 +129,14 @@

                                                                                                                                                            - generateAttributeString() + generateAttributeString()  : string
                                                                                                                                                            Generate a attribute string for html elements out of an array.
                                                                                                                                                            - generateDataAttributesString() + generateDataAttributesString()  : string
                                                                                                                                                            @@ -152,7 +153,7 @@

                                                                                                                                                            Methods - +

                                                                                                                                                            >

                                                                                                                                                            generateAttributeString() - +

                                                                                                                                                            @@ -219,12 +220,12 @@
                                                                                                                                                            Return values
                                                                                                                                                            >

                                                                                                                                                            generateDataAttributesString() - +

                                                                                                                                                            @@ -232,7 +233,7 @@

                                                                                                                                                            public - generateDataAttributesString(array<string|int, mixed> $attributes[, GenerateDataAttributesStringOptions $options = new GenerateDataAttributesStringOptions() ]) : string + generateDataAttributesString(array<string|int, mixed> $attributes[, array<string|int, mixed> $options = [] ]) : string

                                                                                                                                                            Options (additional to Options from HtmlUtl::generateAttributeString()):

                                                                                                                                                              @@ -252,8 +253,8 @@
                                                                                                                                                              Parameters
                                                                                                                                                              $options - : GenerateDataAttributesStringOptions - = new GenerateDataAttributesStringOptions()
                                                                                                                                                              + : array<string|int, mixed> + = []
                                                                                                                                                              @@ -346,7 +347,7 @@

                                                                                                                                                              Search results

                                                                                                                                                            - + diff --git a/classes/HeimrichHannot-UtilsBundle-Util-LocaleUtil.html b/classes/HeimrichHannot-UtilsBundle-Util-Locale-LocaleUtil.html similarity index 93% rename from classes/HeimrichHannot-UtilsBundle-Util-LocaleUtil.html rename to classes/HeimrichHannot-UtilsBundle-Util-Locale-LocaleUtil.html index 63c63bd0..39a27357 100644 --- a/classes/HeimrichHannot-UtilsBundle-Util-LocaleUtil.html +++ b/classes/HeimrichHannot-UtilsBundle-Util-Locale-LocaleUtil.html @@ -87,6 +87,7 @@

                                                                                                                                                            Fil
                                                                                                                                                          • HeimrichHannot
                                                                                                                                                          • UtilsBundle
                                                                                                                                                          • Util
                                                                                                                                                          • +
                                                                                                                                                          • Locale
                                                                                                                                                          • @@ -105,7 +106,7 @@

                                                                                                                                                            - + diff --git a/classes/HeimrichHannot-UtilsBundle-Util-RequestUtil.html b/classes/HeimrichHannot-UtilsBundle-Util-Request-RequestUtil.html similarity index 73% rename from classes/HeimrichHannot-UtilsBundle-Util-RequestUtil.html rename to classes/HeimrichHannot-UtilsBundle-Util-Request-RequestUtil.html index 3a22a065..565069ec 100644 --- a/classes/HeimrichHannot-UtilsBundle-Util-RequestUtil.html +++ b/classes/HeimrichHannot-UtilsBundle-Util-Request-RequestUtil.html @@ -87,6 +87,7 @@

                                                                                                                                                            Fil
                                                                                                                                                          • HeimrichHannot
                                                                                                                                                          • UtilsBundle
                                                                                                                                                          • Util
                                                                                                                                                          • +
                                                                                                                                                          • Request
                                                                                                                                                          • @@ -105,9 +106,9 @@

                                                                                                                                                            @@ -128,49 +129,63 @@

                                                                                                                                                            - $requestStack + $kernelPackages + +  : array<string|int, mixed> +
                                                                                                                                                            +
                                                                                                                                                            + +
                                                                                                                                                            + $modelUtil + +  : ModelUtil +
                                                                                                                                                            +
                                                                                                                                                            + +
                                                                                                                                                            + $requestStack  : RequestStack
                                                                                                                                                            - $contaoFramework + $contaoFramework  : ContaoFramework
                                                                                                                                                            - __construct() + __construct()  : mixed
                                                                                                                                                            - getBaseUrl() + getBaseUrl()  : string
                                                                                                                                                            Get the website base url (scheme and host) considering additional context.
                                                                                                                                                            - getCurrentPageModel() + getCurrentPageModel()  : PageModel|null
                                                                                                                                                            Return the current page model.
                                                                                                                                                            - getCurrentRootPageModel() + getCurrentRootPageModel()  : PageModel|null
                                                                                                                                                            Return the root page of the current page.
                                                                                                                                                            - isIndexPage() + isIndexPage()  : bool
                                                                                                                                                            @@ -178,7 +193,7 @@

                                                                                                                                                            of the current page tree.
                                                                                                                                                            - isNewVisitor() + isNewVisitor()  : bool
                                                                                                                                                            @@ -194,7 +209,7 @@

                                                                                                                                                            Properties - +

                                                                                                                                                            -property -protected " +> +

                                                                                                                                                            + $kernelPackages + + + +

                                                                                                                                                            + + + + + protected + array<string|int, mixed> + $kernelPackages + + + + + + +
                                                                                                                                                            + + @@ -239,14 +316,14 @@

                                                                                                                                                            >

                                                                                                                                                            $contaoFramework - +

                                                                                                                                                            @@ -257,10 +334,8 @@

                                                                                                                                                            $contaoFramework -
                                                                                                                                                            - -
                                                                                                                                                            - + +

                                                                                                                                                            @@ -269,7 +344,7 @@

                                                                                                                                                            Methods - +

                                                                                                                                                            >

                                                                                                                                                            __construct() - +

                                                                                                                                                            public - __construct(RequestStack $requestStack, ContaoFramework $contaoFramework) : mixed + __construct(ModelUtil $modelUtil, RequestStack $requestStack, array<string|int, mixed> $kernelPackages, ContaoFramework $contaoFramework) : mixed
                                                                                                                                                            Parameters
                                                                                                                                                            + $modelUtil + : ModelUtil +
                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            + +
                                                                                                                                                            +
                                                                                                                                                            $requestStack : RequestStack
                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            + $kernelPackages + : array<string|int, mixed> +
                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            $contaoFramework @@ -331,12 +422,12 @@
                                                                                                                                                            Return values
                                                                                                                                                            >

                                                                                                                                                            getBaseUrl() - +

                                                                                                                                                            @@ -349,12 +440,12 @@

                                                                                                                                                            If no base url could be determined, an empty string is returned.

                                                                                                                                                            Context:

                                                                                                                                                              -
                                                                                                                                                            • pageModel: The current page model
                                                                                                                                                            • -
                                                                                                                                                            • fallback: will be returned if no other base url could be determined
                                                                                                                                                            • +
                                                                                                                                                            • (PageModel) pageModel: The current page model
                                                                                                                                                            • +
                                                                                                                                                            • (string) fallback: will be returned if no other base url could be determined

                                                                                                                                                            Options:

                                                                                                                                                              -
                                                                                                                                                            • throwException: Throw exception if no base url could be determined instead of returning empty string
                                                                                                                                                            • +
                                                                                                                                                            • (bool) throwException: Throw exception if no base url could be determined instead of returning empty string
                                                                                                                                                            @@ -365,7 +456,8 @@

                                                                                                                                                            Parameters
                                                                                                                                                            : array<string|int, mixed> = []
                                                                                                                                                            -
                                                                                                                                                            +

                                                                                                                                                            Pass additional context. Available content: pageModel, fallback

                                                                                                                                                            +
                                                                                                                                                            @@ -373,7 +465,8 @@
                                                                                                                                                            Parameters
                                                                                                                                                            : array<string|int, mixed> = []
                                                                                                                                                            -
                                                                                                                                                            +

                                                                                                                                                            Pass addition options: Available options: throwException

                                                                                                                                                            +
                                                                                                                                                            @@ -394,12 +487,12 @@
                                                                                                                                                            Return values
                                                                                                                                                            >

                                                                                                                                                            getCurrentPageModel() - +

                                                                                                                                                            @@ -444,12 +537,12 @@
                                                                                                                                                            Return values
                                                                                                                                                            >

                                                                                                                                                            getCurrentRootPageModel() - +

                                                                                                                                                            @@ -490,12 +583,12 @@
                                                                                                                                                            Return values
                                                                                                                                                            >

                                                                                                                                                            isIndexPage() - +

                                                                                                                                                            @@ -535,12 +628,12 @@
                                                                                                                                                            Return values
                                                                                                                                                            >

                                                                                                                                                            isNewVisitor() - +

                                                                                                                                                            @@ -638,7 +731,7 @@

                                                                                                                                                            Search results

                                                                                                                                                            - + diff --git a/classes/HeimrichHannot-UtilsBundle-Util-UrlUtil.html b/classes/HeimrichHannot-UtilsBundle-Util-Request-UrlUtil.html similarity index 72% rename from classes/HeimrichHannot-UtilsBundle-Util-UrlUtil.html rename to classes/HeimrichHannot-UtilsBundle-Util-Request-UrlUtil.html index c1847642..9e5086b3 100644 --- a/classes/HeimrichHannot-UtilsBundle-Util-UrlUtil.html +++ b/classes/HeimrichHannot-UtilsBundle-Util-Request-UrlUtil.html @@ -87,6 +87,7 @@

                                                                                                                                                            Fil
                                                                                                                                                          • HeimrichHannot
                                                                                                                                                          • UtilsBundle
                                                                                                                                                          • Util
                                                                                                                                                          • +
                                                                                                                                                          • Request
                                                                                                                                                          • @@ -105,7 +106,7 @@

                                                                                                                                                            +
                                                                                                                                                            +

                                                                                                                                                            + removeQueryStringParameterToUrl() + +

                                                                                                                                                            + + + + + public + removeQueryStringParameterToUrl(string $parameter[, string $url = '' ]) : string + + +
                                                                                                                                                            Parameters
                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            + $parameter + : string +
                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            + +
                                                                                                                                                            +
                                                                                                                                                            + $url + : string + = ''
                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            + +
                                                                                                                                                            +
                                                                                                                                                            + +
                                                                                                                                                            Tags
                                                                                                                                                            - example + deprecated
                                                                                                                                                            -

                                                                                                                                                            removeQueryStringParameterFromUrl('foo', 'https://example.com?foo=bar&baz=fuzz') // https://example.com?baz=fuzz

                                                                                                                                                            +

                                                                                                                                                            Use removeQueryStringParameterFromUrl() instead

                                                                                                                                                            -
                                                                                                                                                            - example +
                                                                                                                                                            + codeCoverageIgnore
                                                                                                                                                            -

                                                                                                                                                            removeQueryStringParameterFromUrl(['foo', 'baz'], 'https://example.com?foo=bar&baz=fuzz') // https://example.com

                                                                                                                                                            -
                                                                                                                                                            - +
                                                                                                                                                            Return values
                                                                                                                                                            string — -

                                                                                                                                                            The URL without the given query parameters.

                                                                                                                                                            -
                                                                                                                                                            - +
                                                                                                                                                            Return values

                                                                                                                                                            >

                                                                                                                                                            buildUrlString() - +

                                                                                                                                                            @@ -626,7 +650,7 @@

                                                                                                                                                            Search results

                                                                                                                                                            - + diff --git a/classes/HeimrichHannot-UtilsBundle-Util-RoutingUtil.html b/classes/HeimrichHannot-UtilsBundle-Util-Routing-RoutingUtil.html similarity index 73% rename from classes/HeimrichHannot-UtilsBundle-Util-RoutingUtil.html rename to classes/HeimrichHannot-UtilsBundle-Util-Routing-RoutingUtil.html index 961ef247..36bd232d 100644 --- a/classes/HeimrichHannot-UtilsBundle-Util-RoutingUtil.html +++ b/classes/HeimrichHannot-UtilsBundle-Util-Routing-RoutingUtil.html @@ -87,12 +87,16 @@

                                                                                                                                                            Fil
                                                                                                                                                          • HeimrichHannot
                                                                                                                                                          • UtilsBundle
                                                                                                                                                          • Util
                                                                                                                                                          • +
                                                                                                                                                          • Routing
                                                                                                                                                          • RoutingUtil + + extends AbstractServiceSubscriber +
                                                                                                                                                            in package @@ -105,9 +109,9 @@

                                                                                                                                                            @@ -128,47 +132,54 @@

                                                                                                                                                            - $csrfTokenName + $container -  : string +  : ContainerInterface
                                                                                                                                                            - $requestStack + $csrfTokenName -  : RequestStack +  : string
                                                                                                                                                            - $router + $requestStack -  : RouterInterface +  : RequestStack
                                                                                                                                                            - $tokenManager + $router -  : ContaoCsrfTokenManager +  : RouterInterface
                                                                                                                                                            - __construct() + __construct()  : mixed
                                                                                                                                                            - generateBackendRoute() + generateBackendRoute()  : string
                                                                                                                                                            Generate a backend route with token and referer.
                                                                                                                                                            +
                                                                                                                                                            + getSubscribedServices() + +  : mixed +
                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            @@ -179,7 +190,7 @@

                                                                                                                                                            Properties - +

                                                                                                                                                            -private " > -

                                                                                                                                                            - $csrfTokenName - +

                                                                                                                                                            + $container +

                                                                                                                                                            private - string - $csrfTokenName + ContainerInterface + $container -
                                                                                                                                                            - -
                                                                                                                                                            - + +
                                                                                                                                                            @@ -222,30 +231,28 @@

                                                                                                                                                            -private " > -

                                                                                                                                                            - $requestStack - +

                                                                                                                                                            + $csrfTokenName +

                                                                                                                                                            private - RequestStack - $requestStack + string + $csrfTokenName -
                                                                                                                                                            - -
                                                                                                                                                            - + +

                                                                                                                                                            @@ -256,30 +263,28 @@

                                                                                                                                                            -private " > -

                                                                                                                                                            - $router - +

                                                                                                                                                            + $requestStack +

                                                                                                                                                            private - RouterInterface - $router + RequestStack + $requestStack -
                                                                                                                                                            - -
                                                                                                                                                            - + +

                                                                                                                                                            @@ -290,30 +295,28 @@

                                                                                                                                                            -private " > -

                                                                                                                                                            - $tokenManager - +

                                                                                                                                                            + $router +

                                                                                                                                                            private - ContaoCsrfTokenManager - $tokenManager + RouterInterface + $router -
                                                                                                                                                            - -
                                                                                                                                                            - + +

                                                                                                                                                            @@ -322,7 +325,7 @@

                                                                                                                                                            Methods - +

                                                                                                                                                            >

                                                                                                                                                            __construct() - +

                                                                                                                                                            public - __construct(ContaoCsrfTokenManager $tokenManager, RouterInterface $router, string $csrfTokenName, RequestStack $requestStack) : mixed + __construct(ContainerInterface $container, RouterInterface $router, string $csrfTokenName, RequestStack $requestStack) : mixed
                                                                                                                                                            Parameters
                                                                                                                                                            - $tokenManager - : ContaoCsrfTokenManager + $container + : ContainerInterface
                                                                                                                                                            @@ -400,12 +403,12 @@
                                                                                                                                                            Return values
                                                                                                                                                            >

                                                                                                                                                            generateBackendRoute() - +

                                                                                                                                                            @@ -413,12 +416,11 @@

                                                                                                                                                            public - generateBackendRoute([array<string|int, mixed> $params = [] ][, bool $addToken = true ][, bool $addReferer = true ][, array<string|int, mixed> $options = [] ]) : string + generateBackendRoute([array<string|int, mixed> $params = [] ][, bool $addToken = true ][, bool $addReferer = true ][, string $route = 'contao_backend' ][, array<string|int, mixed> $options = [] ]) : string

                                                                                                                                                            Options:

                                                                                                                                                              -
                                                                                                                                                            • absoluteUrl: Return absolute url (default: false)
                                                                                                                                                            • -
                                                                                                                                                            • route: Route name (default: contao_backend)
                                                                                                                                                            • +
                                                                                                                                                            • absoluteUrl (bool): Return absolute url (default: false)
                                                                                                                                                            @@ -448,6 +450,14 @@

                                                                                                                                                            Parameters
                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            + $route + : string + = 'contao_backend'
                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            $options @@ -490,6 +500,51 @@
                                                                                                                                                            Return values
                                                                                                                                                            + +
                                                                                                                                                            +

                                                                                                                                                            + getSubscribedServices() + +

                                                                                                                                                            + + + + + public + static getSubscribedServices() : mixed + + + + +
                                                                                                                                                            + Tags + +
                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            + codeCoverageIgnore +
                                                                                                                                                            +
                                                                                                                                                            + + +
                                                                                                                                                            +
                                                                                                                                                            + +
                                                                                                                                                            Return values
                                                                                                                                                            + mixed + — + +
                                                                                                                                                            @@ -569,7 +624,7 @@

                                                                                                                                                            Search results

                                                                                                                                                            - + diff --git a/classes/HeimrichHannot-UtilsBundle-StaticUtil-StaticArrayUtil.html b/classes/HeimrichHannot-UtilsBundle-Util-Type-ArrayUtil.html similarity index 78% rename from classes/HeimrichHannot-UtilsBundle-StaticUtil-StaticArrayUtil.html rename to classes/HeimrichHannot-UtilsBundle-Util-Type-ArrayUtil.html index 5b176150..32b15d03 100644 --- a/classes/HeimrichHannot-UtilsBundle-StaticUtil-StaticArrayUtil.html +++ b/classes/HeimrichHannot-UtilsBundle-Util-Type-ArrayUtil.html @@ -86,16 +86,14 @@

                                                                                                                                                            Fil

                                                                                                                                                            - StaticArrayUtil + ArrayUtil - - extends AbstractStaticUtil -
                                                                                                                                                            in package @@ -108,9 +106,9 @@

                                                                                                                                                            @@ -131,25 +129,25 @@

                                                                                                                                                            - insertAfterKey() + insertAfterKey()  : void
                                                                                                                                                            Insert a value into an existing array by key name.
                                                                                                                                                            - insertBeforeKey() + insertBeforeKey() -  : void +  : mixed
                                                                                                                                                            Insert a new entry before a specific or multiple keys in array.
                                                                                                                                                            - removeValue() + removeValue()  : bool
                                                                                                                                                            -
                                                                                                                                                            Removes a value from an array.
                                                                                                                                                            +
                                                                                                                                                            Removes a value in an array.
                                                                                                                                                            @@ -162,22 +160,22 @@

                                                                                                                                                            Methods - +

                                                                                                                                                            insertAfterKey() - +

                                                                                                                                                            @@ -185,13 +183,13 @@

                                                                                                                                                            public - static insertAfterKey(array<string|int, mixed> &$array, string $key, mixed $value[, string $newKey = null ][, array<string|int, mixed> $options = [] ]) : void + insertAfterKey(array<string|int, mixed> &$array, string $key, mixed $value[, string $newKey = null ][, array<string|int, mixed> $options = [] ]) : void

                                                                                                                                                            Additional options:

                                                                                                                                                            • (bool) strict: Strict behavior for array search. Default false
                                                                                                                                                            • -
                                                                                                                                                            • (bool) attachMissingKey: Attach value to the end of the array if the key does not exist. Default: true
                                                                                                                                                            • -
                                                                                                                                                            • (int) offset: Add additional offset.
                                                                                                                                                            • +
                                                                                                                                                            • (bool) attachIfKeyNotExist: Attach value at the end of the array if key not exist. Default: true
                                                                                                                                                            • +
                                                                                                                                                            • (int) offset: Add an additional offset
                                                                                                                                                            @@ -237,7 +235,8 @@

                                                                                                                                                            Parameters
                                                                                                                                                            : array<string|int, mixed> = []
                                                                                                                                                            -
                                                                                                                                                            +

                                                                                                                                                            Additional options

                                                                                                                                                            +
                                                                                                                                                            @@ -258,12 +257,12 @@
                                                                                                                                                            Return values
                                                                                                                                                            >

                                                                                                                                                            insertBeforeKey() - +

                                                                                                                                                            @@ -271,7 +270,7 @@

                                                                                                                                                            public - static insertBeforeKey(array<string|int, mixed> &$array, array<string|int, mixed>|string $keys, string $newKey, mixed $newValue) : void + static insertBeforeKey(array<string|int, mixed> &$array, string|array<string|int, mixed> $keys, string $newKey, mixed $newValue) : mixed

                                                                                                                                                            If the keys not exist, the new entry is added to the end of the array. Array is passed as reference.

                                                                                                                                                            @@ -290,7 +289,7 @@
                                                                                                                                                            Parameters
                                                                                                                                                            $keys - : array<string|int, mixed>|string + : string|array<string|int, mixed>

                                                                                                                                                            The key or keys where the new entry should be added before

                                                                                                                                                            @@ -320,7 +319,7 @@
                                                                                                                                                            Parameters
                                                                                                                                                            Return values
                                                                                                                                                            - void + mixed — @@ -329,35 +328,34 @@
                                                                                                                                                            Return values
                                                                                                                                                            class="phpdocumentor-element -method -public - -static " + " >

                                                                                                                                                            removeValue() - +

                                                                                                                                                            -

                                                                                                                                                            Removes a value from an array.

                                                                                                                                                            +

                                                                                                                                                            Removes a value in an array.

                                                                                                                                                            public - static removeValue(mixed $value, array<string|int, mixed> &$array) : bool + removeValue( $value, array<string|int, mixed> &$array) : bool
                                                                                                                                                            Parameters
                                                                                                                                                            $value - : mixed + :
                                                                                                                                                            -
                                                                                                                                                            - +
                                                                                                                                                            $array @@ -457,7 +455,7 @@

                                                                                                                                                            Search results

                                                                                                                                                            - + diff --git a/classes/HeimrichHannot-UtilsBundle-Util-StringUtil.html b/classes/HeimrichHannot-UtilsBundle-Util-Type-StringUtil.html similarity index 71% rename from classes/HeimrichHannot-UtilsBundle-Util-StringUtil.html rename to classes/HeimrichHannot-UtilsBundle-Util-Type-StringUtil.html index 0f7b87f5..72098adf 100644 --- a/classes/HeimrichHannot-UtilsBundle-Util-StringUtil.html +++ b/classes/HeimrichHannot-UtilsBundle-Util-Type-StringUtil.html @@ -87,6 +87,7 @@

                                                                                                                                                            Fil
                                                                                                                                                          • HeimrichHannot
                                                                                                                                                          • UtilsBundle
                                                                                                                                                          • Util
                                                                                                                                                          • +
                                                                                                                                                          • Type
                                                                                                                                                          • @@ -105,9 +106,9 @@

                                                                                                                                                            @@ -127,124 +128,152 @@

                                                                                                                                                            -
                                                                                                                                                            - CAPITAL_LETTERS +
                                                                                                                                                            + CAPITAL_LETTERS  = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
                                                                                                                                                            -
                                                                                                                                                            - CAPITAL_LETTERS_NONAMBIGUOUS +
                                                                                                                                                            + CAPITAL_LETTERS_NONAMBIGUOUS  = 'ABCDEFGHJKLMNPQRSTUVWX'
                                                                                                                                                            -
                                                                                                                                                            - NUMBERS +
                                                                                                                                                            + NUMBERS  = '0123456789'
                                                                                                                                                            -
                                                                                                                                                            - NUMBERS_NONAMBIGUOUS +
                                                                                                                                                            + NUMBERS_NONAMBIGUOUS  = '23456789'
                                                                                                                                                            -
                                                                                                                                                            - SMALL_LETTERS +
                                                                                                                                                            + SMALL_LETTERS  = 'abcdefghijklmnopqrstuvwxyz'
                                                                                                                                                            -
                                                                                                                                                            - SMALL_LETTERS_NONAMBIGUOUS +
                                                                                                                                                            + SMALL_LETTERS_NONAMBIGUOUS  = 'abcdefghjkmnpqrstuvwx'
                                                                                                                                                            -
                                                                                                                                                            - camelCaseToDashed() +
                                                                                                                                                            + $framework + +  : ContaoFrameworkInterface +
                                                                                                                                                            +
                                                                                                                                                            + +
                                                                                                                                                            + __construct() + +  : mixed +
                                                                                                                                                            +
                                                                                                                                                            + +
                                                                                                                                                            + camelCaseToDashed()  : string
                                                                                                                                                            Convert a camel case string to a dashed string.
                                                                                                                                                            - camelCaseToSnake() + camelCaseToSnake()  : string
                                                                                                                                                            Convert a camel case string to a snake cased string.
                                                                                                                                                            - convertXmlToArray() + convertXmlToArray()  : array<string|int, mixed>|null
                                                                                                                                                            Convert an xml string to array.
                                                                                                                                                            - pregReplaceLast() + endsWith() + +  : bool +
                                                                                                                                                            +
                                                                                                                                                            Check for the occurrence at the end of the string.
                                                                                                                                                            + +
                                                                                                                                                            + pregReplaceLast()  : string|null
                                                                                                                                                            Replace the last match of string with preg_replace.
                                                                                                                                                            - random() + random()  : string
                                                                                                                                                            Return a random char of a given string.
                                                                                                                                                            - randomChar() + randomChar()  : string
                                                                                                                                                            Return a random char. Can be a letter or a number.
                                                                                                                                                            - randomLetter() + randomLetter()  : string
                                                                                                                                                            Return a random letter char.
                                                                                                                                                            - randomNumber() + randomNumber()  : string
                                                                                                                                                            Return a random number char.
                                                                                                                                                            - removeLeadingString() + removeLeadingString()  : string|null
                                                                                                                                                            Remove a string from the beginning of $subject.
                                                                                                                                                            - removeTrailingString() + removeTrailingString()  : string|null
                                                                                                                                                            Remove a string from the end of $subject.
                                                                                                                                                            - truncateHtml() + startsWith() + +  : bool +
                                                                                                                                                            +
                                                                                                                                                            Check for the occurrence at the start of the string.
                                                                                                                                                            + +
                                                                                                                                                            + truncateHtml()  : string
                                                                                                                                                            -
                                                                                                                                                            Truncates the text of an HTML string. By default, the last word is kept complete.
                                                                                                                                                            +
                                                                                                                                                            Truncates the text of a html string. By default, the last word is kept complete.
                                                                                                                                                            @@ -254,24 +283,24 @@

                                                                                                                                                            Constants - +

                                                                                                                                                            -
                                                                                                                                                            +

                                                                                                                                                            CAPITAL_LETTERS - +

                                                                                                                                                            - private + public mixed CAPITAL_LETTERS = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' @@ -285,22 +314,22 @@

                                                                                                                                                            -
                                                                                                                                                            +

                                                                                                                                                            CAPITAL_LETTERS_NONAMBIGUOUS - +

                                                                                                                                                            - private + public mixed CAPITAL_LETTERS_NONAMBIGUOUS = 'ABCDEFGHJKLMNPQRSTUVWX' @@ -314,22 +343,22 @@

                                                                                                                                                            + -
                                                                                                                                                            +

                                                                                                                                                            NUMBERS_NONAMBIGUOUS - +

                                                                                                                                                            - private + public mixed NUMBERS_NONAMBIGUOUS = '23456789' @@ -372,22 +401,22 @@

                                                                                                                                                            -
                                                                                                                                                            +

                                                                                                                                                            SMALL_LETTERS - +

                                                                                                                                                            - private + public mixed SMALL_LETTERS = 'abcdefghijklmnopqrstuvwxyz' @@ -401,22 +430,22 @@

                                                                                                                                                            -
                                                                                                                                                            +

                                                                                                                                                            SMALL_LETTERS_NONAMBIGUOUS - +

                                                                                                                                                            - private + public mixed SMALL_LETTERS_NONAMBIGUOUS = 'abcdefghjkmnpqrstuvwx' @@ -433,26 +462,108 @@

                                                                                                                                                            +
                                                                                                                                                            +

                                                                                                                                                            + Properties + +

                                                                                                                                                            +
                                                                                                                                                            +

                                                                                                                                                            + $framework + + + +

                                                                                                                                                            + + + + + protected + ContaoFrameworkInterface + $framework + + + + + + +
                                                                                                                                                            +

                                                                                                                                                            Methods - +

                                                                                                                                                            +

                                                                                                                                                            + __construct() + +

                                                                                                                                                            + + + + + public + __construct(ContaoFrameworkInterface $framework) : mixed + +
                                                                                                                                                            + +
                                                                                                                                                            Parameters
                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            + $framework + : ContaoFrameworkInterface +
                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            + +
                                                                                                                                                            +
                                                                                                                                                            + + + +
                                                                                                                                                            Return values
                                                                                                                                                            + mixed + — + + +
                                                                                                                                                            + +
                                                                                                                                                            +

                                                                                                                                                            + endsWith() + +

                                                                                                                                                            + + +

                                                                                                                                                            Check for the occurrence at the end of the string.

                                                                                                                                                            + + + public + endsWith(string $haystack, string $needle) : bool + + +
                                                                                                                                                            Parameters
                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            + $haystack + : string +
                                                                                                                                                            +
                                                                                                                                                            +

                                                                                                                                                            The string to search in

                                                                                                                                                            +
                                                                                                                                                            + +
                                                                                                                                                            +
                                                                                                                                                            + $needle + : string +
                                                                                                                                                            +
                                                                                                                                                            +

                                                                                                                                                            The needle

                                                                                                                                                            +
                                                                                                                                                            + +
                                                                                                                                                            +
                                                                                                                                                            + + +
                                                                                                                                                            + Tags + +
                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            + deprecated +
                                                                                                                                                            +
                                                                                                                                                            + +

                                                                                                                                                            Use str_ends_with instead

                                                                                                                                                            +
                                                                                                                                                            + +
                                                                                                                                                            +
                                                                                                                                                            + +
                                                                                                                                                            Return values
                                                                                                                                                            + bool + — + +
                                                                                                                                                            Return values

                                                                                                                                                            >

                                                                                                                                                            pregReplaceLast() - +

                                                                                                                                                            @@ -642,12 +822,12 @@
                                                                                                                                                            Return values
                                                                                                                                                            >

                                                                                                                                                            random() - +

                                                                                                                                                            @@ -715,12 +895,12 @@
                                                                                                                                                            Return values
                                                                                                                                                            >

                                                                                                                                                            randomChar() - +

                                                                                                                                                            @@ -768,12 +948,12 @@
                                                                                                                                                            Return values
                                                                                                                                                            >

                                                                                                                                                            randomLetter() - +

                                                                                                                                                            @@ -821,12 +1001,12 @@
                                                                                                                                                            Return values
                                                                                                                                                            >

                                                                                                                                                            randomNumber() - +

                                                                                                                                                            @@ -870,22 +1050,22 @@
                                                                                                                                                            Return values
                                                                                                                                                            class="phpdocumentor-element -method -public - -deprecated " + " >

                                                                                                                                                            removeLeadingString() - +

                                                                                                                                                            Remove a string from the beginning of $subject.

                                                                                                                                                            - + public removeLeadingString(string $string, string $subject[, array<string|int, mixed> $options = [] ]) : string|null @@ -924,21 +1104,6 @@
                                                                                                                                                            Parameters
                                                                                                                                                            -
                                                                                                                                                            - Tags - -
                                                                                                                                                            -
                                                                                                                                                            -
                                                                                                                                                            - deprecated -
                                                                                                                                                            -
                                                                                                                                                            - -

                                                                                                                                                            Replace with userland code. Will be removed in the next major version.

                                                                                                                                                            -
                                                                                                                                                            - -
                                                                                                                                                            -
                                                                                                                                                            Return values
                                                                                                                                                            string|null @@ -950,22 +1115,22 @@
                                                                                                                                                            Return values
                                                                                                                                                            class="phpdocumentor-element -method -public - -deprecated " + " >

                                                                                                                                                            removeTrailingString() - +

                                                                                                                                                            Remove a string from the end of $subject.

                                                                                                                                                            - + public removeTrailingString(string $string, string $subject[, array<string|int, mixed> $options = [] ]) : string|null @@ -1004,6 +1169,60 @@
                                                                                                                                                            Parameters
                                                                                                                                                            + +
                                                                                                                                                            Return values
                                                                                                                                                            + string|null + — + + +
                                                                                                                                                            +
                                                                                                                                                            +

                                                                                                                                                            + startsWith() + +

                                                                                                                                                            + + +

                                                                                                                                                            Check for the occurrence at the start of the string.

                                                                                                                                                            + + + public + startsWith( $haystack,  $needle) : bool + + +
                                                                                                                                                            Parameters
                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            + $haystack + : +
                                                                                                                                                            +
                                                                                                                                                            +

                                                                                                                                                            string The string to search in

                                                                                                                                                            +
                                                                                                                                                            + +
                                                                                                                                                            +
                                                                                                                                                            + $needle + : +
                                                                                                                                                            +
                                                                                                                                                            +

                                                                                                                                                            string The needle

                                                                                                                                                            +
                                                                                                                                                            + +
                                                                                                                                                            +
                                                                                                                                                            + +
                                                                                                                                                            Tags @@ -1014,14 +1233,14 @@
                                                                                                                                                            -

                                                                                                                                                            Replace with userland code. Will be removed in the next major version.

                                                                                                                                                            +

                                                                                                                                                            Use str_starts_with instead

                                                                                                                                                            Return values
                                                                                                                                                            - string|null + bool — @@ -1034,16 +1253,16 @@
                                                                                                                                                            Return values
                                                                                                                                                            >

                                                                                                                                                            truncateHtml() - +

                                                                                                                                                            -

                                                                                                                                                            Truncates the text of an HTML string. By default, the last word is kept complete.

                                                                                                                                                            +

                                                                                                                                                            Truncates the text of a html string. By default, the last word is kept complete.

                                                                                                                                                            public @@ -1063,7 +1282,7 @@
                                                                                                                                                            Parameters
                                                                                                                                                            : string
                                                                                                                                                            -

                                                                                                                                                            The HTML string that should be truncated

                                                                                                                                                            +

                                                                                                                                                            The html string that should be truncated

                                                                                                                                                            @@ -1072,7 +1291,7 @@
                                                                                                                                                            Parameters
                                                                                                                                                            : int
                                                                                                                                                            -

                                                                                                                                                            Max number of text characters (HTML tags are not counted)

                                                                                                                                                            +

                                                                                                                                                            Max number of text characters (html tags are not counted)

                                                                                                                                                            @@ -1182,7 +1401,7 @@

                                                                                                                                                            Search results

                                                                                                                                                            - + diff --git a/classes/HeimrichHannot-UtilsBundle-Util-AccordionUtil.html b/classes/HeimrichHannot-UtilsBundle-Util-Ui-AccordionUtil.html similarity index 85% rename from classes/HeimrichHannot-UtilsBundle-Util-AccordionUtil.html rename to classes/HeimrichHannot-UtilsBundle-Util-Ui-AccordionUtil.html index 39e9f2cb..95d5e3a3 100644 --- a/classes/HeimrichHannot-UtilsBundle-Util-AccordionUtil.html +++ b/classes/HeimrichHannot-UtilsBundle-Util-Ui-AccordionUtil.html @@ -87,6 +87,7 @@

                                                                                                                                                            Fil
                                                                                                                                                          • HeimrichHannot
                                                                                                                                                          • UtilsBundle
                                                                                                                                                          • Util
                                                                                                                                                          • +
                                                                                                                                                          • Ui
                                                                                                                                                          • @@ -105,7 +106,7 @@

                                                                                                                                                            @@ -268,12 +265,12 @@

                                                                                                                                                            >

                                                                                                                                                            $contaoFramework - +

                                                                                                                                                            @@ -298,7 +293,7 @@

                                                                                                                                                            Methods - +

                                                                                                                                                            - + diff --git a/classes/HeimrichHannot-UtilsBundle-Util-User-UserUtil.html b/classes/HeimrichHannot-UtilsBundle-Util-User-UserUtil.html new file mode 100644 index 00000000..875a8f93 --- /dev/null +++ b/classes/HeimrichHannot-UtilsBundle-Util-User-UserUtil.html @@ -0,0 +1,528 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                            +

                                                                                                                                                            Contao Utils Bundle

                                                                                                                                                            + + + + + +
                                                                                                                                                            + +
                                                                                                                                                            +
                                                                                                                                                            + + + + +
                                                                                                                                                            + + +
                                                                                                                                                            +

                                                                                                                                                            + UserUtil + + +
                                                                                                                                                            + in package + +
                                                                                                                                                            + + + + Uses + PersonTrait +

                                                                                                                                                            + + + + +
                                                                                                                                                            + + + + + + + + +

                                                                                                                                                            + Table of Contents + +

                                                                                                                                                            + +
                                                                                                                                                            +
                                                                                                                                                            + TABLE + +  = 'tl_user' +
                                                                                                                                                            +
                                                                                                                                                            + +
                                                                                                                                                            + $modelUtil + +  : ModelUtil +
                                                                                                                                                            +
                                                                                                                                                            + +
                                                                                                                                                            + $contaoFramework + +  : ContaoFramework +
                                                                                                                                                            +
                                                                                                                                                            + +
                                                                                                                                                            + $databaseUtil + +  : DatabaseUtil +
                                                                                                                                                            +
                                                                                                                                                            + +
                                                                                                                                                            + __construct() + +  : mixed +
                                                                                                                                                            +
                                                                                                                                                            UserUtil constructor.
                                                                                                                                                            + +
                                                                                                                                                            + findActiveUsersByGroup() + +  : Collection|null +
                                                                                                                                                            +
                                                                                                                                                            + +
                                                                                                                                                            + + + + +
                                                                                                                                                            +

                                                                                                                                                            + Constants + +

                                                                                                                                                            +
                                                                                                                                                            +

                                                                                                                                                            + TABLE + +

                                                                                                                                                            + + + + + + public + mixed + TABLE + = 'tl_user' + + + +
                                                                                                                                                            + +
                                                                                                                                                            + + + +
                                                                                                                                                            +
                                                                                                                                                            + + +
                                                                                                                                                            +

                                                                                                                                                            + Properties + +

                                                                                                                                                            +
                                                                                                                                                            +

                                                                                                                                                            + $modelUtil + + + +

                                                                                                                                                            + + + + + protected + ModelUtil + $modelUtil + + + + + + +
                                                                                                                                                            +
                                                                                                                                                            +

                                                                                                                                                            + $contaoFramework + + + +

                                                                                                                                                            + + + + + private + ContaoFramework + $contaoFramework + + + + + + +
                                                                                                                                                            + +
                                                                                                                                                            + +
                                                                                                                                                            +

                                                                                                                                                            + Methods + +

                                                                                                                                                            +
                                                                                                                                                            +

                                                                                                                                                            + __construct() + +

                                                                                                                                                            + + +

                                                                                                                                                            UserUtil constructor.

                                                                                                                                                            + + + public + __construct(ModelUtil $modelUtil, DatabaseUtil $databaseUtil, ContaoFramework $contaoFramework) : mixed + + +
                                                                                                                                                            Parameters
                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            + $modelUtil + : ModelUtil +
                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            + +
                                                                                                                                                            +
                                                                                                                                                            + $databaseUtil + : DatabaseUtil +
                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            + +
                                                                                                                                                            +
                                                                                                                                                            + $contaoFramework + : ContaoFramework +
                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            + +
                                                                                                                                                            +
                                                                                                                                                            + + + +
                                                                                                                                                            Return values
                                                                                                                                                            + mixed + — + + +
                                                                                                                                                            +
                                                                                                                                                            +

                                                                                                                                                            + findActiveUsersByGroup() + +

                                                                                                                                                            + + + + + public + findActiveUsersByGroup(array<string|int, mixed> $groups[, array<string|int, mixed> $options = [] ]) : Collection|null + +
                                                                                                                                                            + +
                                                                                                                                                            Parameters
                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            + $groups + : array<string|int, mixed> +
                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            + +
                                                                                                                                                            +
                                                                                                                                                            + $options + : array<string|int, mixed> + = []
                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            + +
                                                                                                                                                            +
                                                                                                                                                            + + + +
                                                                                                                                                            Return values
                                                                                                                                                            + Collection|null + — + + +
                                                                                                                                                            +
                                                                                                                                                            + + + + +
                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            +

                                                                                                                                                            Search results

                                                                                                                                                            + +
                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + +
                                                                                                                                                              + + + + + + + + diff --git a/classes/HeimrichHannot-UtilsBundle-Util-Utils.html b/classes/HeimrichHannot-UtilsBundle-Util-Utils.html index 0c4a9f44..5a0769ec 100644 --- a/classes/HeimrichHannot-UtilsBundle-Util-Utils.html +++ b/classes/HeimrichHannot-UtilsBundle-Util-Utils.html @@ -93,6 +93,9 @@

                                                                                                                                                              Fil

                                                                                                                                                              Utils + + extends AbstractServiceSubscriber +
                                                                                                                                                              in package @@ -101,16 +104,13 @@

                                                                                                                                                              - - implements - ServiceSubscriberInterface

                                                                                                                                                              @@ -122,17 +122,6 @@

                                                                                                                                                              -

                                                                                                                                                              - Interfaces, Classes and Traits - -

                                                                                                                                                              - -
                                                                                                                                                              -
                                                                                                                                                              ServiceSubscriberInterface
                                                                                                                                                              -
                                                                                                                                                              - - -

                                                                                                                                                              @@ -158,21 +147,14 @@

                                                                                                                                                              accordion() -  : AccordionUtil -
                                                                                                                                                              -
                                                                                                                                                              - -
                                                                                                                                                              - anonymize() - -  : AnonymizeUtil +  : AccordionUtil
                                                                                                                                                              array() -  : ArrayUtil +  : ArrayUtil
                                                                                                                                                              @@ -186,7 +168,7 @@

                                                                                                                                                              container() -  : ContainerUtil +  : ContainerUtil
                                                                                                                                                              @@ -200,84 +182,77 @@

                                                                                                                                                              dca() -  : DcaUtil +  : DcaUtil
                                                                                                                                                              file() -  : FileUtil -
                                                                                                                                                              -
                                                                                                                                                              - -
                                                                                                                                                              - formatter() - -  : FormatterUtil +  : FileUtil
                                                                                                                                                              getSubscribedServices() -  : array<string|int, mixed> +  : mixed
                                                                                                                                                              html() -  : HtmlUtil +  : HtmlUtil
                                                                                                                                                              locale() -  : LocaleUtil +  : LocaleUtil
                                                                                                                                                              model() -  : ModelUtil +  : ModelUtil
                                                                                                                                                              request() -  : RequestUtil +  : RequestUtil
                                                                                                                                                              routing() -  : RoutingUtil +  : RoutingUtil
                                                                                                                                                              string() -  : StringUtil +  : StringUtil
                                                                                                                                                              url() -  : UrlUtil +  : UrlUtil
                                                                                                                                                              user() -  : UserUtil +  : UserUtil
                                                                                                                                                              @@ -309,7 +284,7 @@

                                                                                                                                                              @@ -345,7 +320,7 @@

                                                                                                                                                              @@ -389,14 +364,14 @@

                                                                                                                                                              public - accordion() : AccordionUtil + accordion() : AccordionUtil
                                                                                                                                                              @@ -404,40 +379,7 @@

                                                                                                                                                              Return values
                                                                                                                                                              - AccordionUtil - — - - -

                                                                                                                                                              -
                                                                                                                                                              -

                                                                                                                                                              - anonymize() - -

                                                                                                                                                              - - - - - public - anonymize() : AnonymizeUtil - -
                                                                                                                                                              - - - - -
                                                                                                                                                              Return values
                                                                                                                                                              - AnonymizeUtil + AccordionUtil — @@ -455,14 +397,14 @@

                                                                                                                                                              public - array() : ArrayUtil + array() : ArrayUtil
                                                                                                                                                              @@ -470,7 +412,7 @@

                                                                                                                                                              Return values
                                                                                                                                                              - ArrayUtil + ArrayUtil — @@ -488,7 +430,7 @@

                                                                                                                                                              @@ -521,14 +463,14 @@

                                                                                                                                                              public - container() : ContainerUtil + container() : ContainerUtil
                                                                                                                                                              @@ -536,7 +478,7 @@

                                                                                                                                                              Return values
                                                                                                                                                              - ContainerUtil + ContainerUtil — @@ -554,7 +496,7 @@

                                                                                                                                                              @@ -587,14 +529,14 @@

                                                                                                                                                              public - dca() : DcaUtil + dca() : DcaUtil
                                                                                                                                                              @@ -602,7 +544,7 @@

                                                                                                                                                              Return values
                                                                                                                                                              - DcaUtil + DcaUtil — @@ -620,14 +562,14 @@

                                                                                                                                                              public - file() : FileUtil + file() : FileUtil
                                                                                                                                                              @@ -635,40 +577,7 @@

                                                                                                                                                              Return values
                                                                                                                                                              - FileUtil - — - - -
                                                                                                                                                              -
                                                                                                                                                              -

                                                                                                                                                              - formatter() - -

                                                                                                                                                              - - - - - public - formatter() : FormatterUtil - -
                                                                                                                                                              - - - - -
                                                                                                                                                              Return values
                                                                                                                                                              - FormatterUtil + FileUtil — @@ -686,14 +595,14 @@

                                                                                                                                                              public - static getSubscribedServices() : array<string|int, mixed> + static getSubscribedServices() : mixed
                                                                                                                                                              @@ -701,7 +610,7 @@

                                                                                                                                                              Return values
                                                                                                                                                              - array<string|int, mixed> + mixed — @@ -719,14 +628,14 @@

                                                                                                                                                              public - html() : HtmlUtil + html() : HtmlUtil
                                                                                                                                                              @@ -734,7 +643,7 @@

                                                                                                                                                              Return values
                                                                                                                                                              - HtmlUtil + HtmlUtil — @@ -752,14 +661,14 @@

                                                                                                                                                              public - locale() : LocaleUtil + locale() : LocaleUtil
                                                                                                                                                              @@ -767,7 +676,7 @@

                                                                                                                                                              Return values
                                                                                                                                                              - LocaleUtil + LocaleUtil — @@ -785,14 +694,14 @@

                                                                                                                                                              public - model() : ModelUtil + model() : ModelUtil
                                                                                                                                                              @@ -800,7 +709,7 @@

                                                                                                                                                              Return values
                                                                                                                                                              - ModelUtil + ModelUtil — @@ -818,14 +727,14 @@

                                                                                                                                                              public - request() : RequestUtil + request() : RequestUtil
                                                                                                                                                              @@ -833,7 +742,7 @@

                                                                                                                                                              Return values
                                                                                                                                                              - RequestUtil + RequestUtil — @@ -851,14 +760,14 @@

                                                                                                                                                              public - routing() : RoutingUtil + routing() : RoutingUtil
                                                                                                                                                              @@ -866,7 +775,7 @@

                                                                                                                                                              Return values
                                                                                                                                                              - RoutingUtil + RoutingUtil — @@ -884,14 +793,14 @@

                                                                                                                                                              public - string() : StringUtil + string() : StringUtil
                                                                                                                                                              @@ -899,7 +808,7 @@

                                                                                                                                                              Return values
                                                                                                                                                              - StringUtil + StringUtil — @@ -917,14 +826,14 @@

                                                                                                                                                              public - url() : UrlUtil + url() : UrlUtil
                                                                                                                                                              @@ -932,7 +841,7 @@

                                                                                                                                                              Return values
                                                                                                                                                              - UrlUtil + UrlUtil — @@ -950,14 +859,14 @@

                                                                                                                                                              public - user() : UserUtil + user() : UserUtil
                                                                                                                                                              @@ -965,7 +874,7 @@

                                                                                                                                                              Return values
                                                                                                                                                              - UserUtil + UserUtil — diff --git a/files/src-accordion-accordionutil.html b/files/src-accordion-accordionutil.html new file mode 100644 index 00000000..89a4b565 --- /dev/null +++ b/files/src-accordion-accordionutil.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                              +

                                                                                                                                                              Contao Utils Bundle

                                                                                                                                                              + + + + + +
                                                                                                                                                              + +
                                                                                                                                                              +
                                                                                                                                                              + + + + +
                                                                                                                                                              +
                                                                                                                                                                +
                                                                                                                                                              + +
                                                                                                                                                              +

                                                                                                                                                              AccordionUtil.php

                                                                                                                                                              + + +
                                                                                                                                                              + + + + + + +

                                                                                                                                                              + Interfaces, Classes and Traits + +

                                                                                                                                                              + +
                                                                                                                                                              + +
                                                                                                                                                              AccordionUtil
                                                                                                                                                              +
                                                                                                                                                              + +
                                                                                                                                                              + + + + + + + + +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +

                                                                                                                                                              Search results

                                                                                                                                                              + +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                + + +
                                                                                                                                                                + + + + + + + + diff --git a/files/src-util-routingutil.html b/files/src-arrays-arrayutil.html similarity index 95% rename from files/src-util-routingutil.html rename to files/src-arrays-arrayutil.html index 2b32b416..10506283 100644 --- a/files/src-util-routingutil.html +++ b/files/src-arrays-arrayutil.html @@ -87,7 +87,7 @@

                                                                                                                                                                Fil
                                                                                                                                                                -

                                                                                                                                                                RoutingUtil.php

                                                                                                                                                                +

                                                                                                                                                                ArrayUtil.php

                                                                                                                                                                @@ -104,7 +104,7 @@

                                                                                                                                                                -
                                                                                                                                                                RoutingUtil
                                                                                                                                                                +
                                                                                                                                                                ArrayUtil
                                                                                                                                                                @@ -130,7 +130,7 @@

                                                                                                                                                                Search results

                                                                                                                                                                - + diff --git a/files/src-cache-databasecacheutil.html b/files/src-cache-databasecacheutil.html new file mode 100644 index 00000000..c856d8d2 --- /dev/null +++ b/files/src-cache-databasecacheutil.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                +

                                                                                                                                                                Contao Utils Bundle

                                                                                                                                                                + + + + + +
                                                                                                                                                                + +
                                                                                                                                                                +
                                                                                                                                                                + + + + +
                                                                                                                                                                +
                                                                                                                                                                  +
                                                                                                                                                                + +
                                                                                                                                                                +

                                                                                                                                                                DatabaseCacheUtil.php

                                                                                                                                                                + + +
                                                                                                                                                                + + + + + + +

                                                                                                                                                                + Interfaces, Classes and Traits + +

                                                                                                                                                                + +
                                                                                                                                                                + +
                                                                                                                                                                DatabaseCacheUtil
                                                                                                                                                                +
                                                                                                                                                                + +
                                                                                                                                                                + + + + + + + + +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                +

                                                                                                                                                                Search results

                                                                                                                                                                + +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  + + +
                                                                                                                                                                  + + + + + + + + diff --git a/files/src-cache-databasetreecache.html b/files/src-cache-databasetreecache.html new file mode 100644 index 00000000..55cae616 --- /dev/null +++ b/files/src-cache-databasetreecache.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                  +

                                                                                                                                                                  Contao Utils Bundle

                                                                                                                                                                  + + + + + +
                                                                                                                                                                  + +
                                                                                                                                                                  +
                                                                                                                                                                  + + + + +
                                                                                                                                                                  +
                                                                                                                                                                    +
                                                                                                                                                                  + +
                                                                                                                                                                  +

                                                                                                                                                                  DatabaseTreeCache.php

                                                                                                                                                                  + + +
                                                                                                                                                                  + + + + + + +

                                                                                                                                                                  + Interfaces, Classes and Traits + +

                                                                                                                                                                  + +
                                                                                                                                                                  + +
                                                                                                                                                                  DatabaseTreeCache
                                                                                                                                                                  +
                                                                                                                                                                  + +
                                                                                                                                                                  + + + + + + + + +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +

                                                                                                                                                                  Search results

                                                                                                                                                                  + +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + +
                                                                                                                                                                    + + + + + + + + diff --git a/files/src-cache-filecache.html b/files/src-cache-filecache.html new file mode 100644 index 00000000..803b47c9 --- /dev/null +++ b/files/src-cache-filecache.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                    +

                                                                                                                                                                    Contao Utils Bundle

                                                                                                                                                                    + + + + + +
                                                                                                                                                                    + +
                                                                                                                                                                    +
                                                                                                                                                                    + + + + +
                                                                                                                                                                    +
                                                                                                                                                                      +
                                                                                                                                                                    + +
                                                                                                                                                                    +

                                                                                                                                                                    FileCache.php

                                                                                                                                                                    + + +
                                                                                                                                                                    + + + + + + +

                                                                                                                                                                    + Interfaces, Classes and Traits + +

                                                                                                                                                                    + +
                                                                                                                                                                    + +
                                                                                                                                                                    FileCache
                                                                                                                                                                    +
                                                                                                                                                                    Class FileCache.
                                                                                                                                                                    + +
                                                                                                                                                                    + + + + + + + + +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +

                                                                                                                                                                    Search results

                                                                                                                                                                    + +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + + +
                                                                                                                                                                      + + + + + + + + diff --git a/files/src-cache-remoteimagecache.html b/files/src-cache-remoteimagecache.html new file mode 100644 index 00000000..9860c3d1 --- /dev/null +++ b/files/src-cache-remoteimagecache.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                      +

                                                                                                                                                                      Contao Utils Bundle

                                                                                                                                                                      + + + + + +
                                                                                                                                                                      + +
                                                                                                                                                                      +
                                                                                                                                                                      + + + + +
                                                                                                                                                                      +
                                                                                                                                                                        +
                                                                                                                                                                      + +
                                                                                                                                                                      +

                                                                                                                                                                      RemoteImageCache.php

                                                                                                                                                                      + + +
                                                                                                                                                                      + + + + + + +

                                                                                                                                                                      + Interfaces, Classes and Traits + +

                                                                                                                                                                      + +
                                                                                                                                                                      + +
                                                                                                                                                                      RemoteImageCache
                                                                                                                                                                      +
                                                                                                                                                                      + +
                                                                                                                                                                      + + + + + + + + +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +

                                                                                                                                                                      Search results

                                                                                                                                                                      + +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        + + +
                                                                                                                                                                        + + + + + + + + diff --git a/files/src-cache-utilcachewarmer.html b/files/src-cache-utilcachewarmer.html new file mode 100644 index 00000000..5b43e6e4 --- /dev/null +++ b/files/src-cache-utilcachewarmer.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                        +

                                                                                                                                                                        Contao Utils Bundle

                                                                                                                                                                        + + + + + +
                                                                                                                                                                        + +
                                                                                                                                                                        +
                                                                                                                                                                        + + + + +
                                                                                                                                                                        +
                                                                                                                                                                          +
                                                                                                                                                                        + +
                                                                                                                                                                        +

                                                                                                                                                                        UtilCacheWarmer.php

                                                                                                                                                                        + + +
                                                                                                                                                                        + + + + + + +

                                                                                                                                                                        + Interfaces, Classes and Traits + +

                                                                                                                                                                        + +
                                                                                                                                                                        + +
                                                                                                                                                                        UtilCacheWarmer
                                                                                                                                                                        +
                                                                                                                                                                        + +
                                                                                                                                                                        + + + + + + + + +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +

                                                                                                                                                                        Search results

                                                                                                                                                                        + +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          + + +
                                                                                                                                                                          + + + + + + + + diff --git a/files/src-choice-abstractchoice.html b/files/src-choice-abstractchoice.html new file mode 100644 index 00000000..2082b29b --- /dev/null +++ b/files/src-choice-abstractchoice.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                          +

                                                                                                                                                                          Contao Utils Bundle

                                                                                                                                                                          + + + + + +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          + + + + +
                                                                                                                                                                          +
                                                                                                                                                                            +
                                                                                                                                                                          + +
                                                                                                                                                                          +

                                                                                                                                                                          AbstractChoice.php

                                                                                                                                                                          + + +
                                                                                                                                                                          + + + + + + +

                                                                                                                                                                          + Interfaces, Classes and Traits + +

                                                                                                                                                                          + +
                                                                                                                                                                          + +
                                                                                                                                                                          AbstractChoice
                                                                                                                                                                          +
                                                                                                                                                                          + +
                                                                                                                                                                          + + + + + + + + +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          Search results

                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + + +
                                                                                                                                                                            + + + + + + + + diff --git a/files/src-staticutil-staticarrayutil.html b/files/src-choice-datacontainerchoice.html similarity index 95% rename from files/src-staticutil-staticarrayutil.html rename to files/src-choice-datacontainerchoice.html index d59171a9..42ae355b 100644 --- a/files/src-staticutil-staticarrayutil.html +++ b/files/src-choice-datacontainerchoice.html @@ -87,7 +87,7 @@

                                                                                                                                                                            Fil
                                                                                                                                                                            -

                                                                                                                                                                            StaticArrayUtil.php

                                                                                                                                                                            +

                                                                                                                                                                            DataContainerChoice.php

                                                                                                                                                                            @@ -104,7 +104,7 @@

                                                                                                                                                                            -
                                                                                                                                                                            StaticArrayUtil
                                                                                                                                                                            +
                                                                                                                                                                            DataContainerChoice
                                                                                                                                                                            @@ -130,7 +130,7 @@

                                                                                                                                                                            Search results

                                                                                                                                                                            - + diff --git a/files/src-choice-fieldchoice.html b/files/src-choice-fieldchoice.html new file mode 100644 index 00000000..a1f05769 --- /dev/null +++ b/files/src-choice-fieldchoice.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                            +

                                                                                                                                                                            Contao Utils Bundle

                                                                                                                                                                            + + + + + +
                                                                                                                                                                            + +
                                                                                                                                                                            +
                                                                                                                                                                            + + + + +
                                                                                                                                                                            +
                                                                                                                                                                              +
                                                                                                                                                                            + +
                                                                                                                                                                            +

                                                                                                                                                                            FieldChoice.php

                                                                                                                                                                            + + +
                                                                                                                                                                            + + + + + + +

                                                                                                                                                                            + Interfaces, Classes and Traits + +

                                                                                                                                                                            + +
                                                                                                                                                                            + +
                                                                                                                                                                            FieldChoice
                                                                                                                                                                            +
                                                                                                                                                                            + +
                                                                                                                                                                            + + + + + + + + +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +

                                                                                                                                                                            Search results

                                                                                                                                                                            + +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + +
                                                                                                                                                                              + + + + + + + + diff --git a/files/src-choice-messagechoice.html b/files/src-choice-messagechoice.html new file mode 100644 index 00000000..9c15356d --- /dev/null +++ b/files/src-choice-messagechoice.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                              +

                                                                                                                                                                              Contao Utils Bundle

                                                                                                                                                                              + + + + + +
                                                                                                                                                                              + +
                                                                                                                                                                              +
                                                                                                                                                                              + + + + +
                                                                                                                                                                              +
                                                                                                                                                                                +
                                                                                                                                                                              + +
                                                                                                                                                                              +

                                                                                                                                                                              MessageChoice.php

                                                                                                                                                                              + + +
                                                                                                                                                                              + + + + + + +

                                                                                                                                                                              + Interfaces, Classes and Traits + +

                                                                                                                                                                              + +
                                                                                                                                                                              + +
                                                                                                                                                                              MessageChoice
                                                                                                                                                                              +
                                                                                                                                                                              + +
                                                                                                                                                                              + + + + + + + + +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +

                                                                                                                                                                              Search results

                                                                                                                                                                              + +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + +
                                                                                                                                                                                + + + + + + + + diff --git a/files/src-staticutil-staticclassutil.html b/files/src-choice-modelinstancechoice.html similarity index 95% rename from files/src-staticutil-staticclassutil.html rename to files/src-choice-modelinstancechoice.html index 85e79e7b..0334793e 100644 --- a/files/src-staticutil-staticclassutil.html +++ b/files/src-choice-modelinstancechoice.html @@ -87,7 +87,7 @@

                                                                                                                                                                                Fil
                                                                                                                                                                                -

                                                                                                                                                                                StaticClassUtil.php

                                                                                                                                                                                +

                                                                                                                                                                                ModelInstanceChoice.php

                                                                                                                                                                                @@ -104,7 +104,7 @@

                                                                                                                                                                                -
                                                                                                                                                                                StaticClassUtil
                                                                                                                                                                                +
                                                                                                                                                                                ModelInstanceChoice
                                                                                                                                                                                @@ -130,7 +130,7 @@

                                                                                                                                                                                Search results

                                                                                                                                                                                - + diff --git a/files/src-choice-twigtemplatechoice.html b/files/src-choice-twigtemplatechoice.html new file mode 100644 index 00000000..d915898b --- /dev/null +++ b/files/src-choice-twigtemplatechoice.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                +

                                                                                                                                                                                Contao Utils Bundle

                                                                                                                                                                                + + + + + +
                                                                                                                                                                                + +
                                                                                                                                                                                +
                                                                                                                                                                                + + + + +
                                                                                                                                                                                +
                                                                                                                                                                                  +
                                                                                                                                                                                + +
                                                                                                                                                                                +

                                                                                                                                                                                TwigTemplateChoice.php

                                                                                                                                                                                + + +
                                                                                                                                                                                + + + + + + +

                                                                                                                                                                                + Interfaces, Classes and Traits + +

                                                                                                                                                                                + +
                                                                                                                                                                                + +
                                                                                                                                                                                TwigTemplateChoice
                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                + + + + + + + + +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +

                                                                                                                                                                                Search results

                                                                                                                                                                                + +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  + + +
                                                                                                                                                                                  + + + + + + + + diff --git a/files/src-classes-classutil.html b/files/src-classes-classutil.html new file mode 100644 index 00000000..f12f183b --- /dev/null +++ b/files/src-classes-classutil.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                  +

                                                                                                                                                                                  Contao Utils Bundle

                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                  + +
                                                                                                                                                                                  +
                                                                                                                                                                                  + + + + +
                                                                                                                                                                                  +
                                                                                                                                                                                    +
                                                                                                                                                                                  + +
                                                                                                                                                                                  +

                                                                                                                                                                                  ClassUtil.php

                                                                                                                                                                                  + + +
                                                                                                                                                                                  + + + + + + +

                                                                                                                                                                                  + Interfaces, Classes and Traits + +

                                                                                                                                                                                  + +
                                                                                                                                                                                  + +
                                                                                                                                                                                  ClassUtil
                                                                                                                                                                                  +
                                                                                                                                                                                  + +
                                                                                                                                                                                  + + + + + + + + +
                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  +

                                                                                                                                                                                  Search results

                                                                                                                                                                                  + +
                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                    + + +
                                                                                                                                                                                    + + + + + + + + diff --git a/files/src-command-createimagesizeitemscommand.html b/files/src-command-createimagesizeitemscommand.html new file mode 100644 index 00000000..211ec2b0 --- /dev/null +++ b/files/src-command-createimagesizeitemscommand.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                    +

                                                                                                                                                                                    Contao Utils Bundle

                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                    + +
                                                                                                                                                                                    +
                                                                                                                                                                                    + + + + +
                                                                                                                                                                                    +
                                                                                                                                                                                      +
                                                                                                                                                                                    + +
                                                                                                                                                                                    +

                                                                                                                                                                                    CreateImageSizeItemsCommand.php

                                                                                                                                                                                    + + +
                                                                                                                                                                                    + + + + + + +

                                                                                                                                                                                    + Interfaces, Classes and Traits + +

                                                                                                                                                                                    + +
                                                                                                                                                                                    + +
                                                                                                                                                                                    CreateImageSizeItemsCommand
                                                                                                                                                                                    +
                                                                                                                                                                                    + +
                                                                                                                                                                                    + + + + + + + + +
                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                    +

                                                                                                                                                                                    Search results

                                                                                                                                                                                    + +
                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      + + +
                                                                                                                                                                                      + + + + + + + + diff --git a/files/src-comparison-compareutil.html b/files/src-comparison-compareutil.html new file mode 100644 index 00000000..0ad1c466 --- /dev/null +++ b/files/src-comparison-compareutil.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                      +

                                                                                                                                                                                      Contao Utils Bundle

                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                      + +
                                                                                                                                                                                      +
                                                                                                                                                                                      + + + + +
                                                                                                                                                                                      +
                                                                                                                                                                                        +
                                                                                                                                                                                      + +
                                                                                                                                                                                      +

                                                                                                                                                                                      CompareUtil.php

                                                                                                                                                                                      + + +
                                                                                                                                                                                      + + + + + + +

                                                                                                                                                                                      + Interfaces, Classes and Traits + +

                                                                                                                                                                                      + +
                                                                                                                                                                                      + +
                                                                                                                                                                                      CompareUtil
                                                                                                                                                                                      +
                                                                                                                                                                                      + +
                                                                                                                                                                                      + + + + + + + + +
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      +

                                                                                                                                                                                      Search results

                                                                                                                                                                                      + +
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        + + +
                                                                                                                                                                                        + + + + + + + + diff --git a/files/src-container-containerutil.html b/files/src-container-containerutil.html new file mode 100644 index 00000000..7fc6c719 --- /dev/null +++ b/files/src-container-containerutil.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                        +

                                                                                                                                                                                        Contao Utils Bundle

                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                        + +
                                                                                                                                                                                        +
                                                                                                                                                                                        + + + + +
                                                                                                                                                                                        +
                                                                                                                                                                                          +
                                                                                                                                                                                        + +
                                                                                                                                                                                        +

                                                                                                                                                                                        ContainerUtil.php

                                                                                                                                                                                        + + +
                                                                                                                                                                                        + + + + + + +

                                                                                                                                                                                        + Interfaces, Classes and Traits + +

                                                                                                                                                                                        + +
                                                                                                                                                                                        + +
                                                                                                                                                                                        ContainerUtil
                                                                                                                                                                                        +
                                                                                                                                                                                        Class ContainerUtil.
                                                                                                                                                                                        + +
                                                                                                                                                                                        + + + + + + + + +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +

                                                                                                                                                                                        Search results

                                                                                                                                                                                        + +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + +
                                                                                                                                                                                          + + + + + + + + diff --git a/files/src-content-contentutil.html b/files/src-content-contentutil.html new file mode 100644 index 00000000..7bd40da8 --- /dev/null +++ b/files/src-content-contentutil.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                          +

                                                                                                                                                                                          Contao Utils Bundle

                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                            +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +

                                                                                                                                                                                          ContentUtil.php

                                                                                                                                                                                          + + +
                                                                                                                                                                                          + + + + + + +

                                                                                                                                                                                          + Interfaces, Classes and Traits + +

                                                                                                                                                                                          + +
                                                                                                                                                                                          + +
                                                                                                                                                                                          ContentUtil
                                                                                                                                                                                          +
                                                                                                                                                                                          + +
                                                                                                                                                                                          + + + + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          Search results

                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                            +
                                                                                                                                                                                            +
                                                                                                                                                                                            +
                                                                                                                                                                                            +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + +
                                                                                                                                                                                            + + + + + + + + diff --git a/files/src-database-databaseutil.html b/files/src-database-databaseutil.html new file mode 100644 index 00000000..fe6d0066 --- /dev/null +++ b/files/src-database-databaseutil.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                            +

                                                                                                                                                                                            Contao Utils Bundle

                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + + + +
                                                                                                                                                                                            +
                                                                                                                                                                                              +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +

                                                                                                                                                                                            DatabaseUtil.php

                                                                                                                                                                                            + + +
                                                                                                                                                                                            + + + + + + +

                                                                                                                                                                                            + Interfaces, Classes and Traits + +

                                                                                                                                                                                            + +
                                                                                                                                                                                            + +
                                                                                                                                                                                            DatabaseUtil
                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            + + + + + + + + +
                                                                                                                                                                                            +
                                                                                                                                                                                            +
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            Search results

                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              + + +
                                                                                                                                                                                              + + + + + + + + diff --git a/files/src-util-htmlutil.html b/files/src-date-dateutil.html similarity index 95% rename from files/src-util-htmlutil.html rename to files/src-date-dateutil.html index 00a33e91..9e617d0a 100644 --- a/files/src-util-htmlutil.html +++ b/files/src-date-dateutil.html @@ -87,7 +87,7 @@

                                                                                                                                                                                              Fil
                                                                                                                                                                                              -

                                                                                                                                                                                              HtmlUtil.php

                                                                                                                                                                                              +

                                                                                                                                                                                              DateUtil.php

                                                                                                                                                                                              @@ -104,7 +104,7 @@

                                                                                                                                                                                              -
                                                                                                                                                                                              HtmlUtil
                                                                                                                                                                                              +
                                                                                                                                                                                              DateUtil
                                                                                                                                                                                              @@ -130,7 +130,7 @@

                                                                                                                                                                                              Search results

                                                                                                                                                                                              - + diff --git a/files/src-util-dcautil.html b/files/src-dca-dcautil.html similarity index 95% rename from files/src-util-dcautil.html rename to files/src-dca-dcautil.html index f15f5747..eed6f104 100644 --- a/files/src-util-dcautil.html +++ b/files/src-dca-dcautil.html @@ -104,7 +104,7 @@

                                                                                                                                                                                              -
                                                                                                                                                                                              DcaUtil
                                                                                                                                                                                              +
                                                                                                                                                                                              DcaUtil
                                                                                                                                                                                              @@ -130,7 +130,7 @@

                                                                                                                                                                                              Search results

                                                                                                                                                                                              - + diff --git a/files/src-dependencyinjection-configuration.html b/files/src-dependencyinjection-configuration.html new file mode 100644 index 00000000..32258893 --- /dev/null +++ b/files/src-dependencyinjection-configuration.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                              +

                                                                                                                                                                                              Contao Utils Bundle

                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                              + +
                                                                                                                                                                                              +
                                                                                                                                                                                              + + + + +
                                                                                                                                                                                              +
                                                                                                                                                                                                +
                                                                                                                                                                                              + +
                                                                                                                                                                                              +

                                                                                                                                                                                              Configuration.php

                                                                                                                                                                                              + + +
                                                                                                                                                                                              + + + + + + +

                                                                                                                                                                                              + Interfaces, Classes and Traits + +

                                                                                                                                                                                              + +
                                                                                                                                                                                              + +
                                                                                                                                                                                              Configuration
                                                                                                                                                                                              +
                                                                                                                                                                                              + +
                                                                                                                                                                                              + + + + + + + + +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              +

                                                                                                                                                                                              Search results

                                                                                                                                                                                              + +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + +
                                                                                                                                                                                                + + + + + + + + diff --git a/files/src-dependencyinjection-heimrichhannotutilsextension.html b/files/src-dependencyinjection-heimrichhannotutilsextension.html new file mode 100644 index 00000000..ccbcee14 --- /dev/null +++ b/files/src-dependencyinjection-heimrichhannotutilsextension.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                +

                                                                                                                                                                                                Contao Utils Bundle

                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                + +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                  +
                                                                                                                                                                                                + +
                                                                                                                                                                                                +

                                                                                                                                                                                                HeimrichHannotUtilsExtension.php

                                                                                                                                                                                                + + +
                                                                                                                                                                                                + + + + + + +

                                                                                                                                                                                                + Interfaces, Classes and Traits + +

                                                                                                                                                                                                + +
                                                                                                                                                                                                + +
                                                                                                                                                                                                HeimrichHannotUtilsExtension
                                                                                                                                                                                                +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                Search results

                                                                                                                                                                                                + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + + +
                                                                                                                                                                                                  + + + + + + + + diff --git a/files/src-dependencyinjection-utilsbundleextension.html b/files/src-dependencyinjection-utilsbundleextension.html new file mode 100644 index 00000000..5a6e555c --- /dev/null +++ b/files/src-dependencyinjection-utilsbundleextension.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                  +

                                                                                                                                                                                                  Contao Utils Bundle

                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                  + +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                  +
                                                                                                                                                                                                    +
                                                                                                                                                                                                  + +
                                                                                                                                                                                                  +

                                                                                                                                                                                                  UtilsBundleExtension.php

                                                                                                                                                                                                  + + +
                                                                                                                                                                                                  + + + + + + +

                                                                                                                                                                                                  + Interfaces, Classes and Traits + +

                                                                                                                                                                                                  + +
                                                                                                                                                                                                  + +
                                                                                                                                                                                                  UtilsBundleExtension
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + +
                                                                                                                                                                                                  + + + + + + + + +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +

                                                                                                                                                                                                  Search results

                                                                                                                                                                                                  + +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    + + +
                                                                                                                                                                                                    + + + + + + + + diff --git a/files/src-dom-domlettersiterator.html b/files/src-dom-domlettersiterator.html index 36096d54..565157ec 100644 --- a/files/src-dom-domlettersiterator.html +++ b/files/src-dom-domlettersiterator.html @@ -90,27 +90,25 @@

                                                                                                                                                                                                    Fil

                                                                                                                                                                                                    DOMLettersIterator.php

                                                                                                                                                                                                    +
                                                                                                                                                                                                    -
                                                                                                                                                                                                    - Tags - -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    - noinspection -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    - -

                                                                                                                                                                                                    PhpComposerExtensionStubsInspection

                                                                                                                                                                                                    -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    +

                                                                                                                                                                                                    + Interfaces, Classes and Traits + +

                                                                                                                                                                                                    +
                                                                                                                                                                                                    + +
                                                                                                                                                                                                    DOMLettersIterator
                                                                                                                                                                                                    +
                                                                                                                                                                                                    Iterates individual characters (Unicode codepoints) of DOM text and CDATA nodes +while keeping track of their position in the document.
                                                                                                                                                                                                    + +
                                                                                                                                                                                                    diff --git a/files/src-driver-dc-table-utils.html b/files/src-driver-dc-table-utils.html new file mode 100644 index 00000000..00ce068e --- /dev/null +++ b/files/src-driver-dc-table-utils.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                    +

                                                                                                                                                                                                    Contao Utils Bundle

                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                    + +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                    +
                                                                                                                                                                                                      +
                                                                                                                                                                                                    + +
                                                                                                                                                                                                    +

                                                                                                                                                                                                    DC_Table_Utils.php

                                                                                                                                                                                                    + + +
                                                                                                                                                                                                    + + + + + + +

                                                                                                                                                                                                    + Interfaces, Classes and Traits + +

                                                                                                                                                                                                    + +
                                                                                                                                                                                                    + +
                                                                                                                                                                                                    DC_Table_Utils
                                                                                                                                                                                                    +
                                                                                                                                                                                                    + +
                                                                                                                                                                                                    + + + + + + + + +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +

                                                                                                                                                                                                    Search results

                                                                                                                                                                                                    + +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + +
                                                                                                                                                                                                      + + + + + + + + diff --git a/files/src-event-abstractevent.html b/files/src-event-abstractevent.html new file mode 100644 index 00000000..3b465fd8 --- /dev/null +++ b/files/src-event-abstractevent.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                      +

                                                                                                                                                                                                      Contao Utils Bundle

                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                      + +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                      +
                                                                                                                                                                                                        +
                                                                                                                                                                                                      + +
                                                                                                                                                                                                      +

                                                                                                                                                                                                      AbstractEvent.php

                                                                                                                                                                                                      + + +
                                                                                                                                                                                                      + + + + + + +

                                                                                                                                                                                                      + Interfaces, Classes and Traits + +

                                                                                                                                                                                                      + +
                                                                                                                                                                                                      + +
                                                                                                                                                                                                      AbstractEvent
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + +
                                                                                                                                                                                                      + + + + + + + + +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +

                                                                                                                                                                                                      Search results

                                                                                                                                                                                                      + +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + + +
                                                                                                                                                                                                        + + + + + + + + diff --git a/files/src-event-rendertwigtemplateevent.html b/files/src-event-rendertwigtemplateevent.html new file mode 100644 index 00000000..abc9098a --- /dev/null +++ b/files/src-event-rendertwigtemplateevent.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                        +

                                                                                                                                                                                                        Contao Utils Bundle

                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                        + +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                        +
                                                                                                                                                                                                          +
                                                                                                                                                                                                        + +
                                                                                                                                                                                                        +

                                                                                                                                                                                                        RenderTwigTemplateEvent.php

                                                                                                                                                                                                        + + +
                                                                                                                                                                                                        + + + + + + +

                                                                                                                                                                                                        + Interfaces, Classes and Traits + +

                                                                                                                                                                                                        + +
                                                                                                                                                                                                        + +
                                                                                                                                                                                                        RenderTwigTemplateEvent
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + +
                                                                                                                                                                                                        + + + + + + + + +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +

                                                                                                                                                                                                        Search results

                                                                                                                                                                                                        + +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + +
                                                                                                                                                                                                          + + + + + + + + diff --git a/files/src-eventlistener-initializesystemlistener.html b/files/src-eventlistener-initializesystemlistener.html new file mode 100644 index 00000000..0a451122 --- /dev/null +++ b/files/src-eventlistener-initializesystemlistener.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                          +

                                                                                                                                                                                                          Contao Utils Bundle

                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                            +
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          +

                                                                                                                                                                                                          InitializeSystemListener.php

                                                                                                                                                                                                          + + +
                                                                                                                                                                                                          + + + + + + +

                                                                                                                                                                                                          + Interfaces, Classes and Traits + +

                                                                                                                                                                                                          + +
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          InitializeSystemListener
                                                                                                                                                                                                          +
                                                                                                                                                                                                          Hook("initializeSystem").
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          + + + + + + + + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +

                                                                                                                                                                                                          Search results

                                                                                                                                                                                                          + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + +
                                                                                                                                                                                                            + + + + + + + + diff --git a/files/src-util-dcautil-getdcafieldsoptions.html b/files/src-eventlistener-inserttagslistener.html similarity index 95% rename from files/src-util-dcautil-getdcafieldsoptions.html rename to files/src-eventlistener-inserttagslistener.html index 949082f1..34bb5f8e 100644 --- a/files/src-util-dcautil-getdcafieldsoptions.html +++ b/files/src-eventlistener-inserttagslistener.html @@ -87,7 +87,7 @@

                                                                                                                                                                                                            Fil
                                                                                                                                                                                                            -

                                                                                                                                                                                                            GetDcaFieldsOptions.php

                                                                                                                                                                                                            +

                                                                                                                                                                                                            InsertTagsListener.php

                                                                                                                                                                                                            @@ -104,7 +104,7 @@

                                                                                                                                                                                                            -
                                                                                                                                                                                                            GetDcaFieldsOptions
                                                                                                                                                                                                            +
                                                                                                                                                                                                            InsertTagsListener
                                                                                                                                                                                                            @@ -130,7 +130,7 @@

                                                                                                                                                                                                            Search results

                                                                                                                                                                                                            - + diff --git a/files/src-file-filearchiveutil.html b/files/src-file-filearchiveutil.html new file mode 100644 index 00000000..a97a36fc --- /dev/null +++ b/files/src-file-filearchiveutil.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            Contao Utils Bundle

                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                              +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            FileArchiveUtil.php

                                                                                                                                                                                                            + + +
                                                                                                                                                                                                            + + + + + + +

                                                                                                                                                                                                            + Interfaces, Classes and Traits + +

                                                                                                                                                                                                            + +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            FileArchiveUtil
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            + + + + + + + + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            Search results

                                                                                                                                                                                                            + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + + +
                                                                                                                                                                                                              + + + + + + + + diff --git a/files/src-util-requestutil.html b/files/src-file-filestorage.html similarity index 95% rename from files/src-util-requestutil.html rename to files/src-file-filestorage.html index 9578a428..b988f171 100644 --- a/files/src-util-requestutil.html +++ b/files/src-file-filestorage.html @@ -87,7 +87,7 @@

                                                                                                                                                                                                              Fil
                                                                                                                                                                                                              -

                                                                                                                                                                                                              RequestUtil.php

                                                                                                                                                                                                              +

                                                                                                                                                                                                              FileStorage.php

                                                                                                                                                                                                              @@ -104,7 +104,7 @@

                                                                                                                                                                                                              -
                                                                                                                                                                                                              RequestUtil
                                                                                                                                                                                                              +
                                                                                                                                                                                                              FileStorage
                                                                                                                                                                                                              @@ -130,7 +130,7 @@

                                                                                                                                                                                                              Search results

                                                                                                                                                                                                              - + diff --git a/files/src-file-filestoragecallback.html b/files/src-file-filestoragecallback.html new file mode 100644 index 00000000..b37b4c54 --- /dev/null +++ b/files/src-file-filestoragecallback.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                              +

                                                                                                                                                                                                              Contao Utils Bundle

                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                              + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                                +
                                                                                                                                                                                                              + +
                                                                                                                                                                                                              +

                                                                                                                                                                                                              FileStorageCallback.php

                                                                                                                                                                                                              + + +
                                                                                                                                                                                                              + + + + + + +

                                                                                                                                                                                                              + Interfaces, Classes and Traits + +

                                                                                                                                                                                                              + +
                                                                                                                                                                                                              + +
                                                                                                                                                                                                              FileStorageCallback
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + +
                                                                                                                                                                                                              + + + + + + + + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +

                                                                                                                                                                                                              Search results

                                                                                                                                                                                                              + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                + + + + + + + + diff --git a/files/src-file-filestorageutil.html b/files/src-file-filestorageutil.html new file mode 100644 index 00000000..4a267feb --- /dev/null +++ b/files/src-file-filestorageutil.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                +

                                                                                                                                                                                                                Contao Utils Bundle

                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                + +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                + +
                                                                                                                                                                                                                +

                                                                                                                                                                                                                FileStorageUtil.php

                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                + + + + + + +

                                                                                                                                                                                                                + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                + +
                                                                                                                                                                                                                + +
                                                                                                                                                                                                                FileStorageUtil
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + +
                                                                                                                                                                                                                + + + + + + + + +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +

                                                                                                                                                                                                                Search results

                                                                                                                                                                                                                + +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                  + + + + + + + + diff --git a/files/src-util-fileutil.html b/files/src-file-fileutil.html similarity index 97% rename from files/src-util-fileutil.html rename to files/src-file-fileutil.html index d69562f0..e7fcc642 100644 --- a/files/src-util-fileutil.html +++ b/files/src-file-fileutil.html @@ -104,7 +104,7 @@

                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  FileUtil
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  FileUtil
                                                                                                                                                                                                                  @@ -130,7 +130,7 @@

                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                  - + diff --git a/files/src-util-localeutil.html b/files/src-file-folderutil.html similarity index 95% rename from files/src-util-localeutil.html rename to files/src-file-folderutil.html index 8153f207..6bf8a5b7 100644 --- a/files/src-util-localeutil.html +++ b/files/src-file-folderutil.html @@ -87,7 +87,7 @@

                                                                                                                                                                                                                  Fil
                                                                                                                                                                                                                  -

                                                                                                                                                                                                                  LocaleUtil.php

                                                                                                                                                                                                                  +

                                                                                                                                                                                                                  FolderUtil.php

                                                                                                                                                                                                                  @@ -104,7 +104,7 @@

                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  LocaleUtil
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  FolderUtil
                                                                                                                                                                                                                  @@ -130,7 +130,7 @@

                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                  - + diff --git a/files/src-form-formutil.html b/files/src-form-formutil.html new file mode 100644 index 00000000..557d6e20 --- /dev/null +++ b/files/src-form-formutil.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                  +

                                                                                                                                                                                                                  Contao Utils Bundle

                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                  +

                                                                                                                                                                                                                  FormUtil.php

                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                  + + + + + + +

                                                                                                                                                                                                                  + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                  FormUtil
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  Class FormUtil.
                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                  + + + + + + + + +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +

                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                    + + + + + + + + diff --git a/files/src-heimrichhannotcontaoutilsbundle.html b/files/src-heimrichhannotcontaoutilsbundle.html new file mode 100644 index 00000000..24e1c1a9 --- /dev/null +++ b/files/src-heimrichhannotcontaoutilsbundle.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                    +

                                                                                                                                                                                                                    Contao Utils Bundle

                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                    +

                                                                                                                                                                                                                    HeimrichHannotContaoUtilsBundle.php

                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                    + + + + + + +

                                                                                                                                                                                                                    + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                    HeimrichHannotContaoUtilsBundle
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                    + + + + + + + + +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +

                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      + + + + + + + + diff --git a/files/src-ics-icsutil.html b/files/src-ics-icsutil.html new file mode 100644 index 00000000..de15f035 --- /dev/null +++ b/files/src-ics-icsutil.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      Contao Utils Bundle

                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      IcsUtil.php

                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      + + + + + + +

                                                                                                                                                                                                                      + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      IcsUtil
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      Search results

                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                        + + + + + + + + diff --git a/files/src-util-stringutil.html b/files/src-image-imageutil.html similarity index 95% rename from files/src-util-stringutil.html rename to files/src-image-imageutil.html index 7d027546..83b12499 100644 --- a/files/src-util-stringutil.html +++ b/files/src-image-imageutil.html @@ -87,7 +87,7 @@

                                                                                                                                                                                                                        Fil
                                                                                                                                                                                                                        -

                                                                                                                                                                                                                        StringUtil.php

                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        ImageUtil.php

                                                                                                                                                                                                                        @@ -104,7 +104,7 @@

                                                                                                                                                                                                                        -
                                                                                                                                                                                                                        StringUtil
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        ImageUtil
                                                                                                                                                                                                                        @@ -130,7 +130,7 @@

                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                        - + diff --git a/files/src-location-locationutil.html b/files/src-location-locationutil.html new file mode 100644 index 00000000..f9ea820c --- /dev/null +++ b/files/src-location-locationutil.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        Contao Utils Bundle

                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        LocationUtil.php

                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                        + + + + + + +

                                                                                                                                                                                                                        + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                        LocationUtil
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                        + + + + + + + + +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                          + + + + + + + + diff --git a/files/src-member-memberutil.html b/files/src-member-memberutil.html new file mode 100644 index 00000000..7a34179e --- /dev/null +++ b/files/src-member-memberutil.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                          +

                                                                                                                                                                                                                          Contao Utils Bundle

                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                          +

                                                                                                                                                                                                                          MemberUtil.php

                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                          + + + + + + +

                                                                                                                                                                                                                          + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                          MemberUtil
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                          + + + + + + + + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +

                                                                                                                                                                                                                          Search results

                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                            + + + + + + + + diff --git a/files/src-model-cfgtagmodel.html b/files/src-model-cfgtagmodel.html new file mode 100644 index 00000000..e8216b41 --- /dev/null +++ b/files/src-model-cfgtagmodel.html @@ -0,0 +1,147 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                            +

                                                                                                                                                                                                                            Contao Utils Bundle

                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                            +

                                                                                                                                                                                                                            CfgTagModel.php

                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                            + + + + + + +

                                                                                                                                                                                                                            + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                            TagModelBase
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            CfgTagModel
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                            + + + + + + + + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +

                                                                                                                                                                                                                            Search results

                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                              + + + + + + + + diff --git a/files/src-util-modelutil.html b/files/src-model-modelutil.html similarity index 95% rename from files/src-util-modelutil.html rename to files/src-model-modelutil.html index 1903905d..07021858 100644 --- a/files/src-util-modelutil.html +++ b/files/src-model-modelutil.html @@ -104,7 +104,7 @@

                                                                                                                                                                                                                              -
                                                                                                                                                                                                                              ModelUtil
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              ModelUtil
                                                                                                                                                                                                                              @@ -130,7 +130,7 @@

                                                                                                                                                                                                                              Search results

                                                                                                                                                                                                                              - + diff --git a/files/src-module-moduleutil.html b/files/src-module-moduleutil.html new file mode 100644 index 00000000..fd3a6e6c --- /dev/null +++ b/files/src-module-moduleutil.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              Contao Utils Bundle

                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              ModuleUtil.php

                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                              + + + + + + +

                                                                                                                                                                                                                              + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              ModuleUtil
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + + + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              Search results

                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                + + + + + + + + diff --git a/files/src-page-pageutil.html b/files/src-page-pageutil.html new file mode 100644 index 00000000..0cffbe93 --- /dev/null +++ b/files/src-page-pageutil.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                Contao Utils Bundle

                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                PageUtil.php

                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                + + + + + + +

                                                                                                                                                                                                                                + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                PageUtil
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + + + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                Search results

                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                  + + + + + + + + diff --git a/files/src-pagination-textualpagination.html b/files/src-pagination-textualpagination.html new file mode 100644 index 00000000..89eb76e5 --- /dev/null +++ b/files/src-pagination-textualpagination.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  Contao Utils Bundle

                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  TextualPagination.php

                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                  + + + + + + +

                                                                                                                                                                                                                                  + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  TextualPagination
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + + + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                    + + + + + + + + diff --git a/files/src-pdf-abstractpdfwriter.html b/files/src-pdf-abstractpdfwriter.html new file mode 100644 index 00000000..233ec187 --- /dev/null +++ b/files/src-pdf-abstractpdfwriter.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                    Contao Utils Bundle

                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                    AbstractPdfWriter.php

                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                    + + + + + + +

                                                                                                                                                                                                                                    + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                    AbstractPdfWriter
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    Class AbstractPdfWriter.
                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                    + + + + + + + + +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                      + + + + + + + + diff --git a/files/src-pdf-fpdiwriter.html b/files/src-pdf-fpdiwriter.html new file mode 100644 index 00000000..4aa30291 --- /dev/null +++ b/files/src-pdf-fpdiwriter.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                      Contao Utils Bundle

                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                      FPDIWriter.php

                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                      + + + + + + +

                                                                                                                                                                                                                                      + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                      FPDIWriter
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      Class AbstractPdfWriter.
                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                      + + + + + + + + +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                      Search results

                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                        + + + + + + + + diff --git a/files/src-util-arrayutil.html b/files/src-pdf-pdfpreview.html similarity index 95% rename from files/src-util-arrayutil.html rename to files/src-pdf-pdfpreview.html index efbfa11c..2a4c0191 100644 --- a/files/src-util-arrayutil.html +++ b/files/src-pdf-pdfpreview.html @@ -87,7 +87,7 @@

                                                                                                                                                                                                                                        Fil
                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                        ArrayUtil.php

                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                        PdfPreview.php

                                                                                                                                                                                                                                        @@ -104,7 +104,7 @@

                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                        ArrayUtil
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        PdfPreview
                                                                                                                                                                                                                                        @@ -130,7 +130,7 @@

                                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                                        - + diff --git a/files/src-pdf-pdfwriter.html b/files/src-pdf-pdfwriter.html new file mode 100644 index 00000000..44784537 --- /dev/null +++ b/files/src-pdf-pdfwriter.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                        Contao Utils Bundle

                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                        PdfWriter.php

                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                        + + + + + + +

                                                                                                                                                                                                                                        + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                        PdfWriter
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        Class PdfWriter.
                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                        + + + + + + + + +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                          + + + + + + + + diff --git a/files/src-pdfcreator-abstractpdfcreator.html b/files/src-pdfcreator-abstractpdfcreator.html new file mode 100644 index 00000000..26b9e057 --- /dev/null +++ b/files/src-pdfcreator-abstractpdfcreator.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                          Contao Utils Bundle

                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                          AbstractPdfCreator.php

                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                          + + + + + + +

                                                                                                                                                                                                                                          + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                          AbstractPdfCreator
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          Class AbstractPdfCreator.
                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                          + + + + + + + + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                          Search results

                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                            + + + + + + + + diff --git a/files/src-pdfcreator-beforecreatelibraryinstancecallback.html b/files/src-pdfcreator-beforecreatelibraryinstancecallback.html new file mode 100644 index 00000000..e11628cc --- /dev/null +++ b/files/src-pdfcreator-beforecreatelibraryinstancecallback.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            Contao Utils Bundle

                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            BeforeCreateLibraryInstanceCallback.php

                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                            + + + + + + +

                                                                                                                                                                                                                                            + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            BeforeCreateLibraryInstanceCallback
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Class BeforeCreateLibraryInstanceCallback.
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + + + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            Search results

                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                              + + + + + + + + diff --git a/files/src-pdfcreator-beforeoutputpdfcallback.html b/files/src-pdfcreator-beforeoutputpdfcallback.html new file mode 100644 index 00000000..209a9a0d --- /dev/null +++ b/files/src-pdfcreator-beforeoutputpdfcallback.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              Contao Utils Bundle

                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              BeforeOutputPdfCallback.php

                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                              + + + + + + +

                                                                                                                                                                                                                                              + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              BeforeOutputPdfCallback
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              Class BeforeOutputPdfCallback.
                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              + + + + + + + + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              Search results

                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                + + + + + + + + diff --git a/files/src-pdfcreator-concrete-mpdfcreator.html b/files/src-pdfcreator-concrete-mpdfcreator.html new file mode 100644 index 00000000..4b102b17 --- /dev/null +++ b/files/src-pdfcreator-concrete-mpdfcreator.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                Contao Utils Bundle

                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                MpdfCreator.php

                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                + + + + + + +

                                                                                                                                                                                                                                                + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                MpdfCreator
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                Class MpdfCreator.
                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                + + + + + + + + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                Search results

                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                  + + + + + + + + diff --git a/files/src-pdfcreator-pdfcreatorfactory.html b/files/src-pdfcreator-pdfcreatorfactory.html new file mode 100644 index 00000000..ebf6455b --- /dev/null +++ b/files/src-pdfcreator-pdfcreatorfactory.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                  Contao Utils Bundle

                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                  PdfCreatorFactory.php

                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                  + + + + + + +

                                                                                                                                                                                                                                                  + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  PdfCreatorFactory
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  Class PdfCreatorFactory.
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  + + + + + + + + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                    + + + + + + + + diff --git a/files/src-request-curlrequest.html b/files/src-request-curlrequest.html new file mode 100644 index 00000000..dae8bc1d --- /dev/null +++ b/files/src-request-curlrequest.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    Contao Utils Bundle

                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    CurlRequest.php

                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                    + + + + + + +

                                                                                                                                                                                                                                                    + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    CurlRequest
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + + + + + + + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                      + + + + + + + + diff --git a/files/src-request-curlrequestutil.html b/files/src-request-curlrequestutil.html new file mode 100644 index 00000000..e276eb9f --- /dev/null +++ b/files/src-request-curlrequestutil.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                      Contao Utils Bundle

                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                      CurlRequestUtil.php

                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                      + + + + + + +

                                                                                                                                                                                                                                                      + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                      CurlRequestUtil
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                      + + + + + + + + +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                      Search results

                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                        + + + + + + + + diff --git a/files/src-request-httprequestinterface.html b/files/src-request-httprequestinterface.html new file mode 100644 index 00000000..052c77c2 --- /dev/null +++ b/files/src-request-httprequestinterface.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        Contao Utils Bundle

                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        HttpRequestInterface.php

                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                        + + + + + + +

                                                                                                                                                                                                                                                        + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        HttpRequestInterface
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                        + + + + + + + + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                          + + + + + + + + diff --git a/files/src-util-userutil-usertype.html b/files/src-request-requestcleaner.html similarity index 97% rename from files/src-util-userutil-usertype.html rename to files/src-request-requestcleaner.html index 9276d7a9..3afa7bde 100644 --- a/files/src-util-userutil-usertype.html +++ b/files/src-request-requestcleaner.html @@ -87,7 +87,7 @@

                                                                                                                                                                                                                                                          Fil
                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                          UserType.php

                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                          RequestCleaner.php

                                                                                                                                                                                                                                                          @@ -119,7 +119,7 @@

                                                                                                                                                                                                                                                          Search results

                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                          + diff --git a/files/src-request-requestutil.html b/files/src-request-requestutil.html new file mode 100644 index 00000000..5588d260 --- /dev/null +++ b/files/src-request-requestutil.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                          Contao Utils Bundle

                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                          RequestUtil.php

                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                          + + + + + + +

                                                                                                                                                                                                                                                          + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                          RequestUtil
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                          + + + + + + + + +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                          Search results

                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                            + + + + + + + + diff --git a/files/src-staticutil-abstractstaticutil.html b/files/src-resources-contao-config-config.html similarity index 96% rename from files/src-staticutil-abstractstaticutil.html rename to files/src-resources-contao-config-config.html index 391dc2de..78e2893e 100644 --- a/files/src-staticutil-abstractstaticutil.html +++ b/files/src-resources-contao-config-config.html @@ -87,7 +87,7 @@

                                                                                                                                                                                                                                                            Fil
                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                            AbstractStaticUtil.php

                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                            config.php

                                                                                                                                                                                                                                                            @@ -119,7 +119,7 @@

                                                                                                                                                                                                                                                            Search results

                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                            + diff --git a/files/src-util-htmlutil-generatedataattributesstringarrayhandling.html b/files/src-resources-contao-dca-tl-db-cache.html similarity index 95% rename from files/src-util-htmlutil-generatedataattributesstringarrayhandling.html rename to files/src-resources-contao-dca-tl-db-cache.html index bec4384a..2c66198c 100644 --- a/files/src-util-htmlutil-generatedataattributesstringarrayhandling.html +++ b/files/src-resources-contao-dca-tl-db-cache.html @@ -87,7 +87,7 @@

                                                                                                                                                                                                                                                            Fil
                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                            GenerateDataAttributesStringArrayHandling.php

                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                            tl_db_cache.php

                                                                                                                                                                                                                                                            @@ -119,7 +119,7 @@

                                                                                                                                                                                                                                                            Search results

                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                            + diff --git a/files/src-resources-contao-dca-tl-settings.html b/files/src-resources-contao-dca-tl-settings.html new file mode 100644 index 00000000..29d965fe --- /dev/null +++ b/files/src-resources-contao-dca-tl-settings.html @@ -0,0 +1,134 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                            Contao Utils Bundle

                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                            tl_settings.php

                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                            + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                            Search results

                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                              + + + + + + + + diff --git a/files/src-resources-contao-languages-de-default.html b/files/src-resources-contao-languages-de-default.html new file mode 100644 index 00000000..6f8f83df --- /dev/null +++ b/files/src-resources-contao-languages-de-default.html @@ -0,0 +1,134 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                              Contao Utils Bundle

                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                              default.php

                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                              + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                              Search results

                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                + + + + + + + + diff --git a/files/src-resources-contao-languages-de-tl-maintenance.html b/files/src-resources-contao-languages-de-tl-maintenance.html new file mode 100644 index 00000000..09ca33d3 --- /dev/null +++ b/files/src-resources-contao-languages-de-tl-maintenance.html @@ -0,0 +1,160 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                Contao Utils Bundle

                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                tl_maintenance.php

                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                Contao Open Source CMS

                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                Copyright (c) 2016 Heimrich & Hannot GmbH

                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                + Tags + +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                + author +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                Rico Kaltofen r.kaltofen@heimrich-hannot.de

                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                + license +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                http://www.gnu.org/licences/lgpl-3.0.html LGPL

                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                Search results

                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                  + + + + + + + + diff --git a/files/src-resources-contao-languages-de-tl-settings.html b/files/src-resources-contao-languages-de-tl-settings.html new file mode 100644 index 00000000..a966df35 --- /dev/null +++ b/files/src-resources-contao-languages-de-tl-settings.html @@ -0,0 +1,134 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                  Contao Utils Bundle

                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                  tl_settings.php

                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                    + + + + + + + + diff --git a/files/src-resources-contao-languages-en-default.html b/files/src-resources-contao-languages-en-default.html new file mode 100644 index 00000000..aee6126b --- /dev/null +++ b/files/src-resources-contao-languages-en-default.html @@ -0,0 +1,134 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                    Contao Utils Bundle

                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                    default.php

                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                    + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                      + + + + + + + + diff --git a/files/src-resources-contao-languages-en-tl-settings.html b/files/src-resources-contao-languages-en-tl-settings.html new file mode 100644 index 00000000..e02c2135 --- /dev/null +++ b/files/src-resources-contao-languages-en-tl-settings.html @@ -0,0 +1,134 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                      Contao Utils Bundle

                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                      tl_settings.php

                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                      + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                      Search results

                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                        + + + + + + + + diff --git a/files/src-resources-contao-languages-it-default.html b/files/src-resources-contao-languages-it-default.html new file mode 100644 index 00000000..465b1b97 --- /dev/null +++ b/files/src-resources-contao-languages-it-default.html @@ -0,0 +1,134 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                        Contao Utils Bundle

                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                        default.php

                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                        + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                                          + + + + + + + + diff --git a/files/src-resources-contao-languages-it-tl-maintenance.html b/files/src-resources-contao-languages-it-tl-maintenance.html new file mode 100644 index 00000000..4467d653 --- /dev/null +++ b/files/src-resources-contao-languages-it-tl-maintenance.html @@ -0,0 +1,160 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                          Contao Utils Bundle

                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                          tl_maintenance.php

                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                          Contao Open Source CMS

                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                          Copyright (c) 2016 Heimrich & Hannot GmbH

                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                                          + Tags + +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + author +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                          Rico Kaltofen r.kaltofen@heimrich-hannot.de

                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + license +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                          http://www.gnu.org/licences/lgpl-3.0.html LGPL

                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                          Search results

                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                                            + + + + + + + + diff --git a/files/src-resources-contao-languages-it-tl-settings.html b/files/src-resources-contao-languages-it-tl-settings.html new file mode 100644 index 00000000..d5fbc5e0 --- /dev/null +++ b/files/src-resources-contao-languages-it-tl-settings.html @@ -0,0 +1,134 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                            Contao Utils Bundle

                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                            tl_settings.php

                                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                                            + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                            Search results

                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                                              + + + + + + + + diff --git a/files/src-resources-contao-languages-pl-default.html b/files/src-resources-contao-languages-pl-default.html new file mode 100644 index 00000000..b235259b --- /dev/null +++ b/files/src-resources-contao-languages-pl-default.html @@ -0,0 +1,134 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                              Contao Utils Bundle

                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                              default.php

                                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                                              + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                              Search results

                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                + + + + + + + + diff --git a/files/src-routing-routingutil.html b/files/src-routing-routingutil.html new file mode 100644 index 00000000..47bd0c34 --- /dev/null +++ b/files/src-routing-routingutil.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                Contao Utils Bundle

                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                RoutingUtil.php

                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                + + + + + + +

                                                                                                                                                                                                                                                                                + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                RoutingUtil
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                + + + + + + + + +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                Search results

                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                                  + + + + + + + + diff --git a/files/src-rsce-rsceutil.html b/files/src-rsce-rsceutil.html new file mode 100644 index 00000000..dec7db3c --- /dev/null +++ b/files/src-rsce-rsceutil.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                  Contao Utils Bundle

                                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                  RsceUtil.php

                                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                                  + + + + + + +

                                                                                                                                                                                                                                                                                  + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                  RsceUtil
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                  + + + + + + + + +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                                    + + + + + + + + diff --git a/files/src-salutation-salutationutil.html b/files/src-salutation-salutationutil.html new file mode 100644 index 00000000..31d0f1a6 --- /dev/null +++ b/files/src-salutation-salutationutil.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                    Contao Utils Bundle

                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                    SalutationUtil.php

                                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                                    + + + + + + +

                                                                                                                                                                                                                                                                                    + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                    SalutationUtil
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                    + + + + + + + + +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                                      + + + + + + + + diff --git a/files/src-staticutil-sutils.html b/files/src-security-codeutil.html similarity index 95% rename from files/src-staticutil-sutils.html rename to files/src-security-codeutil.html index 1ac7dbd4..38b526e5 100644 --- a/files/src-staticutil-sutils.html +++ b/files/src-security-codeutil.html @@ -87,7 +87,7 @@

                                                                                                                                                                                                                                                                                      Fil
                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                      SUtils.php

                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                      CodeUtil.php

                                                                                                                                                                                                                                                                                      @@ -104,7 +104,7 @@

                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                      SUtils
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      CodeUtil
                                                                                                                                                                                                                                                                                      @@ -130,7 +130,7 @@

                                                                                                                                                                                                                                                                                      Search results

                                                                                                                                                                                                                                                                                      - + diff --git a/files/src-security-encryptionutil.html b/files/src-security-encryptionutil.html new file mode 100644 index 00000000..7077b20a --- /dev/null +++ b/files/src-security-encryptionutil.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                      Contao Utils Bundle

                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                      EncryptionUtil.php

                                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                                      + + + + + + +

                                                                                                                                                                                                                                                                                      + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                      EncryptionUtil
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                      + + + + + + + + +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                      Search results

                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                                        + + + + + + + + diff --git a/files/src-string-anonymizerutil.html b/files/src-string-anonymizerutil.html new file mode 100644 index 00000000..f564d2c9 --- /dev/null +++ b/files/src-string-anonymizerutil.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                        Contao Utils Bundle

                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                        AnonymizerUtil.php

                                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                                        + + + + + + +

                                                                                                                                                                                                                                                                                        + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                        AnonymizerUtil
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        Class AnonymizerUtil.
                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                        + + + + + + + + +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                                                          + + + + + + + + diff --git a/files/src-string-stringutil.html b/files/src-string-stringutil.html new file mode 100644 index 00000000..7768945f --- /dev/null +++ b/files/src-string-stringutil.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                          Contao Utils Bundle

                                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                          StringUtil.php

                                                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                                                          + + + + + + +

                                                                                                                                                                                                                                                                                          + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                          StringUtil
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          Class StringUtil.
                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                          + + + + + + + + +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                          Search results

                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                                                            + + + + + + + + diff --git a/files/src-template-templateutil.html b/files/src-template-templateutil.html new file mode 100644 index 00000000..23854378 --- /dev/null +++ b/files/src-template-templateutil.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                            Contao Utils Bundle

                                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                            TemplateUtil.php

                                                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                                                            + + + + + + +

                                                                                                                                                                                                                                                                                            + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                            TemplateUtil
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                            + + + + + + + + +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                            Search results

                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                                                              + + + + + + + + diff --git a/files/src-traits-persontrait.html b/files/src-traits-persontrait.html new file mode 100644 index 00000000..71272dcb --- /dev/null +++ b/files/src-traits-persontrait.html @@ -0,0 +1,134 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                              Contao Utils Bundle

                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                              PersonTrait.php

                                                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                                                              + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                              Search results

                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                + + + + + + + + diff --git a/files/src-twig-arrayextension.html b/files/src-twig-arrayextension.html new file mode 100644 index 00000000..4deb6985 --- /dev/null +++ b/files/src-twig-arrayextension.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                Contao Utils Bundle

                                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                ArrayExtension.php

                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                + + + + + + +

                                                                                                                                                                                                                                                                                                + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                ArrayExtension
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                + + + + + + + + +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                Search results

                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                                                  + + + + + + + + diff --git a/files/src-util-accordionutil.html b/files/src-twig-dateextension.html similarity index 95% rename from files/src-util-accordionutil.html rename to files/src-twig-dateextension.html index bbba7236..4cdd40be 100644 --- a/files/src-util-accordionutil.html +++ b/files/src-twig-dateextension.html @@ -87,7 +87,7 @@

                                                                                                                                                                                                                                                                                                  Fil
                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                  AccordionUtil.php

                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                  DateExtension.php

                                                                                                                                                                                                                                                                                                  @@ -104,7 +104,7 @@

                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                  AccordionUtil
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  DateExtension
                                                                                                                                                                                                                                                                                                  @@ -130,7 +130,7 @@

                                                                                                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                                                                                                  - + diff --git a/files/src-twig-dcaextension.html b/files/src-twig-dcaextension.html new file mode 100644 index 00000000..54aa60f5 --- /dev/null +++ b/files/src-twig-dcaextension.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                  Contao Utils Bundle

                                                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                  DcaExtension.php

                                                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                                                  + + + + + + +

                                                                                                                                                                                                                                                                                                  + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                  DcaExtension
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                  + + + + + + + + +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                                                    + + + + + + + + diff --git a/files/src-twig-downloadextension.html b/files/src-twig-downloadextension.html new file mode 100644 index 00000000..33cf4078 --- /dev/null +++ b/files/src-twig-downloadextension.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                    Contao Utils Bundle

                                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                    DownloadExtension.php

                                                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                                                    + + + + + + +

                                                                                                                                                                                                                                                                                                    + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                    DownloadExtension
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                    + + + + + + + + +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                                                      + + + + + + + + diff --git a/files/src-util-anonymizeutil.html b/files/src-twig-fileextension.html similarity index 95% rename from files/src-util-anonymizeutil.html rename to files/src-twig-fileextension.html index 72624cb2..8ba8b046 100644 --- a/files/src-util-anonymizeutil.html +++ b/files/src-twig-fileextension.html @@ -87,7 +87,7 @@

                                                                                                                                                                                                                                                                                                      Fil
                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                      AnonymizeUtil.php

                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                      FileExtension.php

                                                                                                                                                                                                                                                                                                      @@ -104,7 +104,7 @@

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      AnonymizeUtil
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      FileExtension
                                                                                                                                                                                                                                                                                                      @@ -130,7 +130,7 @@

                                                                                                                                                                                                                                                                                                      Search results

                                                                                                                                                                                                                                                                                                      - + diff --git a/files/src-twig-imageextension.html b/files/src-twig-imageextension.html new file mode 100644 index 00000000..02aed692 --- /dev/null +++ b/files/src-twig-imageextension.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                      Contao Utils Bundle

                                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                      ImageExtension.php

                                                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                                                      + + + + + + +

                                                                                                                                                                                                                                                                                                      + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                      ImageExtension
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                      + + + + + + + + +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                      Search results

                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                                                        + + + + + + + + diff --git a/files/src-util-formatterutil.html b/files/src-twig-testextension.html similarity index 95% rename from files/src-util-formatterutil.html rename to files/src-twig-testextension.html index d5731036..04b48ba7 100644 --- a/files/src-util-formatterutil.html +++ b/files/src-twig-testextension.html @@ -87,7 +87,7 @@

                                                                                                                                                                                                                                                                                                        Fil
                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                        FormatterUtil.php

                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                        TestExtension.php

                                                                                                                                                                                                                                                                                                        @@ -104,7 +104,7 @@

                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                        FormatterUtil
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        TestExtension
                                                                                                                                                                                                                                                                                                        @@ -130,7 +130,7 @@

                                                                                                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                                                                                                        - + diff --git a/files/src-util-urlutil.html b/files/src-url-urlutil.html similarity index 95% rename from files/src-util-urlutil.html rename to files/src-url-urlutil.html index ad454635..8221a397 100644 --- a/files/src-util-urlutil.html +++ b/files/src-url-urlutil.html @@ -104,7 +104,7 @@

                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                        UrlUtil
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        UrlUtil
                                                                                                                                                                                                                                                                                                        @@ -130,7 +130,7 @@

                                                                                                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                                                                                                        - + diff --git a/files/src-util-userutil.html b/files/src-user-userutil.html similarity index 96% rename from files/src-util-userutil.html rename to files/src-user-userutil.html index 2aa05018..d40a8bea 100644 --- a/files/src-util-userutil.html +++ b/files/src-user-userutil.html @@ -104,8 +104,8 @@

                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                        UserUtil
                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        UserUtil
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        Class UserUtil.
                                                                                                                                                                                                                                                                                                        @@ -130,7 +130,7 @@

                                                                                                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                                                                                                        - + diff --git a/files/src-util-abstractservicesubscriber.html b/files/src-util-abstractservicesubscriber.html new file mode 100644 index 00000000..2e531588 --- /dev/null +++ b/files/src-util-abstractservicesubscriber.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                        Contao Utils Bundle

                                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                        AbstractServiceSubscriber.php

                                                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                                                        + + + + + + +

                                                                                                                                                                                                                                                                                                        + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                        AbstractServiceSubscriber
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                        + + + + + + + + +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                                                                          + + + + + + + + diff --git a/files/src-util-containerutil.html b/files/src-util-container-containerutil.html similarity index 96% rename from files/src-util-containerutil.html rename to files/src-util-container-containerutil.html index 7d666f5f..a9becb4f 100644 --- a/files/src-util-containerutil.html +++ b/files/src-util-container-containerutil.html @@ -104,7 +104,7 @@

                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                          ContainerUtil
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          ContainerUtil
                                                                                                                                                                                                                                                                                                          @@ -130,7 +130,7 @@

                                                                                                                                                                                                                                                                                                          Search results

                                                                                                                                                                                                                                                                                                          - + diff --git a/files/src-util-databaseutil-createwhereforserializedblobresult.html b/files/src-util-databaseutil-createwhereforserializedblobresult.html index 52eb0699..b10b6753 100644 --- a/files/src-util-databaseutil-createwhereforserializedblobresult.html +++ b/files/src-util-databaseutil-createwhereforserializedblobresult.html @@ -97,6 +97,17 @@

                                                                                                                                                                                                                                                                                                          CreateWhereForSerializedBlobResult.php< +

                                                                                                                                                                                                                                                                                                          + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                          CreateWhereForSerializedBlobResult
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                          diff --git a/files/src-util-dca-dcautil.html b/files/src-util-dca-dcautil.html new file mode 100644 index 00000000..739a9718 --- /dev/null +++ b/files/src-util-dca-dcautil.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                          Contao Utils Bundle

                                                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                          DcaUtil.php

                                                                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                                                                          + + + + + + +

                                                                                                                                                                                                                                                                                                          + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                          DcaUtil
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                          + + + + + + + + +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                          Search results

                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                                                                            + + + + + + + + diff --git a/files/src-util-file-fileutil.html b/files/src-util-file-fileutil.html new file mode 100644 index 00000000..a1e0ff0d --- /dev/null +++ b/files/src-util-file-fileutil.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                            Contao Utils Bundle

                                                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                            FileUtil.php

                                                                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                                                                            + + + + + + +

                                                                                                                                                                                                                                                                                                            + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                            FileUtil
                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                            + + + + + + + + +
                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                            Search results

                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                                                                              + + + + + + + + diff --git a/files/src-util-formatterutil-formatdcafieldvalueoptions.html b/files/src-util-formatterutil-formatdcafieldvalueoptions.html deleted file mode 100644 index 40ef03c9..00000000 --- a/files/src-util-formatterutil-formatdcafieldvalueoptions.html +++ /dev/null @@ -1,145 +0,0 @@ - - - - - Contao Utils Bundle - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                              Contao Utils Bundle

                                                                                                                                                                                                                                                                                                              - - - - - -
                                                                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                              - - - - -
                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                              FormatDcaFieldValueOptions.php

                                                                                                                                                                                                                                                                                                              - - -
                                                                                                                                                                                                                                                                                                              - - - - - - -

                                                                                                                                                                                                                                                                                                              - Interfaces, Classes and Traits - -

                                                                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                                                                              FormatDcaFieldValueOptions
                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                                                                              - - - - - - - - -
                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                              Search results

                                                                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                - - -
                                                                                                                                                                                                                                                                                                                - - - - - - - - diff --git a/files/src-util-html-htmlutil.html b/files/src-util-html-htmlutil.html new file mode 100644 index 00000000..01f1d010 --- /dev/null +++ b/files/src-util-html-htmlutil.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                Contao Utils Bundle

                                                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                HtmlUtil.php

                                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                                + + + + + + +

                                                                                                                                                                                                                                                                                                                + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                HtmlUtil
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                + + + + + + + + +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                Search results

                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                                                                  + + + + + + + + diff --git a/files/src-util-htmlutil-generatedataattributesstringoptions.html b/files/src-util-htmlutil-generatedataattributesstringoptions.html deleted file mode 100644 index 71af0b36..00000000 --- a/files/src-util-htmlutil-generatedataattributesstringoptions.html +++ /dev/null @@ -1,145 +0,0 @@ - - - - - Contao Utils Bundle - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                  Contao Utils Bundle

                                                                                                                                                                                                                                                                                                                  - - - - - -
                                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                  - - - - -
                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                  - - -
                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                    - - -
                                                                                                                                                                                                                                                                                                                    - - - - - - - - diff --git a/files/src-util-locale-localeutil.html b/files/src-util-locale-localeutil.html new file mode 100644 index 00000000..e3d4fbb0 --- /dev/null +++ b/files/src-util-locale-localeutil.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                    Contao Utils Bundle

                                                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                    LocaleUtil.php

                                                                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                                                                    + + + + + + +

                                                                                                                                                                                                                                                                                                                    + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                    LocaleUtil
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                    + + + + + + + + +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                                                                      + + + + + + + + diff --git a/files/src-util-model-modelutil.html b/files/src-util-model-modelutil.html new file mode 100644 index 00000000..a8e5caa3 --- /dev/null +++ b/files/src-util-model-modelutil.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                      Contao Utils Bundle

                                                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                      ModelUtil.php

                                                                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                                                                      + + + + + + +

                                                                                                                                                                                                                                                                                                                      + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                      ModelUtil
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                      + + + + + + + + +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                      Search results

                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                                                                        + + + + + + + + diff --git a/files/src-util-request-requestutil.html b/files/src-util-request-requestutil.html new file mode 100644 index 00000000..e43bea13 --- /dev/null +++ b/files/src-util-request-requestutil.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                        Contao Utils Bundle

                                                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                        RequestUtil.php

                                                                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                                                                        + + + + + + +

                                                                                                                                                                                                                                                                                                                        + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                        RequestUtil
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                        + + + + + + + + +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                                                                                          + + + + + + + + diff --git a/files/src-util-request-urlutil.html b/files/src-util-request-urlutil.html new file mode 100644 index 00000000..9ce68056 --- /dev/null +++ b/files/src-util-request-urlutil.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                          Contao Utils Bundle

                                                                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                          UrlUtil.php

                                                                                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                                                                                          + + + + + + +

                                                                                                                                                                                                                                                                                                                          + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                          UrlUtil
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                          + + + + + + + + +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                          Search results

                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                                                                                            + + + + + + + + diff --git a/files/src-util-routing-routingutil.html b/files/src-util-routing-routingutil.html new file mode 100644 index 00000000..44777130 --- /dev/null +++ b/files/src-util-routing-routingutil.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                            Contao Utils Bundle

                                                                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                            RoutingUtil.php

                                                                                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                                                                                            + + + + + + +

                                                                                                                                                                                                                                                                                                                            + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                            RoutingUtil
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                            + + + + + + + + +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                            Search results

                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                                                                                              + + + + + + + + diff --git a/files/src-util-type-arrayutil.html b/files/src-util-type-arrayutil.html new file mode 100644 index 00000000..2d229e7a --- /dev/null +++ b/files/src-util-type-arrayutil.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                              Contao Utils Bundle

                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                              ArrayUtil.php

                                                                                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                                                                                              + + + + + + +

                                                                                                                                                                                                                                                                                                                              + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                              ArrayUtil
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                              + + + + + + + + +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                              Search results

                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                                                + + + + + + + + diff --git a/files/src-util-type-stringutil.html b/files/src-util-type-stringutil.html new file mode 100644 index 00000000..6b043504 --- /dev/null +++ b/files/src-util-type-stringutil.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                Contao Utils Bundle

                                                                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                StringUtil.php

                                                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                                                + + + + + + +

                                                                                                                                                                                                                                                                                                                                + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                StringUtil
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                Search results

                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                                                                                  + + + + + + + + diff --git a/files/src-util-ui-accordionutil.html b/files/src-util-ui-accordionutil.html new file mode 100644 index 00000000..c6bd1a75 --- /dev/null +++ b/files/src-util-ui-accordionutil.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                  Contao Utils Bundle

                                                                                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                  AccordionUtil.php

                                                                                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                                                                                  + + + + + + +

                                                                                                                                                                                                                                                                                                                                  + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                  AccordionUtil
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                  + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                                                                                    + + + + + + + + diff --git a/files/src-util-user-userutil.html b/files/src-util-user-userutil.html new file mode 100644 index 00000000..268ab3eb --- /dev/null +++ b/files/src-util-user-userutil.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                    Contao Utils Bundle

                                                                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                    UserUtil.php

                                                                                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                                                                                    + + + + + + +

                                                                                                                                                                                                                                                                                                                                    + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                    UserUtil
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                    + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                                                                                      + + + + + + + + diff --git a/indices/files.html b/indices/files.html index 510f814d..20f032a6 100644 --- a/indices/files.html +++ b/indices/files.html @@ -87,33 +87,71 @@

                                                                                                                                                                                                                                                                                                                                      Fil

                                                                                                                                                                                                                                                                                                                                      Files

                                                                                                                                                                                                                                                                                                                                      A

                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                      C

                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                      B

                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                      C

                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                      D

                                                                                                                                                                                                                                                                                                                                      E

                                                                                                                                                                                                                                                                                                                                      F

                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                      G

                                                                                                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                                                                                                      H

                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                      H

                                                                                                                                                                                                                                                                                                                                      I

                                                                                                                                                                                                                                                                                                                                      L

                                                                                                                                                                                                                                                                                                                                      M

                                                                                                                                                                                                                                                                                                                                      P

                                                                                                                                                                                                                                                                                                                                      R

                                                                                                                                                                                                                                                                                                                                      S

                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                      T

                                                                                                                                                                                                                                                                                                                                      + -

                                                                                                                                                                                                                                                                                                                                      U

                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                      U

                                                                                                                                                                                                                                                                                                                                      diff --git a/js/searchIndex.js b/js/searchIndex.js index 292760f4..8c1400c7 100644 --- a/js/searchIndex.js +++ b/js/searchIndex.js @@ -1,635 +1,4590 @@ Search.appendIndex( [ { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Accordion\\AccordionUtil", + "name": "AccordionUtil", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Accordion-AccordionUtil.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Accordion\\AccordionUtil\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Accordion-AccordionUtil.html#method___construct" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Accordion\\AccordionUtil\u003A\u003AstructureAccordionSingle\u0028\u0029", + "name": "structureAccordionSingle", + "summary": "Adds\u0020the\u0020following\u0020flags\u0020to\u0020the\u0020template\u0020data\u003A\n\u002D\u0020first\n\u002D\u0020last\n\u002D\u0020parentId.", + "url": "classes/HeimrichHannot-UtilsBundle-Accordion-AccordionUtil.html#method_structureAccordionSingle" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Accordion\\AccordionUtil\u003A\u003AstructureAccordionStartStop\u0028\u0029", + "name": "structureAccordionStartStop", + "summary": "Adds\u0020the\u0020following\u0020flags\u0020to\u0020the\u0020template\u0020data\u003A\n\u002D\u0020first\n\u002D\u0020last\n\u002D\u0020parentId.", + "url": "classes/HeimrichHannot-UtilsBundle-Accordion-AccordionUtil.html#method_structureAccordionStartStop" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Accordion\\AccordionUtil\u003A\u003A\u0024framework", + "name": "framework", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Accordion-AccordionUtil.html#property_framework" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Accordion\\AccordionUtil\u003A\u003A\u0024accordionSingleCache", + "name": "accordionSingleCache", + "summary": "Single\u0020cache.", + "url": "classes/HeimrichHannot-UtilsBundle-Accordion-AccordionUtil.html#property_accordionSingleCache" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Accordion\\AccordionUtil\u003A\u003A\u0024accordionStartStopCache", + "name": "accordionStartStopCache", + "summary": "Start\/Stop\u0020cache.", + "url": "classes/HeimrichHannot-UtilsBundle-Accordion-AccordionUtil.html#property_accordionStartStopCache" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Accordion\\AccordionUtil\u003A\u003A\u0024container", + "name": "container", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Accordion-AccordionUtil.html#property_container" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Arrays\\ArrayUtil", + "name": "ArrayUtil", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Arrays-ArrayUtil.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Arrays\\ArrayUtil\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Arrays-ArrayUtil.html#method___construct" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Arrays\\ArrayUtil\u003A\u003AfilterByPrefixes\u0028\u0029", + "name": "filterByPrefixes", + "summary": "Filter\u0020an\u0020Array\u0020by\u0020given\u0020prefixes.", + "url": "classes/HeimrichHannot-UtilsBundle-Arrays-ArrayUtil.html#method_filterByPrefixes" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Arrays\\ArrayUtil\u003A\u003Aaasort\u0028\u0029", + "name": "aasort", + "summary": "sort\u0020an\u0020array\u0020alphabetically\u0020by\u0020some\u0020key\u0020in\u0020the\u0020second\u0020layer\u0020\u0028x\u0020\u003D\u003E\u0020array\u0028key1,\u0020key2,\u0020key3\u0029\u0029.", + "url": "classes/HeimrichHannot-UtilsBundle-Arrays-ArrayUtil.html#method_aasort" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Arrays\\ArrayUtil\u003A\u003AremoveValue\u0028\u0029", + "name": "removeValue", + "summary": "Removes\u0020a\u0020value\u0020in\u0020an\u0020array.", + "url": "classes/HeimrichHannot-UtilsBundle-Arrays-ArrayUtil.html#method_removeValue" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Arrays\\ArrayUtil\u003A\u003AremovePrefix\u0028\u0029", + "name": "removePrefix", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Arrays-ArrayUtil.html#method_removePrefix" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Arrays\\ArrayUtil\u003A\u003AinsertInArrayByName\u0028\u0029", + "name": "insertInArrayByName", + "summary": "Insert\u0020a\u0020value\u0020into\u0020an\u0020existing\u0020array\u0020by\u0020key\u0020name.", + "url": "classes/HeimrichHannot-UtilsBundle-Arrays-ArrayUtil.html#method_insertInArrayByName" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Arrays\\ArrayUtil\u003A\u003AarrayToObject\u0028\u0029", + "name": "arrayToObject", + "summary": "Creates\u0020a\u0020stdClass\u0020from\u0020array.", + "url": "classes/HeimrichHannot-UtilsBundle-Arrays-ArrayUtil.html#method_arrayToObject" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Arrays\\ArrayUtil\u003A\u003AgetArrayRowByFieldValue\u0028\u0029", + "name": "getArrayRowByFieldValue", + "summary": "Returns\u0020a\u0020row\u0020of\u0020an\u0020multidimensional\u0020array\u0020by\u0020field\u0020value.\u0020Returns\u0020false,\u0020if\u0020no\u0020row\u0020found.", + "url": "classes/HeimrichHannot-UtilsBundle-Arrays-ArrayUtil.html#method_getArrayRowByFieldValue" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Arrays\\ArrayUtil\u003A\u003AflattenArray\u0028\u0029", + "name": "flattenArray", + "summary": "Flattens\u0020an\u0020multidimensional\u0020array\u0020to\u0020one\u0020dimension.\u0020Keys\u0020are\u0020not\u0020preserved.", + "url": "classes/HeimrichHannot-UtilsBundle-Arrays-ArrayUtil.html#method_flattenArray" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Arrays\\ArrayUtil\u003A\u003AinsertBeforeKey\u0028\u0029", + "name": "insertBeforeKey", + "summary": "Insert\u0020a\u0020new\u0020entry\u0020before\u0020an\u0020specific\u0020key\u0020in\u0020array.", + "url": "classes/HeimrichHannot-UtilsBundle-Arrays-ArrayUtil.html#method_insertBeforeKey" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Arrays\\ArrayUtil\u003A\u003AimplodeRecursive\u0028\u0029", + "name": "implodeRecursive", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Arrays-ArrayUtil.html#method_implodeRecursive" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Arrays\\ArrayUtil\u003A\u003A\u0024framework", + "name": "framework", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Arrays-ArrayUtil.html#property_framework" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Arrays\\ArrayUtil\u003A\u003A\u0024container", + "name": "container", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Arrays-ArrayUtil.html#property_container" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\DatabaseCacheUtil", + "name": "DatabaseCacheUtil", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-DatabaseCacheUtil.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\DatabaseCacheUtil\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-DatabaseCacheUtil.html#method___construct" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\DatabaseCacheUtil\u003A\u003AkeyExists\u0028\u0029", + "name": "keyExists", + "summary": "Check\u0020for\u0020a\u0020given\u0020cache\u0020key.", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-DatabaseCacheUtil.html#method_keyExists" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\DatabaseCacheUtil\u003A\u003AgetValue\u0028\u0029", + "name": "getValue", + "summary": "Retrieve\u0020a\u0020value\u0020from\u0020cache.", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-DatabaseCacheUtil.html#method_getValue" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\DatabaseCacheUtil\u003A\u003AcacheValue\u0028\u0029", + "name": "cacheValue", + "summary": "Store\u0020a\u0020given\u0020value\u0020to\u0020cache.", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-DatabaseCacheUtil.html#method_cacheValue" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\DatabaseCacheUtil\u003A\u003ADEFAULT_MAX_CACHE_TIME", + "name": "DEFAULT_MAX_CACHE_TIME", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-DatabaseCacheUtil.html#constant_DEFAULT_MAX_CACHE_TIME" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\DatabaseCacheUtil\u003A\u003A\u0024framework", + "name": "framework", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-DatabaseCacheUtil.html#property_framework" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\DatabaseCacheUtil\u003A\u003A\u0024database", + "name": "database", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-DatabaseCacheUtil.html#property_database" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\DatabaseCacheUtil\u003A\u003A\u0024container", + "name": "container", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-DatabaseCacheUtil.html#property_container" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\DatabaseTreeCache", + "name": "DatabaseTreeCache", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-DatabaseTreeCache.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\DatabaseTreeCache\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-DatabaseTreeCache.html#method___construct" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\DatabaseTreeCache\u003A\u003AloadDataContainer\u0028\u0029", + "name": "loadDataContainer", + "summary": "Generate\u0020tree\u0020cache.", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-DatabaseTreeCache.html#method_loadDataContainer" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\DatabaseTreeCache\u003A\u003AaddConfigToTreeCache\u0028\u0029", + "name": "addConfigToTreeCache", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-DatabaseTreeCache.html#method_addConfigToTreeCache" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\DatabaseTreeCache\u003A\u003AgetChildRecords\u0028\u0029", + "name": "getChildRecords", + "summary": "Get\u0020all\u0020child\u0020records\u0020for\u0020given\u0020parent\u0020entities.", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-DatabaseTreeCache.html#method_getChildRecords" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\DatabaseTreeCache\u003A\u003AgetParentRecords\u0028\u0029", + "name": "getParentRecords", + "summary": "Get\u0020all\u0020parent\u0020records\u0020for\u0020given\u0020child\u0020entity.", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-DatabaseTreeCache.html#method_getParentRecords" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\DatabaseTreeCache\u003A\u003AgetTreeCache\u0028\u0029", + "name": "getTreeCache", + "summary": "Get\u0020the\u0020tree\u0020cache\u0020for\u0020a\u0020given\u0020table\u0020and\u0020key.", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-DatabaseTreeCache.html#method_getTreeCache" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\DatabaseTreeCache\u003A\u003AgenerateCacheTree\u0028\u0029", + "name": "generateCacheTree", + "summary": "Generate\u0020the\u0020flat\u0020cache\u0020tree.", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-DatabaseTreeCache.html#method_generateCacheTree" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\DatabaseTreeCache\u003A\u003AgenerateAllCacheTree\u0028\u0029", + "name": "generateAllCacheTree", + "summary": "Generate\u0020all\u0020cache\u0020trees.", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-DatabaseTreeCache.html#method_generateAllCacheTree" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\DatabaseTreeCache\u003A\u003AregisterDcaToCacheTree\u0028\u0029", + "name": "registerDcaToCacheTree", + "summary": "Register\u0020a\u0020dca\u0020to\u0020the\u0020tree\u0020cache.", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-DatabaseTreeCache.html#method_registerDcaToCacheTree" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\DatabaseTreeCache\u003A\u003ApurgeCacheTree\u0028\u0029", + "name": "purgeCacheTree", + "summary": "Purge\u0020the\u0020tree\u0020cache\u0020completely\u0020in\u0020order\u0020to\u0020take\u0020table\u0020relations\u0020into\u0020consideration.", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-DatabaseTreeCache.html#method_purgeCacheTree" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\DatabaseTreeCache\u003A\u003AisCompleteInstallation\u0028\u0029", + "name": "isCompleteInstallation", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-DatabaseTreeCache.html#method_isCompleteInstallation" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\DatabaseTreeCache\u003A\u003A\u0024cache", + "name": "cache", + "summary": "Cache\u0020tree.", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-DatabaseTreeCache.html#property_cache" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\DatabaseTreeCache\u003A\u003A\u0024framework", + "name": "framework", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-DatabaseTreeCache.html#property_framework" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\DatabaseTreeCache\u003A\u003A\u0024filesystem", + "name": "filesystem", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-DatabaseTreeCache.html#property_filesystem" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\DatabaseTreeCache\u003A\u003A\u0024modelUtil", + "name": "modelUtil", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-DatabaseTreeCache.html#property_modelUtil" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\DatabaseTreeCache\u003A\u003A\u0024database", + "name": "database", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-DatabaseTreeCache.html#property_database" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\DatabaseTreeCache\u003A\u003A\u0024cacheDir", + "name": "cacheDir", + "summary": "Tree\u0020cache\u0020directory.", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-DatabaseTreeCache.html#property_cacheDir" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\DatabaseTreeCache\u003A\u003A\u0024containerUtil", + "name": "containerUtil", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-DatabaseTreeCache.html#property_containerUtil" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\DatabaseTreeCache\u003A\u003A\u0024requestStack", + "name": "requestStack", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-DatabaseTreeCache.html#property_requestStack" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\FileCache", + "name": "FileCache", + "summary": "Class\u0020FileCache.", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-FileCache.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\FileCache\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-FileCache.html#method___construct" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\FileCache\u003A\u003Aexist\u0028\u0029", + "name": "exist", + "summary": "Checks\u0020if\u0020a\u0020cached\u0020file\u0020already\u0020exist\u0020in\u0020cache.\u0020Namespace\u0020is\u0020taken\u0020into\u0020account.", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-FileCache.html#method_exist" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\FileCache\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Get\u0020the\u0020file\u0020path\u0020for\u0020the\u0020given\u0020identifier.\u0020Namespace\u0020is\u0020taken\u0020into\u0020account.", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-FileCache.html#method_get" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\FileCache\u003A\u003AgenerateCacheName\u0028\u0029", + "name": "generateCacheName", + "summary": "Generate\u0020a\u0020file\u0020name\u0020for\u0020cache.", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-FileCache.html#method_generateCacheName" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\FileCache\u003A\u003AgetCacheFileName\u0028\u0029", + "name": "getCacheFileName", + "summary": "Get\u0020the\u0020cache\u0020file\u0020name\u0020by\u0020the\u0020given\u0020identifier.", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-FileCache.html#method_getCacheFileName" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\FileCache\u003A\u003AgetCacheFilePath\u0028\u0029", + "name": "getCacheFilePath", + "summary": "Same\u0020as\u0020generateCacheName,\u0020but\u0020returns\u0020complete\u0020path\u0020to\u0020cache.", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-FileCache.html#method_getCacheFilePath" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\FileCache\u003A\u003AgetAbsoluteCachePath\u0028\u0029", + "name": "getAbsoluteCachePath", + "summary": "Returns\u0020the\u0020absolute\u0020path\u0020to\u0020the\u0020cache\u0020folder.", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-FileCache.html#method_getAbsoluteCachePath" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\FileCache\u003A\u003AgetNamespace\u0028\u0029", + "name": "getNamespace", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-FileCache.html#method_getNamespace" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\FileCache\u003A\u003AsetNamespace\u0028\u0029", + "name": "setNamespace", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-FileCache.html#method_setNamespace" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\FileCache\u003A\u003AgetCacheFolder\u0028\u0029", + "name": "getCacheFolder", + "summary": "The\u0020cache\u0020folder\u0020\u0028without\u0020namespace\u0029.", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-FileCache.html#method_getCacheFolder" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\FileCache\u003A\u003AsetCacheFolder\u0028\u0029", + "name": "setCacheFolder", + "summary": "Set\u0020cache\u0020folder\u0020\u0028without\u0020namespace\u0029.", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-FileCache.html#method_setCacheFolder" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\FileCache\u003A\u003AgetCacheFolderWithNamespace\u0028\u0029", + "name": "getCacheFolderWithNamespace", + "summary": "Get\u0020the\u0020cache\u0020folder\u0020\u0028including\u0020namespace\u0029.", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-FileCache.html#method_getCacheFolderWithNamespace" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\FileCache\u003A\u003AgeneratePath\u0028\u0029", + "name": "generatePath", + "summary": "Recreates\u0020the\u0020path\u0020to\u0020the\u0020current\u0020cache\u0020folder.", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-FileCache.html#method_generatePath" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\FileCache\u003A\u003A\u0024cacheFolder", + "name": "cacheFolder", + "summary": "The\u0020folder\u0020where\u0020the\u0020images\u0020should\u0020be\u0020cached.", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-FileCache.html#property_cacheFolder" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\FileCache\u003A\u003A\u0024namespace", + "name": "namespace", + "summary": "The\u0020subfolder\u0020within\u0020the\u0020cache\u0020folder.", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-FileCache.html#property_namespace" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\FileCache\u003A\u003A\u0024cacheFolderWithNamespace", + "name": "cacheFolderWithNamespace", + "summary": "The\u0020complete\u0020path\u0020to\u0020the\u0020current\u0020cache\u0020folder\u0020including\u0020namespace.", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-FileCache.html#property_cacheFolderWithNamespace" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\FileCache\u003A\u003A\u0024container", + "name": "container", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-FileCache.html#property_container" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\FileCache\u003A\u003A\u0024fileUtil", + "name": "fileUtil", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-FileCache.html#property_fileUtil" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\FileCache\u003A\u003A\u0024projectDir", + "name": "projectDir", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-FileCache.html#property_projectDir" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\RemoteImageCache", + "name": "RemoteImageCache", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-RemoteImageCache.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\RemoteImageCache\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-RemoteImageCache.html#method___construct" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\RemoteImageCache\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Get\u0020a\u0020remote\u0020file\u0020from\u0020cache\u0020and\u0020cache\u0020file,\u0020if\u0020not\u0020already\u0020in\u0020cache.", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-RemoteImageCache.html#method_get" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\RemoteImageCache\u003A\u003A\u0024framework", + "name": "framework", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-RemoteImageCache.html#property_framework" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\RemoteImageCache\u003A\u003A\u0024container", + "name": "container", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-RemoteImageCache.html#property_container" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\UtilCacheWarmer", + "name": "UtilCacheWarmer", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-UtilCacheWarmer.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\UtilCacheWarmer\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructor.", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-UtilCacheWarmer.html#method___construct" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\UtilCacheWarmer\u003A\u003AwarmUp\u0028\u0029", + "name": "warmUp", + "summary": "\u007B\u0040inheritdoc\u007D", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-UtilCacheWarmer.html#method_warmUp" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\UtilCacheWarmer\u003A\u003AisOptional\u0028\u0029", + "name": "isOptional", + "summary": "\u007B\u0040inheritdoc\u007D", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-UtilCacheWarmer.html#method_isOptional" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\UtilCacheWarmer\u003A\u003AisCompleteInstallation\u0028\u0029", + "name": "isCompleteInstallation", + "summary": "Checks\u0020if\u0020the\u0020installation\u0020is\u0020complete.", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-UtilCacheWarmer.html#method_isCompleteInstallation" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\UtilCacheWarmer\u003A\u003AgenerateTemplateMapper\u0028\u0029", + "name": "generateTemplateMapper", + "summary": "Generates\u0020the\u0020template\u0020mapper\u0020array.", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-UtilCacheWarmer.html#method_generateTemplateMapper" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\UtilCacheWarmer\u003A\u003AgenerateDatabaseTreeCache\u0028\u0029", + "name": "generateDatabaseTreeCache", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-UtilCacheWarmer.html#method_generateDatabaseTreeCache" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\UtilCacheWarmer\u003A\u003A\u0024filesystem", + "name": "filesystem", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-UtilCacheWarmer.html#property_filesystem" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\UtilCacheWarmer\u003A\u003A\u0024connection", + "name": "connection", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-UtilCacheWarmer.html#property_connection" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\UtilCacheWarmer\u003A\u003A\u0024framework", + "name": "framework", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-UtilCacheWarmer.html#property_framework" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache\\UtilCacheWarmer\u003A\u003A\u0024templateUtil", + "name": "templateUtil", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Cache-UtilCacheWarmer.html#property_templateUtil" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Choice\\AbstractChoice", + "name": "AbstractChoice", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Choice-AbstractChoice.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Choice\\AbstractChoice\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Choice-AbstractChoice.html#method___construct" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Choice\\AbstractChoice\u003A\u003AgetContext\u0028\u0029", + "name": "getContext", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Choice-AbstractChoice.html#method_getContext" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Choice\\AbstractChoice\u003A\u003AsetContext\u0028\u0029", + "name": "setContext", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Choice-AbstractChoice.html#method_setContext" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Choice\\AbstractChoice\u003A\u003AgetChoices\u0028\u0029", + "name": "getChoices", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Choice-AbstractChoice.html#method_getChoices" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Choice\\AbstractChoice\u003A\u003AgetCachedChoices\u0028\u0029", + "name": "getCachedChoices", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Choice-AbstractChoice.html#method_getCachedChoices" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Choice\\AbstractChoice\u003A\u003Acollect\u0028\u0029", + "name": "collect", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Choice-AbstractChoice.html#method_collect" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Choice\\AbstractChoice\u003A\u003A\u0024data", + "name": "data", + "summary": "Context\u0020data.", + "url": "classes/HeimrichHannot-UtilsBundle-Choice-AbstractChoice.html#property_data" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Choice\\AbstractChoice\u003A\u003A\u0024cache", + "name": "cache", + "summary": "Current\u0020file\u0020cache.", + "url": "classes/HeimrichHannot-UtilsBundle-Choice-AbstractChoice.html#property_cache" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Choice\\AbstractChoice\u003A\u003A\u0024cacheKey", + "name": "cacheKey", + "summary": "Current\u0020cache\u0020key\u0020name.", + "url": "classes/HeimrichHannot-UtilsBundle-Choice-AbstractChoice.html#property_cacheKey" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Choice\\AbstractChoice\u003A\u003A\u0024context", + "name": "context", + "summary": "Current\u0020context.", + "url": "classes/HeimrichHannot-UtilsBundle-Choice-AbstractChoice.html#property_context" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Choice\\AbstractChoice\u003A\u003A\u0024framework", + "name": "framework", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Choice-AbstractChoice.html#property_framework" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Choice\\DataContainerChoice", + "name": "DataContainerChoice", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Choice-DataContainerChoice.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Choice\\DataContainerChoice\u003A\u003Acollect\u0028\u0029", + "name": "collect", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Choice-DataContainerChoice.html#method_collect" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Choice\\FieldChoice", + "name": "FieldChoice", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Choice-FieldChoice.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Choice\\FieldChoice\u003A\u003Acollect\u0028\u0029", + "name": "collect", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Choice-FieldChoice.html#method_collect" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Choice\\MessageChoice", + "name": "MessageChoice", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Choice-MessageChoice.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Choice\\MessageChoice\u003A\u003Acollect\u0028\u0029", + "name": "collect", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Choice-MessageChoice.html#method_collect" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Choice\\ModelInstanceChoice", + "name": "ModelInstanceChoice", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Choice-ModelInstanceChoice.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Choice\\ModelInstanceChoice\u003A\u003Acollect\u0028\u0029", + "name": "collect", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Choice-ModelInstanceChoice.html#method_collect" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Choice\\ModelInstanceChoice\u003A\u003ATITLE_FIELDS", + "name": "TITLE_FIELDS", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Choice-ModelInstanceChoice.html#constant_TITLE_FIELDS" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Choice\\TwigTemplateChoice", + "name": "TwigTemplateChoice", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Choice-TwigTemplateChoice.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Choice\\TwigTemplateChoice\u003A\u003Acollect\u0028\u0029", + "name": "collect", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Choice-TwigTemplateChoice.html#method_collect" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Classes\\ClassUtil", + "name": "ClassUtil", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Classes-ClassUtil.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Classes\\ClassUtil\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "ClassUtil\u0020constructor.", + "url": "classes/HeimrichHannot-UtilsBundle-Classes-ClassUtil.html#method___construct" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Classes\\ClassUtil\u003A\u003AgetParentClasses\u0028\u0029", + "name": "getParentClasses", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Classes-ClassUtil.html#method_getParentClasses" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Classes\\ClassUtil\u003A\u003AgetConstantsByPrefixes\u0028\u0029", + "name": "getConstantsByPrefixes", + "summary": "Filter\u0020class\u0020constants\u0020by\u0020given\u0020prefixes\u0020and\u0020return\u0020the\u0020extracted\u0020constants.", + "url": "classes/HeimrichHannot-UtilsBundle-Classes-ClassUtil.html#method_getConstantsByPrefixes" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Classes\\ClassUtil\u003A\u003AgetClassesInNamespace\u0028\u0029", + "name": "getClassesInNamespace", + "summary": "Returns\u0020all\u0020classes\u0020in\u0020the\u0020given\u0020namespace.", + "url": "classes/HeimrichHannot-UtilsBundle-Classes-ClassUtil.html#method_getClassesInNamespace" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Classes\\ClassUtil\u003A\u003AgetChildClasses\u0028\u0029", + "name": "getChildClasses", + "summary": "Returns\u0020all\u0020children\u0020of\u0020a\u0020given\u0020class.", + "url": "classes/HeimrichHannot-UtilsBundle-Classes-ClassUtil.html#method_getChildClasses" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Classes\\ClassUtil\u003A\u003AgetMethodNameStartIndex\u0028\u0029", + "name": "getMethodNameStartIndex", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Classes-ClassUtil.html#method_getMethodNameStartIndex" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Classes\\ClassUtil\u003A\u003AjsonSerialize\u0028\u0029", + "name": "jsonSerialize", + "summary": "Serialize\u0020a\u0020class\u0020object\u0020to\u0020JSON\u0020by\u0020iterating\u0020over\u0020all\u0020public\u0020getters\u0020\u0028get\u0028\u0029,\u0020is\u0028\u0029,\u0020...\u0029.", + "url": "classes/HeimrichHannot-UtilsBundle-Classes-ClassUtil.html#method_jsonSerialize" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Classes\\ClassUtil\u003A\u003AcallInaccessibleMethod\u0028\u0029", + "name": "callInaccessibleMethod", + "summary": "Calls\u0020an\u0020object\u0027s\u0020method\u0020which\u0020is\u0020inaccessible.", + "url": "classes/HeimrichHannot-UtilsBundle-Classes-ClassUtil.html#method_callInaccessibleMethod" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Classes\\ClassUtil\u003A\u003A\u0024arrayUtil", + "name": "arrayUtil", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Classes-ClassUtil.html#property_arrayUtil" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Classes\\ClassUtil\u003A\u003A\u0024stringUtil", + "name": "stringUtil", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Classes-ClassUtil.html#property_stringUtil" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Command\\CreateImageSizeItemsCommand", + "name": "CreateImageSizeItemsCommand", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Command-CreateImageSizeItemsCommand.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Command\\CreateImageSizeItemsCommand\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Command-CreateImageSizeItemsCommand.html#method___construct" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Command\\CreateImageSizeItemsCommand\u003A\u003Aconfigure\u0028\u0029", + "name": "configure", + "summary": "\u007B\u0040inheritdoc\u007D", + "url": "classes/HeimrichHannot-UtilsBundle-Command-CreateImageSizeItemsCommand.html#method_configure" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Command\\CreateImageSizeItemsCommand\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "\u007B\u0040inheritdoc\u007D", + "url": "classes/HeimrichHannot-UtilsBundle-Command-CreateImageSizeItemsCommand.html#method_execute" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Command\\CreateImageSizeItemsCommand\u003A\u003AcreateItem\u0028\u0029", + "name": "createItem", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Command-CreateImageSizeItemsCommand.html#method_createItem" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Command\\CreateImageSizeItemsCommand\u003A\u003AcreateImageSizes\u0028\u0029", + "name": "createImageSizes", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Command-CreateImageSizeItemsCommand.html#method_createImageSizes" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Command\\CreateImageSizeItemsCommand\u003A\u003AMODE_FIRST", + "name": "MODE_FIRST", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Command-CreateImageSizeItemsCommand.html#constant_MODE_FIRST" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Command\\CreateImageSizeItemsCommand\u003A\u003AMODE_INTERMEDIATE", + "name": "MODE_INTERMEDIATE", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Command-CreateImageSizeItemsCommand.html#constant_MODE_INTERMEDIATE" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Command\\CreateImageSizeItemsCommand\u003A\u003AMODE_LAST", + "name": "MODE_LAST", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Command-CreateImageSizeItemsCommand.html#constant_MODE_LAST" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Command\\CreateImageSizeItemsCommand\u003A\u003ADEFAULT_BREAKPOINTS", + "name": "DEFAULT_BREAKPOINTS", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Command-CreateImageSizeItemsCommand.html#constant_DEFAULT_BREAKPOINTS" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Command\\CreateImageSizeItemsCommand\u003A\u003A\u0024defaultName", + "name": "defaultName", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Command-CreateImageSizeItemsCommand.html#property_defaultName" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Command\\CreateImageSizeItemsCommand\u003A\u003A\u0024contaoFramework", + "name": "contaoFramework", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Command-CreateImageSizeItemsCommand.html#property_contaoFramework" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Command\\CreateImageSizeItemsCommand\u003A\u003A\u0024utils", + "name": "utils", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Command-CreateImageSizeItemsCommand.html#property_utils" + }, { "fqsen": "\\HeimrichHannot\\UtilsBundle\\Command\\EntityFinderCommand", "name": "EntityFinderCommand", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Command-EntityFinderCommand.html" + "url": "classes/HeimrichHannot-UtilsBundle-Command-EntityFinderCommand.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Command\\EntityFinderCommand\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Command-EntityFinderCommand.html#method___construct" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Command\\EntityFinderCommand\u003A\u003Aconfigure\u0028\u0029", + "name": "configure", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Command-EntityFinderCommand.html#method_configure" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Command\\EntityFinderCommand\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Command-EntityFinderCommand.html#method_execute" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Command\\EntityFinderCommand\u003A\u003Aloop\u0028\u0029", + "name": "loop", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Command-EntityFinderCommand.html#method_loop" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Command\\EntityFinderCommand\u003A\u003Aoutput\u0028\u0029", + "name": "output", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Command-EntityFinderCommand.html#method_output" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Command\\EntityFinderCommand\u003A\u003AfindEntity\u0028\u0029", + "name": "findEntity", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Command-EntityFinderCommand.html#method_findEntity" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Command\\EntityFinderCommand\u003A\u003AcreateText\u0028\u0029", + "name": "createText", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Command-EntityFinderCommand.html#method_createText" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Command\\EntityFinderCommand\u003A\u003ArunExtendEntityFinderEvent\u0028\u0029", + "name": "runExtendEntityFinderEvent", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Command-EntityFinderCommand.html#method_runExtendEntityFinderEvent" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Command\\EntityFinderCommand\u003A\u003AfindFrontendModuleParents\u0028\u0029", + "name": "findFrontendModuleParents", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Command-EntityFinderCommand.html#method_findFrontendModuleParents" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Command\\EntityFinderCommand\u003A\u003AfindInserttags\u0028\u0029", + "name": "findInserttags", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Command-EntityFinderCommand.html#method_findInserttags" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Command\\EntityFinderCommand\u003A\u003A\u0024defaultName", + "name": "defaultName", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Command-EntityFinderCommand.html#property_defaultName" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Command\\EntityFinderCommand\u003A\u003A\u0024contaoFramework", + "name": "contaoFramework", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Command-EntityFinderCommand.html#property_contaoFramework" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Command\\EntityFinderCommand\u003A\u003A\u0024eventDispatcher", + "name": "eventDispatcher", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Command-EntityFinderCommand.html#property_eventDispatcher" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Command\\EntityFinderCommand\u003A\u003A\u0024connection", + "name": "connection", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Command-EntityFinderCommand.html#property_connection" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Command\\EntityFinderCommand\u003A\u003A\u0024entityFinderHelper", + "name": "entityFinderHelper", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Command-EntityFinderCommand.html#property_entityFinderHelper" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Comparison\\CompareUtil", + "name": "CompareUtil", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Comparison-CompareUtil.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Comparison\\CompareUtil\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Comparison-CompareUtil.html#method___construct" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Comparison\\CompareUtil\u003A\u003AcompareValue\u0028\u0029", + "name": "compareValue", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Comparison-CompareUtil.html#method_compareValue" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Comparison\\CompareUtil\u003A\u003AcompareSingleValue\u0028\u0029", + "name": "compareSingleValue", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Comparison-CompareUtil.html#method_compareSingleValue" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Comparison\\CompareUtil\u003A\u003APHP_OPERATOR_EQUAL", + "name": "PHP_OPERATOR_EQUAL", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Comparison-CompareUtil.html#constant_PHP_OPERATOR_EQUAL" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Comparison\\CompareUtil\u003A\u003APHP_OPERATOR_UNEQUAL", + "name": "PHP_OPERATOR_UNEQUAL", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Comparison-CompareUtil.html#constant_PHP_OPERATOR_UNEQUAL" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Comparison\\CompareUtil\u003A\u003APHP_OPERATOR_LIKE", + "name": "PHP_OPERATOR_LIKE", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Comparison-CompareUtil.html#constant_PHP_OPERATOR_LIKE" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Comparison\\CompareUtil\u003A\u003APHP_OPERATOR_UNLIKE", + "name": "PHP_OPERATOR_UNLIKE", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Comparison-CompareUtil.html#constant_PHP_OPERATOR_UNLIKE" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Comparison\\CompareUtil\u003A\u003APHP_OPERATOR_IN_ARRAY", + "name": "PHP_OPERATOR_IN_ARRAY", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Comparison-CompareUtil.html#constant_PHP_OPERATOR_IN_ARRAY" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Comparison\\CompareUtil\u003A\u003APHP_OPERATOR_NOT_IN_ARRAY", + "name": "PHP_OPERATOR_NOT_IN_ARRAY", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Comparison-CompareUtil.html#constant_PHP_OPERATOR_NOT_IN_ARRAY" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Comparison\\CompareUtil\u003A\u003APHP_OPERATOR_LOWER", + "name": "PHP_OPERATOR_LOWER", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Comparison-CompareUtil.html#constant_PHP_OPERATOR_LOWER" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Comparison\\CompareUtil\u003A\u003APHP_OPERATOR_LOWER_EQUAL", + "name": "PHP_OPERATOR_LOWER_EQUAL", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Comparison-CompareUtil.html#constant_PHP_OPERATOR_LOWER_EQUAL" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Comparison\\CompareUtil\u003A\u003APHP_OPERATOR_GREATER", + "name": "PHP_OPERATOR_GREATER", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Comparison-CompareUtil.html#constant_PHP_OPERATOR_GREATER" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Comparison\\CompareUtil\u003A\u003APHP_OPERATOR_GREATER_EQUAL", + "name": "PHP_OPERATOR_GREATER_EQUAL", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Comparison-CompareUtil.html#constant_PHP_OPERATOR_GREATER_EQUAL" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Comparison\\CompareUtil\u003A\u003APHP_OPERATOR_IS_NULL", + "name": "PHP_OPERATOR_IS_NULL", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Comparison-CompareUtil.html#constant_PHP_OPERATOR_IS_NULL" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Comparison\\CompareUtil\u003A\u003APHP_OPERATOR_IS_NOT_NULL", + "name": "PHP_OPERATOR_IS_NOT_NULL", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Comparison-CompareUtil.html#constant_PHP_OPERATOR_IS_NOT_NULL" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Comparison\\CompareUtil\u003A\u003APHP_OPERATORS", + "name": "PHP_OPERATORS", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Comparison-CompareUtil.html#constant_PHP_OPERATORS" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Comparison\\CompareUtil\u003A\u003APHP_SINGLE_VALUE_OPERATORS", + "name": "PHP_SINGLE_VALUE_OPERATORS", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Comparison-CompareUtil.html#constant_PHP_SINGLE_VALUE_OPERATORS" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Comparison\\CompareUtil\u003A\u003A\u0024framework", + "name": "framework", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Comparison-CompareUtil.html#property_framework" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Container\\ContainerUtil", + "name": "ContainerUtil", + "summary": "Class\u0020ContainerUtil.", + "url": "classes/HeimrichHannot-UtilsBundle-Container-ContainerUtil.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Container\\ContainerUtil\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Container-ContainerUtil.html#method___construct" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Container\\ContainerUtil\u003A\u003AgetActiveBundles\u0028\u0029", + "name": "getActiveBundles", + "summary": "Returns\u0020the\u0020active\u0020bundles.", + "url": "classes/HeimrichHannot-UtilsBundle-Container-ContainerUtil.html#method_getActiveBundles" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Container\\ContainerUtil\u003A\u003AisBundleActive\u0028\u0029", + "name": "isBundleActive", + "summary": "Checks\u0020if\u0020some\u0020bundle\u0020is\u0020active.\u0020Pass\u0020in\u0020the\u0020class\u0020name\u0020\u0028e.g.\u0020\u0027HeimrichHannot\\FilterBundle\\HeimrichHannotContaoFilterBundle\u0027\u0020or\u0020the\u0020legacy\u0020Contao\u00203\u0020name\u0020like\u0020\u0027news\u0027\u0029.", + "url": "classes/HeimrichHannot-UtilsBundle-Container-ContainerUtil.html#method_isBundleActive" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Container\\ContainerUtil\u003A\u003AisBackend\u0028\u0029", + "name": "isBackend", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Container-ContainerUtil.html#method_isBackend" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Container\\ContainerUtil\u003A\u003AisFrontend\u0028\u0029", + "name": "isFrontend", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Container-ContainerUtil.html#method_isFrontend" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Container\\ContainerUtil\u003A\u003AisFrontendCron\u0028\u0029", + "name": "isFrontendCron", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Container-ContainerUtil.html#method_isFrontendCron" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Container\\ContainerUtil\u003A\u003AisInstall\u0028\u0029", + "name": "isInstall", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Container-ContainerUtil.html#method_isInstall" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Container\\ContainerUtil\u003A\u003AisDev\u0028\u0029", + "name": "isDev", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Container-ContainerUtil.html#method_isDev" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Container\\ContainerUtil\u003A\u003AgetCurrentRequest\u0028\u0029", + "name": "getCurrentRequest", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Container-ContainerUtil.html#method_getCurrentRequest" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Container\\ContainerUtil\u003A\u003Alog\u0028\u0029", + "name": "log", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Container-ContainerUtil.html#method_log" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Container\\ContainerUtil\u003A\u003AgetProjectDir\u0028\u0029", + "name": "getProjectDir", + "summary": "Returns\u0020the\u0020project\u0020root\u0020path.", + "url": "classes/HeimrichHannot-UtilsBundle-Container-ContainerUtil.html#method_getProjectDir" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Container\\ContainerUtil\u003A\u003AgetWebDir\u0028\u0029", + "name": "getWebDir", + "summary": "Returns\u0020the\u0020web\u0020folder\u0020path.", + "url": "classes/HeimrichHannot-UtilsBundle-Container-ContainerUtil.html#method_getWebDir" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Container\\ContainerUtil\u003A\u003AgetBundlePath\u0028\u0029", + "name": "getBundlePath", + "summary": "Returns\u0020the\u0020path\u0020to\u0020the\u0020bundle\u0020in\u0020vendor\u0020folder\nAttention\u003A\u0020resolves\u0020symlinks\u0021", + "url": "classes/HeimrichHannot-UtilsBundle-Container-ContainerUtil.html#method_getBundlePath" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Container\\ContainerUtil\u003A\u003AgetBundleResourcePath\u0028\u0029", + "name": "getBundleResourcePath", + "summary": "Returns\u0020the\u0020path\u0020or\u0020paths\u0020to\u0020a\u0020ressource\u0020within\u0020a\u0020bundle\nAttention\u003A\u0020resolves\u0020symlinks\u0021", + "url": "classes/HeimrichHannot-UtilsBundle-Container-ContainerUtil.html#method_getBundleResourcePath" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Container\\ContainerUtil\u003A\u003AmergeConfigFile\u0028\u0029", + "name": "mergeConfigFile", + "summary": "Recursively\u0020merges\u0020a\u0020config.yml\u0020with\u0020a\u0020\u0024extensionConfigs\u0020array\u0020in\u0020the\u0020context\u0020of\u0020ExtensionPluginInterface\u003A\u003AgetExtensionConfig\u0028\u0029.", + "url": "classes/HeimrichHannot-UtilsBundle-Container-ContainerUtil.html#method_mergeConfigFile" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Container\\ContainerUtil\u003A\u003AisMaintenanceModeActive\u0028\u0029", + "name": "isMaintenanceModeActive", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Container-ContainerUtil.html#method_isMaintenanceModeActive" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Container\\ContainerUtil\u003A\u003AisPreviewMode\u0028\u0029", + "name": "isPreviewMode", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Container-ContainerUtil.html#method_isPreviewMode" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Container\\ContainerUtil\u003A\u003A\u0024container", + "name": "container", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Container-ContainerUtil.html#property_container" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Container\\ContainerUtil\u003A\u003A\u0024utils", + "name": "utils", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Container-ContainerUtil.html#property_utils" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\ContaoManager\\Plugin", + "name": "Plugin", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-ContaoManager-Plugin.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\ContaoManager\\Plugin\u003A\u003AgetBundles\u0028\u0029", + "name": "getBundles", + "summary": "\u007B\u0040inheritdoc\u007D", + "url": "classes/HeimrichHannot-UtilsBundle-ContaoManager-Plugin.html#method_getBundles" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\ContaoManager\\Plugin\u003A\u003AregisterContainerConfiguration\u0028\u0029", + "name": "registerContainerConfiguration", + "summary": "Allows\u0020a\u0020plugin\u0020to\u0020load\u0020container\u0020configuration.", + "url": "classes/HeimrichHannot-UtilsBundle-ContaoManager-Plugin.html#method_registerContainerConfiguration" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Content\\ContentUtil", + "name": "ContentUtil", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Content-ContentUtil.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Content\\ContentUtil\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Content-ContentUtil.html#method___construct" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Content\\ContentUtil\u003A\u003AgetMultilingualElements\u0028\u0029", + "name": "getMultilingualElements", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Content-ContentUtil.html#method_getMultilingualElements" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Content\\ContentUtil\u003A\u003A\u0024framework", + "name": "framework", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Content-ContentUtil.html#property_framework" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Content\\ContentUtil\u003A\u003A\u0024container", + "name": "container", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Content-ContentUtil.html#property_container" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Database\\DatabaseUtil", + "name": "DatabaseUtil", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Database-DatabaseUtil.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Database\\DatabaseUtil\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Database-DatabaseUtil.html#method___construct" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Database\\DatabaseUtil\u003A\u003AprocessInPieces\u0028\u0029", + "name": "processInPieces", + "summary": "Process\u0020a\u0020query\u0020in\u0020pieces,\u0020run\u0020callback\u0020within\u0020each\u0020cycle.", + "url": "classes/HeimrichHannot-UtilsBundle-Database-DatabaseUtil.html#method_processInPieces" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Database\\DatabaseUtil\u003A\u003AdoBulkInsert\u0028\u0029", + "name": "doBulkInsert", + "summary": "Bulk\u0020insert\u0020SQL\u0020of\u0020given\u0020data.", + "url": "classes/HeimrichHannot-UtilsBundle-Database-DatabaseUtil.html#method_doBulkInsert" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Database\\DatabaseUtil\u003A\u003AcreateWhereForSerializedBlob\u0028\u0029", + "name": "createWhereForSerializedBlob", + "summary": "Create\u0020a\u0020where\u0020condition\u0020for\u0020a\u0020field\u0020that\u0020contains\u0020a\u0020serialized\u0020blob.", + "url": "classes/HeimrichHannot-UtilsBundle-Database-DatabaseUtil.html#method_createWhereForSerializedBlob" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Database\\DatabaseUtil\u003A\u003AtransformVerboseOperator\u0028\u0029", + "name": "transformVerboseOperator", + "summary": "Transforms\u0020verbose\u0020operators\u0020to\u0020valid\u0020MySQL\u0020operators\u0020\u0028aka\u0020junctors\u0029.", + "url": "classes/HeimrichHannot-UtilsBundle-Database-DatabaseUtil.html#method_transformVerboseOperator" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Database\\DatabaseUtil\u003A\u003AcomputeCondition\u0028\u0029", + "name": "computeCondition", + "summary": "Computes\u0020a\u0020MySQL\u0020condition\u0020appropriate\u0020for\u0020the\u0020given\u0020operator.", + "url": "classes/HeimrichHannot-UtilsBundle-Database-DatabaseUtil.html#method_computeCondition" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Database\\DatabaseUtil\u003A\u003AcomposeWhereForQueryBuilder\u0028\u0029", + "name": "composeWhereForQueryBuilder", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Database-DatabaseUtil.html#method_composeWhereForQueryBuilder" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Database\\DatabaseUtil\u003A\u003AgetChildRecords\u0028\u0029", + "name": "getChildRecords", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Database-DatabaseUtil.html#method_getChildRecords" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Database\\DatabaseUtil\u003A\u003AfindResultByPk\u0028\u0029", + "name": "findResultByPk", + "summary": "Returns\u0020a\u0020database\u0020result\u0020for\u0020a\u0020given\u0020table\u0020and\u0020id\u0028primary\u0020key\u0029.", + "url": "classes/HeimrichHannot-UtilsBundle-Database-DatabaseUtil.html#method_findResultByPk" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Database\\DatabaseUtil\u003A\u003AfindOneResultBy\u0028\u0029", + "name": "findOneResultBy", + "summary": "Return\u0020a\u0020single\u0020database\u0020result\u0020by\u0020table\u0020and\u0020search\u0020criteria.", + "url": "classes/HeimrichHannot-UtilsBundle-Database-DatabaseUtil.html#method_findOneResultBy" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Database\\DatabaseUtil\u003A\u003AfindResultsBy\u0028\u0029", + "name": "findResultsBy", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Database-DatabaseUtil.html#method_findResultsBy" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Database\\DatabaseUtil\u003A\u003Ainsert\u0028\u0029", + "name": "insert", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Database-DatabaseUtil.html#method_insert" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Database\\DatabaseUtil\u003A\u003Aupdate\u0028\u0029", + "name": "update", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Database-DatabaseUtil.html#method_update" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Database\\DatabaseUtil\u003A\u003Adelete\u0028\u0029", + "name": "delete", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Database-DatabaseUtil.html#method_delete" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Database\\DatabaseUtil\u003A\u003AbeginTransaction\u0028\u0029", + "name": "beginTransaction", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Database-DatabaseUtil.html#method_beginTransaction" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Database\\DatabaseUtil\u003A\u003AcommitTransaction\u0028\u0029", + "name": "commitTransaction", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Database-DatabaseUtil.html#method_commitTransaction" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Database\\DatabaseUtil\u003A\u003AcreateQueryWithoutRelations\u0028\u0029", + "name": "createQueryWithoutRelations", + "summary": "Adapted\u0020from\u0020\\Contao\\Model\\QueryBuilder\u003A\u003Afind\u0028\u0029.", + "url": "classes/HeimrichHannot-UtilsBundle-Database-DatabaseUtil.html#method_createQueryWithoutRelations" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Database\\DatabaseUtil\u003A\u003ASQL_CONDITION_OR", + "name": "SQL_CONDITION_OR", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Database-DatabaseUtil.html#constant_SQL_CONDITION_OR" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Database\\DatabaseUtil\u003A\u003ASQL_CONDITION_AND", + "name": "SQL_CONDITION_AND", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Database-DatabaseUtil.html#constant_SQL_CONDITION_AND" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Database\\DatabaseUtil\u003A\u003AOPERATOR_LIKE", + "name": "OPERATOR_LIKE", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Database-DatabaseUtil.html#constant_OPERATOR_LIKE" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Database\\DatabaseUtil\u003A\u003AOPERATOR_UNLIKE", + "name": "OPERATOR_UNLIKE", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Database-DatabaseUtil.html#constant_OPERATOR_UNLIKE" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Database\\DatabaseUtil\u003A\u003AOPERATOR_EQUAL", + "name": "OPERATOR_EQUAL", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Database-DatabaseUtil.html#constant_OPERATOR_EQUAL" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Database\\DatabaseUtil\u003A\u003AOPERATOR_UNEQUAL", + "name": "OPERATOR_UNEQUAL", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Database-DatabaseUtil.html#constant_OPERATOR_UNEQUAL" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Database\\DatabaseUtil\u003A\u003AOPERATOR_LOWER", + "name": "OPERATOR_LOWER", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Database-DatabaseUtil.html#constant_OPERATOR_LOWER" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Database\\DatabaseUtil\u003A\u003AOPERATOR_LOWER_EQUAL", + "name": "OPERATOR_LOWER_EQUAL", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Database-DatabaseUtil.html#constant_OPERATOR_LOWER_EQUAL" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Database\\DatabaseUtil\u003A\u003AOPERATOR_GREATER", + "name": "OPERATOR_GREATER", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Database-DatabaseUtil.html#constant_OPERATOR_GREATER" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Database\\DatabaseUtil\u003A\u003AOPERATOR_GREATER_EQUAL", + "name": "OPERATOR_GREATER_EQUAL", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Database-DatabaseUtil.html#constant_OPERATOR_GREATER_EQUAL" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Database\\DatabaseUtil\u003A\u003AOPERATOR_IN", + "name": "OPERATOR_IN", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Database-DatabaseUtil.html#constant_OPERATOR_IN" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Database\\DatabaseUtil\u003A\u003AOPERATOR_NOT_IN", + "name": "OPERATOR_NOT_IN", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Database-DatabaseUtil.html#constant_OPERATOR_NOT_IN" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Database\\DatabaseUtil\u003A\u003AOPERATOR_IS_NULL", + "name": "OPERATOR_IS_NULL", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Database-DatabaseUtil.html#constant_OPERATOR_IS_NULL" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Database\\DatabaseUtil\u003A\u003AOPERATOR_IS_NOT_NULL", + "name": "OPERATOR_IS_NOT_NULL", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Database-DatabaseUtil.html#constant_OPERATOR_IS_NOT_NULL" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Database\\DatabaseUtil\u003A\u003AOPERATOR_REGEXP", + "name": "OPERATOR_REGEXP", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Database-DatabaseUtil.html#constant_OPERATOR_REGEXP" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Database\\DatabaseUtil\u003A\u003AOPERATOR_NOT_REGEXP", + "name": "OPERATOR_NOT_REGEXP", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Database-DatabaseUtil.html#constant_OPERATOR_NOT_REGEXP" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Database\\DatabaseUtil\u003A\u003AOPERATOR_IS_EMPTY", + "name": "OPERATOR_IS_EMPTY", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Database-DatabaseUtil.html#constant_OPERATOR_IS_EMPTY" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Database\\DatabaseUtil\u003A\u003AOPERATOR_IS_NOT_EMPTY", + "name": "OPERATOR_IS_NOT_EMPTY", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Database-DatabaseUtil.html#constant_OPERATOR_IS_NOT_EMPTY" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Database\\DatabaseUtil\u003A\u003AON_DUPLICATE_KEY_IGNORE", + "name": "ON_DUPLICATE_KEY_IGNORE", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Database-DatabaseUtil.html#constant_ON_DUPLICATE_KEY_IGNORE" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Database\\DatabaseUtil\u003A\u003AON_DUPLICATE_KEY_UPDATE", + "name": "ON_DUPLICATE_KEY_UPDATE", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Database-DatabaseUtil.html#constant_ON_DUPLICATE_KEY_UPDATE" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Database\\DatabaseUtil\u003A\u003AOPERATORS", + "name": "OPERATORS", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Database-DatabaseUtil.html#constant_OPERATORS" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Database\\DatabaseUtil\u003A\u003ANEGATIVE_OPERATORS", + "name": "NEGATIVE_OPERATORS", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Database-DatabaseUtil.html#constant_NEGATIVE_OPERATORS" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Database\\DatabaseUtil\u003A\u003AOPERATOR_MAPPING", + "name": "OPERATOR_MAPPING", + "summary": "Maps\u0020operators\u0020of\u0020this\u0020class\u0020to\u0020its\u0020corresponding\u0020Doctrine\u0020ExpressionBuilder\u0020method.", + "url": "classes/HeimrichHannot-UtilsBundle-Database-DatabaseUtil.html#constant_OPERATOR_MAPPING" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Database\\DatabaseUtil\u003A\u003A\u0024framework", + "name": "framework", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Database-DatabaseUtil.html#property_framework" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Date\\DateUtil", + "name": "DateUtil", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Date-DateUtil.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Date\\DateUtil\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Date-DateUtil.html#method___construct" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Date\\DateUtil\u003A\u003AgetTimeStamp\u0028\u0029", + "name": "getTimeStamp", + "summary": "Get\u0020the\u0020timestamp\u0020based\u0020on\u0020input\u0020date,\u0020no\u0020matter\u0020input\u0020is\u0020timestamp\u0020or\u0020string\u0020date.", + "url": "classes/HeimrichHannot-UtilsBundle-Date-DateUtil.html#method_getTimeStamp" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Date\\DateUtil\u003A\u003AgetTimePeriodInSeconds\u0028\u0029", + "name": "getTimePeriodInSeconds", + "summary": "Returns\u0020the\u0020time\u0020in\u0020seconds\u0020of\u0020an\u0020given\u0020time\u0020period.", + "url": "classes/HeimrichHannot-UtilsBundle-Date-DateUtil.html#method_getTimePeriodInSeconds" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Date\\DateUtil\u003A\u003AtransformPhpDateFormatToRFC3339\u0028\u0029", + "name": "transformPhpDateFormatToRFC3339", + "summary": "Format\u0020a\u0020php\u0020date\u0020formate\u0020pattern\u0020to\u0020an\u0020RFC3339\u0020compliant\u0020format.", + "url": "classes/HeimrichHannot-UtilsBundle-Date-DateUtil.html#method_transformPhpDateFormatToRFC3339" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Date\\DateUtil\u003A\u003AtransformPhpDateFormatToISO8601\u0028\u0029", + "name": "transformPhpDateFormatToISO8601", + "summary": "Format\u0020a\u0020php\u0020date\u0020formate\u0020pattern\u0020to\u0020an\u0020ISO8601\u0020compliant\u0020format.", + "url": "classes/HeimrichHannot-UtilsBundle-Date-DateUtil.html#method_transformPhpDateFormatToISO8601" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Date\\DateUtil\u003A\u003AgetGMTMidnightTstamp\u0028\u0029", + "name": "getGMTMidnightTstamp", + "summary": "transfer\u0020a\u0020given\u0020timestamp\u0020to\u0020a\u0020gmt\u0020timestamp\u0020at\u0020midnight.", + "url": "classes/HeimrichHannot-UtilsBundle-Date-DateUtil.html#method_getGMTMidnightTstamp" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Date\\DateUtil\u003A\u003AisMonthInDateFormat\u0028\u0029", + "name": "isMonthInDateFormat", + "summary": "Checks\u0020if\u0020a\u0020form\u0020of\u0020month\u0020is\u0020available\u0020in\u0020the\u0020date\u0020format.", + "url": "classes/HeimrichHannot-UtilsBundle-Date-DateUtil.html#method_isMonthInDateFormat" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Date\\DateUtil\u003A\u003AisDayInDateFormat\u0028\u0029", + "name": "isDayInDateFormat", + "summary": "Checks\u0020if\u0020a\u0020form\u0020of\u0020day\u0020is\u0020available\u0020in\u0020the\u0020date\u0020format.", + "url": "classes/HeimrichHannot-UtilsBundle-Date-DateUtil.html#method_isDayInDateFormat" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Date\\DateUtil\u003A\u003AisYearInDateFormat\u0028\u0029", + "name": "isYearInDateFormat", + "summary": "Checks\u0020if\u0020a\u0020form\u0020of\u0020year\u0020is\u0020available\u0020in\u0020the\u0020date\u0020format.", + "url": "classes/HeimrichHannot-UtilsBundle-Date-DateUtil.html#method_isYearInDateFormat" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Date\\DateUtil\u003A\u003AgetMonthTranslationMap\u0028\u0029", + "name": "getMonthTranslationMap", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Date-DateUtil.html#method_getMonthTranslationMap" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Date\\DateUtil\u003A\u003AgetShortMonthTranslationMap\u0028\u0029", + "name": "getShortMonthTranslationMap", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Date-DateUtil.html#method_getShortMonthTranslationMap" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Date\\DateUtil\u003A\u003AtranslateMonthsToEnglish\u0028\u0029", + "name": "translateMonthsToEnglish", + "summary": "Translates\u0020available\u0020months\u0020inside\u0020a\u0020given\u0020string\u0020into\u0020their\u0020English\u0020representations\u0020taking\u0020into\u0020account\u0020the\u0020current\u0020language.", + "url": "classes/HeimrichHannot-UtilsBundle-Date-DateUtil.html#method_translateMonthsToEnglish" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Date\\DateUtil\u003A\u003AtranslateMonths\u0028\u0029", + "name": "translateMonths", + "summary": "Translates\u0020available\u0020months\u0020inside\u0020a\u0020given\u0020string\u0020from\u0020English\u0020to\u0020the\u0020current\u0020language.", + "url": "classes/HeimrichHannot-UtilsBundle-Date-DateUtil.html#method_translateMonths" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Date\\DateUtil\u003A\u003AgetFormattedDateTime\u0028\u0029", + "name": "getFormattedDateTime", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Date-DateUtil.html#method_getFormattedDateTime" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Date\\DateUtil\u003A\u003AgetFormattedDateTimeByEvent\u0028\u0029", + "name": "getFormattedDateTimeByEvent", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Date-DateUtil.html#method_getFormattedDateTimeByEvent" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Date\\DateUtil\u003A\u003AgetDaysBetween\u0028\u0029", + "name": "getDaysBetween", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Date-DateUtil.html#method_getDaysBetween" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Date\\DateUtil\u003A\u003AconvertSecondsToHumanReadableFormat\u0028\u0029", + "name": "convertSecondsToHumanReadableFormat", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Date-DateUtil.html#method_convertSecondsToHumanReadableFormat" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Date\\DateUtil\u003A\u003A\u0024framework", + "name": "framework", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Date-DateUtil.html#property_framework" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Date\\DateUtil\u003A\u003A\u0024container", + "name": "container", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Date-DateUtil.html#property_container" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AbstractDcaField", + "name": "AbstractDcaField", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-AbstractDcaField.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AbstractDcaField\u003A\u003Aregister\u0028\u0029", + "name": "register", + "summary": "Register\u0020a\u0020dca\u0020to\u0020have\u0020an\u0020author\u0020field\u0020and\u0020update\u0020logic\u0020added.", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-AbstractDcaField.html#method_register" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AbstractDcaField\u003A\u003AstoreConfig\u0028\u0029", + "name": "storeConfig", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-AbstractDcaField.html#method_storeConfig" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AbstractDcaField\u003A\u003AloadConfig\u0028\u0029", + "name": "loadConfig", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-AbstractDcaField.html#method_loadConfig" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AbstractDcaField\u003A\u003AgetRegistrations\u0028\u0029", + "name": "getRegistrations", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-AbstractDcaField.html#method_getRegistrations" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AbstractDcaField\u003A\u003AcreateOptionObject\u0028\u0029", + "name": "createOptionObject", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-AbstractDcaField.html#method_createOptionObject" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AuthorField", + "name": "AuthorField", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-AuthorField.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AuthorField\u003A\u003AgetRegistrations\u0028\u0029", + "name": "getRegistrations", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-AuthorField.html#method_getRegistrations" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AuthorField\u003A\u003AcreateOptionObject\u0028\u0029", + "name": "createOptionObject", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-AuthorField.html#method_createOptionObject" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AuthorField\u003A\u003AstoreConfig\u0028\u0029", + "name": "storeConfig", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-AuthorField.html#method_storeConfig" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AuthorField\u003A\u003AloadConfig\u0028\u0029", + "name": "loadConfig", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-AuthorField.html#method_loadConfig" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AuthorField\u003A\u003ATYPE_USER", + "name": "TYPE_USER", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-AuthorField.html#constant_TYPE_USER" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AuthorField\u003A\u003ATYPE_MEMBER", + "name": "TYPE_MEMBER", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-AuthorField.html#constant_TYPE_MEMBER" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AuthorField\u003A\u003A\u0024tables", + "name": "tables", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-AuthorField.html#property_tables" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AuthorFieldConfiguration", + "name": "AuthorFieldConfiguration", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-AuthorFieldConfiguration.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AuthorFieldConfiguration\u003A\u003AsetType\u0028\u0029", + "name": "setType", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-AuthorFieldConfiguration.html#method_setType" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AuthorFieldConfiguration\u003A\u003AhasFieldNamePrefix\u0028\u0029", + "name": "hasFieldNamePrefix", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-AuthorFieldConfiguration.html#method_hasFieldNamePrefix" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AuthorFieldConfiguration\u003A\u003AgetFieldNamePrefix\u0028\u0029", + "name": "getFieldNamePrefix", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-AuthorFieldConfiguration.html#method_getFieldNamePrefix" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AuthorFieldConfiguration\u003A\u003AsetFieldNamePrefix\u0028\u0029", + "name": "setFieldNamePrefix", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-AuthorFieldConfiguration.html#method_setFieldNamePrefix" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AuthorFieldConfiguration\u003A\u003AisUseDefaultLabel\u0028\u0029", + "name": "isUseDefaultLabel", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-AuthorFieldConfiguration.html#method_isUseDefaultLabel" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AuthorFieldConfiguration\u003A\u003AsetUseDefaultLabel\u0028\u0029", + "name": "setUseDefaultLabel", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-AuthorFieldConfiguration.html#method_setUseDefaultLabel" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AuthorFieldConfiguration\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-AuthorFieldConfiguration.html#method_getType" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AuthorFieldConfiguration\u003A\u003A\u0024type", + "name": "type", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-AuthorFieldConfiguration.html#property_type" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AuthorFieldConfiguration\u003A\u003A\u0024fieldNamePrefix", + "name": "fieldNamePrefix", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-AuthorFieldConfiguration.html#property_fieldNamePrefix" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AuthorFieldConfiguration\u003A\u003A\u0024useDefaultLabel", + "name": "useDefaultLabel", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-AuthorFieldConfiguration.html#property_useDefaultLabel" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AuthorFieldConfiguration\u003A\u003A\u0024exclude", + "name": "exclude", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-AuthorFieldConfiguration.html#property_exclude" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AuthorFieldConfiguration\u003A\u003A\u0024search", + "name": "search", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-AuthorFieldConfiguration.html#property_search" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AuthorFieldConfiguration\u003A\u003A\u0024filter", + "name": "filter", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-AuthorFieldConfiguration.html#property_filter" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DateAddedField", + "name": "DateAddedField", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DateAddedField.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DateAddedField\u003A\u003AstoreConfig\u0028\u0029", + "name": "storeConfig", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DateAddedField.html#method_storeConfig" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DateAddedField\u003A\u003AloadConfig\u0028\u0029", + "name": "loadConfig", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DateAddedField.html#method_loadConfig" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DateAddedField\u003A\u003AcreateOptionObject\u0028\u0029", + "name": "createOptionObject", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DateAddedField.html#method_createOptionObject" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DateAddedField\u003A\u003A\u0024tables", + "name": "tables", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DateAddedField.html#property_tables" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaFieldConfiguration", + "name": "DcaFieldConfiguration", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaFieldConfiguration.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaFieldConfiguration\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaFieldConfiguration.html#method___construct" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaFieldConfiguration\u003A\u003AgetTable\u0028\u0029", + "name": "getTable", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaFieldConfiguration.html#method_getTable" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaFieldConfiguration\u003A\u003AisSorting\u0028\u0029", + "name": "isSorting", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaFieldConfiguration.html#method_isSorting" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaFieldConfiguration\u003A\u003AsetSorting\u0028\u0029", + "name": "setSorting", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaFieldConfiguration.html#method_setSorting" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaFieldConfiguration\u003A\u003AgetFlag\u0028\u0029", + "name": "getFlag", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaFieldConfiguration.html#method_getFlag" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaFieldConfiguration\u003A\u003AsetFlag\u0028\u0029", + "name": "setFlag", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaFieldConfiguration.html#method_setFlag" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaFieldConfiguration\u003A\u003AisExclude\u0028\u0029", + "name": "isExclude", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaFieldConfiguration.html#method_isExclude" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaFieldConfiguration\u003A\u003AsetExclude\u0028\u0029", + "name": "setExclude", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaFieldConfiguration.html#method_setExclude" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaFieldConfiguration\u003A\u003AisSearch\u0028\u0029", + "name": "isSearch", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaFieldConfiguration.html#method_isSearch" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaFieldConfiguration\u003A\u003AsetSearch\u0028\u0029", + "name": "setSearch", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaFieldConfiguration.html#method_setSearch" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaFieldConfiguration\u003A\u003AisFilter\u0028\u0029", + "name": "isFilter", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaFieldConfiguration.html#method_isFilter" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaFieldConfiguration\u003A\u003AsetFilter\u0028\u0029", + "name": "setFilter", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaFieldConfiguration.html#method_setFilter" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaFieldConfiguration\u003A\u003A\u0024table", + "name": "table", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaFieldConfiguration.html#property_table" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaFieldConfiguration\u003A\u003A\u0024flag", + "name": "flag", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaFieldConfiguration.html#property_flag" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaFieldConfiguration\u003A\u003A\u0024exclude", + "name": "exclude", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaFieldConfiguration.html#property_exclude" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaFieldConfiguration\u003A\u003A\u0024search", + "name": "search", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaFieldConfiguration.html#property_search" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaFieldConfiguration\u003A\u003A\u0024filter", + "name": "filter", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaFieldConfiguration.html#property_filter" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaFieldConfiguration\u003A\u003A\u0024sorting", + "name": "sorting", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaFieldConfiguration.html#property_sorting" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaUtil", + "name": "DcaUtil", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaUtil.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaUtil\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaUtil.html#method___construct" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaUtil\u003A\u003AgetEditLink\u0028\u0029", + "name": "getEditLink", + "summary": "Get\u0020a\u0020contao\u0020backend\u0020modal\u0020edit\u0020link.", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaUtil.html#method_getEditLink" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaUtil\u003A\u003AgetModalEditLink\u0028\u0029", + "name": "getModalEditLink", + "summary": "Get\u0020a\u0020contao\u0020backend\u0020modal\u0020edit\u0020link.", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaUtil.html#method_getModalEditLink" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaUtil\u003A\u003AgetArchiveModalEditLink\u0028\u0029", + "name": "getArchiveModalEditLink", + "summary": "Get\u0020a\u0020contao\u0020backend\u0020modal\u0020archive\u0020edit\u0020link.", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaUtil.html#method_getArchiveModalEditLink" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaUtil\u003A\u003AgetPopupWizardLink\u0028\u0029", + "name": "getPopupWizardLink", + "summary": "Get\u0020a\u0020contao\u0020backend\u0020popup\u0020link.", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaUtil.html#method_getPopupWizardLink" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaUtil\u003A\u003AsetDefaultsFromDca\u0028\u0029", + "name": "setDefaultsFromDca", + "summary": "Set\u0020initial\u0020\u0024varData\u0020from\u0020dca.", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaUtil.html#method_setDefaultsFromDca" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaUtil\u003A\u003AgetConfigByArrayOrCallbackOrFunction\u0028\u0029", + "name": "getConfigByArrayOrCallbackOrFunction", + "summary": "Retrieves\u0020an\u0020array\u0020from\u0020a\u0020dca\u0020config\u0020\u0028in\u0020most\u0020cases\u0020eval\u0029\u0020in\u0020the\u0020following\u0020priorities\u003A.", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaUtil.html#method_getConfigByArrayOrCallbackOrFunction" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaUtil\u003A\u003AsetDateAdded\u0028\u0029", + "name": "setDateAdded", + "summary": "Sets\u0020the\u0020current\u0020date\u0020as\u0020the\u0020date\u0020added\u0020\u002D\u003E\u0020usually\u0020used\u0020on\u0020submit.", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaUtil.html#method_setDateAdded" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaUtil\u003A\u003AsetDateAddedOnCopy\u0028\u0029", + "name": "setDateAddedOnCopy", + "summary": "Sets\u0020the\u0020current\u0020date\u0020as\u0020the\u0020date\u0020added\u0020\u002D\u003E\u0020usually\u0020used\u0020on\u0020copy.", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaUtil.html#method_setDateAddedOnCopy" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaUtil\u003A\u003AgetFields\u0028\u0029", + "name": "getFields", + "summary": "Returns\u0020a\u0020list\u0020of\u0020fields\u0020as\u0020an\u0020option\u0020array\u0020for\u0020dca\u0020fields.", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaUtil.html#method_getFields" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaUtil\u003A\u003AaddOverridableFields\u0028\u0029", + "name": "addOverridableFields", + "summary": "Adds\u0020an\u0020override\u0020selector\u0020to\u0020every\u0020field\u0020in\u0020\u0024fields\u0020to\u0020the\u0020dca\u0020associated\u0020with\u0020\u0024destinationTable.", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaUtil.html#method_addOverridableFields" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaUtil\u003A\u003AgetOverridableProperty\u0028\u0029", + "name": "getOverridableProperty", + "summary": "Retrieves\u0020a\u0020property\u0020of\u0020given\u0020contao\u0020model\u0020instances\u0020by\u0020\u002Aascending\u002A\u0020priority,\u0020i.e.\u0020the\u0020last\u0020instance\u0020of\u0020\u0024instances\nwill\u0020have\u0020the\u0020highest\u0020priority.", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaUtil.html#method_getOverridableProperty" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaUtil\u003A\u003AflattenPaletteForSubEntities\u0028\u0029", + "name": "flattenPaletteForSubEntities", + "summary": "This\u0020function\u0020transforms\u0020an\u0020entity\u0027s\u0020palette\u0020\u0028that\u0020can\u0020also\u0020contain\u0020sub\u0020palettes\u0020and\u0020concatenated\u0020type\u0020selectors\u0029\u0020to\u0020a\u0020flatten\npalette\u0020where\u0020every\u0020field\u0020can\u0020be\u0020overridden.", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaUtil.html#method_flattenPaletteForSubEntities" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaUtil\u003A\u003AaliasExist\u0028\u0029", + "name": "aliasExist", + "summary": "Return\u0020if\u0020the\u0020current\u0020alias\u0020already\u0020exist\u0020in\u0020table.", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaUtil.html#method_aliasExist" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaUtil\u003A\u003AgenerateAlias\u0028\u0029", + "name": "generateAlias", + "summary": "Generate\u0020an\u0020alias\u0020with\u0020unique\u0020check.", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaUtil.html#method_generateAlias" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaUtil\u003A\u003AaddAuthorFieldAndCallback\u0028\u0029", + "name": "addAuthorFieldAndCallback", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaUtil.html#method_addAuthorFieldAndCallback" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaUtil\u003A\u003AsetAuthorIDOnCreate\u0028\u0029", + "name": "setAuthorIDOnCreate", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaUtil.html#method_setAuthorIDOnCreate" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaUtil\u003A\u003AmodifyAuthorPaletteOnLoad\u0028\u0029", + "name": "modifyAuthorPaletteOnLoad", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaUtil.html#method_modifyAuthorPaletteOnLoad" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaUtil\u003A\u003AgetDataContainers\u0028\u0029", + "name": "getDataContainers", + "summary": "Returns\u0020\u0028nearly\u0029\u0020all\u0020registered\u0020datacontainers\u0020as\u0020array.", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaUtil.html#method_getDataContainers" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaUtil\u003A\u003AgetNewNotificationTypeArray\u0028\u0029", + "name": "getNewNotificationTypeArray", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaUtil.html#method_getNewNotificationTypeArray" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaUtil\u003A\u003AactivateNotificationType\u0028\u0029", + "name": "activateNotificationType", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaUtil.html#method_activateNotificationType" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaUtil\u003A\u003AaddAliasToDca\u0028\u0029", + "name": "addAliasToDca", + "summary": "Adds\u0020an\u0020alias\u0020field\u0020to\u0020the\u0020dca\u0020and\u0020to\u0020the\u0020desired\u0020palettes.", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaUtil.html#method_addAliasToDca" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaUtil\u003A\u003AgetLocalizedFieldName\u0028\u0029", + "name": "getLocalizedFieldName", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaUtil.html#method_getLocalizedFieldName" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaUtil\u003A\u003AloadDc\u0028\u0029", + "name": "loadDc", + "summary": "Load\u0020a\u0020data\u0020container\u0020in\u0020a\u0020testable\u0020way.", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaUtil.html#method_loadDc" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaUtil\u003A\u003AloadLanguageFile\u0028\u0029", + "name": "loadLanguageFile", + "summary": "Load\u0020a\u0020language\u0020file\u0020in\u0020a\u0020testable\u0020way.", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaUtil.html#method_loadLanguageFile" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaUtil\u003A\u003AisDcMultilingual\u0028\u0029", + "name": "isDcMultilingual", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaUtil.html#method_isDcMultilingual" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaUtil\u003A\u003AisDcMultilingual3\u0028\u0029", + "name": "isDcMultilingual3", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaUtil.html#method_isDcMultilingual3" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaUtil\u003A\u003AgenerateDcOperationsButtons\u0028\u0029", + "name": "generateDcOperationsButtons", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaUtil.html#method_generateDcOperationsButtons" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaUtil\u003A\u003AdoGenerateDcOperationsButtons\u0028\u0029", + "name": "doGenerateDcOperationsButtons", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaUtil.html#method_doGenerateDcOperationsButtons" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaUtil\u003A\u003AgenerateSitemap\u0028\u0029", + "name": "generateSitemap", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaUtil.html#method_generateSitemap" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaUtil\u003A\u003AgetDCTable\u0028\u0029", + "name": "getDCTable", + "summary": "Mostly\u0020used\u0020for\u0020Form\u003A\u003AprepareSpecialValueForOutput\u0028\u0029.", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaUtil.html#method_getDCTable" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaUtil\u003A\u003AgetAuthorNameByUserId\u0028\u0029", + "name": "getAuthorNameByUserId", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaUtil.html#method_getAuthorNameByUserId" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaUtil\u003A\u003AgetAuthorNameLinkByUserId\u0028\u0029", + "name": "getAuthorNameLinkByUserId", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaUtil.html#method_getAuthorNameLinkByUserId" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaUtil\u003A\u003AsetFieldsToReadOnly\u0028\u0029", + "name": "setFieldsToReadOnly", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaUtil.html#method_setFieldsToReadOnly" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaUtil\u003A\u003AgetTranslatedModuleNameByTable\u0028\u0029", + "name": "getTranslatedModuleNameByTable", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaUtil.html#method_getTranslatedModuleNameByTable" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaUtil\u003A\u003AgetRenderedDiff\u0028\u0029", + "name": "getRenderedDiff", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaUtil.html#method_getRenderedDiff" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaUtil\u003A\u003AprepareRowEntryForList\u0028\u0029", + "name": "prepareRowEntryForList", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaUtil.html#method_prepareRowEntryForList" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaUtil\u003A\u003AgetFieldLabel\u0028\u0029", + "name": "getFieldLabel", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaUtil.html#method_getFieldLabel" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaUtil\u003A\u003AgetNewSortingPosition\u0028\u0029", + "name": "getNewSortingPosition", + "summary": "Returns\u0020the\u0020set\u0020of\u0020pid\u0020and\u0020sorting\u0020to\u0020be\u0020used\u0020in\u0020an\u0020sql\u0020update\u0020statement.\u0020Also\u0020updates\u0020the\u0020existing\u0020records\u0020according\u0020to\u0020the\u0020usage.", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaUtil.html#method_getNewSortingPosition" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaUtil\u003A\u003AgetCurrentPaletteName\u0028\u0029", + "name": "getCurrentPaletteName", + "summary": "Taken\u0020from\u0020\\Contao\\DataContainer.", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaUtil.html#method_getCurrentPaletteName" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaUtil\u003A\u003AisSubPaletteField\u0028\u0029", + "name": "isSubPaletteField", + "summary": "Returns\u0020true\u0020if\u0020the\u0020field\u0020is\u0020in\u0020at\u0020least\u0020one\u0020sub\u0020palette.", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaUtil.html#method_isSubPaletteField" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaUtil\u003A\u003AgetSubPaletteFieldSelector\u0028\u0029", + "name": "getSubPaletteFieldSelector", + "summary": "Returns\u0020the\u0020selector\u0020of\u0020the\u0020sub\u0020palette\u0020a\u0020field\u0020is\u0020placed\u0020in.\u0020Currently\u0020doesn\u0027t\u0020support\u0020fields\u0020in\u0020multiple\u0020sub\u0020palettes.", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaUtil.html#method_getSubPaletteFieldSelector" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaUtil\u003A\u003Acombiner\u0028\u0029", + "name": "combiner", + "summary": "Taken\u0020from\u0020\\Contao\\DataContainer.", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaUtil.html#method_combiner" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaUtil\u003A\u003APROPERTY_SESSION_ID", + "name": "PROPERTY_SESSION_ID", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaUtil.html#constant_PROPERTY_SESSION_ID" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaUtil\u003A\u003APROPERTY_AUTHOR", + "name": "PROPERTY_AUTHOR", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaUtil.html#constant_PROPERTY_AUTHOR" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaUtil\u003A\u003APROPERTY_AUTHOR_TYPE", + "name": "PROPERTY_AUTHOR_TYPE", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaUtil.html#constant_PROPERTY_AUTHOR_TYPE" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaUtil\u003A\u003AAUTHOR_TYPE_NONE", + "name": "AUTHOR_TYPE_NONE", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaUtil.html#constant_AUTHOR_TYPE_NONE" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaUtil\u003A\u003AAUTHOR_TYPE_MEMBER", + "name": "AUTHOR_TYPE_MEMBER", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaUtil.html#constant_AUTHOR_TYPE_MEMBER" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaUtil\u003A\u003AAUTHOR_TYPE_USER", + "name": "AUTHOR_TYPE_USER", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaUtil.html#constant_AUTHOR_TYPE_USER" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaUtil\u003A\u003AAUTHOR_TYPE_SESSION", + "name": "AUTHOR_TYPE_SESSION", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaUtil.html#constant_AUTHOR_TYPE_SESSION" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaUtil\u003A\u003A\u0024framework", + "name": "framework", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaUtil.html#property_framework" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaUtil\u003A\u003A\u0024container", + "name": "container", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaUtil.html#property_container" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaUtil\u003A\u003A\u0024routingUtil", + "name": "routingUtil", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaUtil.html#property_routingUtil" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaUtil\u003A\u003A\u0024connection", + "name": "connection", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaUtil.html#property_connection" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\DependencyInjection\\Configuration", + "name": "Configuration", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-DependencyInjection-Configuration.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\DependencyInjection\\Configuration\u003A\u003AgetConfigTreeBuilder\u0028\u0029", + "name": "getConfigTreeBuilder", + "summary": "Generates\u0020the\u0020configuration\u0020tree\u0020builder.", + "url": "classes/HeimrichHannot-UtilsBundle-DependencyInjection-Configuration.html#method_getConfigTreeBuilder" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\DependencyInjection\\HeimrichHannotUtilsExtension", + "name": "HeimrichHannotUtilsExtension", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-DependencyInjection-HeimrichHannotUtilsExtension.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\DependencyInjection\\HeimrichHannotUtilsExtension\u003A\u003Aload\u0028\u0029", + "name": "load", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-DependencyInjection-HeimrichHannotUtilsExtension.html#method_load" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\DependencyInjection\\HeimrichHannotUtilsExtension\u003A\u003AgetAlias\u0028\u0029", + "name": "getAlias", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-DependencyInjection-HeimrichHannotUtilsExtension.html#method_getAlias" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\DependencyInjection\\UtilsBundleExtension", + "name": "UtilsBundleExtension", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-DependencyInjection-UtilsBundleExtension.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\DependencyInjection\\UtilsBundleExtension\u003A\u003Aload\u0028\u0029", + "name": "load", + "summary": "Loads\u0020a\u0020specific\u0020configuration.", + "url": "classes/HeimrichHannot-UtilsBundle-DependencyInjection-UtilsBundleExtension.html#method_load" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\DependencyInjection\\UtilsBundleExtension\u003A\u003Aprepend\u0028\u0029", + "name": "prepend", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-DependencyInjection-UtilsBundleExtension.html#method_prepend" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dom\\DOMLettersIterator", + "name": "DOMLettersIterator", + "summary": "Iterates\u0020individual\u0020characters\u0020\u0028Unicode\u0020codepoints\u0029\u0020of\u0020DOM\u0020text\u0020and\u0020CDATA\u0020nodes\nwhile\u0020keeping\u0020track\u0020of\u0020their\u0020position\u0020in\u0020the\u0020document.", + "url": "classes/HeimrichHannot-UtilsBundle-Dom-DOMLettersIterator.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dom\\DOMLettersIterator\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "expects\u0020DOMElement\u0020or\u0020DOMDocument\u0020\u0028see\u0020DOMDocument\u003A\u003Aload\u0020and\u0020DOMDocument\u003A\u003AloadHTML\u0029.", + "url": "classes/HeimrichHannot-UtilsBundle-Dom-DOMLettersIterator.html#method___construct" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dom\\DOMLettersIterator\u003A\u003AcurrentTextPosition\u0028\u0029", + "name": "currentTextPosition", + "summary": "Returns\u0020position\u0020in\u0020text\u0020as\u0020DOMText\u0020node\u0020and\u0020character\u0020offset.", + "url": "classes/HeimrichHannot-UtilsBundle-Dom-DOMLettersIterator.html#method_currentTextPosition" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dom\\DOMLettersIterator\u003A\u003AcurrentElement\u0028\u0029", + "name": "currentElement", + "summary": "Returns\u0020DOMElement\u0020that\u0020is\u0020currently\u0020being\u0020iterated\u0020or\u0020NULL\u0020if\u0020iterator\u0020has\u0020finished.", + "url": "classes/HeimrichHannot-UtilsBundle-Dom-DOMLettersIterator.html#method_currentElement" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dom\\DOMLettersIterator\u003A\u003A\u0024key", + "name": "key", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dom-DOMLettersIterator.html#property_key" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dom\\DOMLettersIterator\u003A\u003Anext\u0028\u0029", + "name": "next", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dom-DOMLettersIterator.html#method_next" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dom\\DOMLettersIterator\u003A\u003A\u0024current", + "name": "current", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dom-DOMLettersIterator.html#property_current" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dom\\DOMLettersIterator\u003A\u003Avalid\u0028\u0029", + "name": "valid", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dom-DOMLettersIterator.html#method_valid" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dom\\DOMLettersIterator\u003A\u003Arewind\u0028\u0029", + "name": "rewind", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dom-DOMLettersIterator.html#method_rewind" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dom\\DOMLettersIterator\u003A\u003AisTextNode\u0028\u0029", + "name": "isTextNode", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dom-DOMLettersIterator.html#method_isTextNode" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dom\\DOMLettersIterator\u003A\u003AaddToQueue\u0028\u0029", + "name": "addToQueue", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dom-DOMLettersIterator.html#method_addToQueue" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dom\\DOMLettersIterator\u003A\u003A\u0024start", + "name": "start", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dom-DOMLettersIterator.html#property_start" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dom\\DOMLettersIterator\u003A\u003A\u0024offset", + "name": "offset", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dom-DOMLettersIterator.html#property_offset" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dom\\DOMLettersIterator\u003A\u003A\u0024letters", + "name": "letters", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dom-DOMLettersIterator.html#property_letters" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dom\\DOMLettersIterator\u003A\u003A\u0024queue", + "name": "queue", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Dom-DOMLettersIterator.html#property_queue" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Driver\\DC_Table_Utils", + "name": "DC_Table_Utils", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Driver-DC-Table-Utils.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Driver\\DC_Table_Utils\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Initialize\u0020the\u0020object.", + "url": "classes/HeimrichHannot-UtilsBundle-Driver-DC-Table-Utils.html#method___construct" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Driver\\DC_Table_Utils\u003A\u003AcreateFromModel\u0028\u0029", + "name": "createFromModel", + "summary": "Create\u0020a\u0020DataContainer\u0020instance\u0020from\u0020a\u0020given\u0020Model.", + "url": "classes/HeimrichHannot-UtilsBundle-Driver-DC-Table-Utils.html#method_createFromModel" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Driver\\DC_Table_Utils\u003A\u003AcreateFromModelData\u0028\u0029", + "name": "createFromModelData", + "summary": "Create\u0020a\u0020DataContainer\u0020instance\u0020from\u0020given\u0020model\u0020data.", + "url": "classes/HeimrichHannot-UtilsBundle-Driver-DC-Table-Utils.html#method_createFromModelData" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\EntityFinder\\EntityFinderHelper", + "name": "EntityFinderHelper", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-EntityFinder-EntityFinderHelper.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\EntityFinder\\EntityFinderHelper\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-EntityFinder-EntityFinderHelper.html#method___construct" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\EntityFinder\\EntityFinderHelper\u003A\u003AfindModulesByTypeAndSerializedValue\u0028\u0029", + "name": "findModulesByTypeAndSerializedValue", + "summary": "Search\u0020within\u0020serialized\u0020array\u0020fields\u0020of\u0020the\u0020model\u0020entity.", + "url": "classes/HeimrichHannot-UtilsBundle-EntityFinder-EntityFinderHelper.html#method_findModulesByTypeAndSerializedValue" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\EntityFinder\\EntityFinderHelper\u003A\u003AfindModulesByInserttag\u0028\u0029", + "name": "findModulesByInserttag", + "summary": "Find\u0020frontend\u0020modules\u0020by\u0020insert\u0020inserttags\u0020like\u0020insert_module\u0020oder\u0020insert_article.", + "url": "classes/HeimrichHannot-UtilsBundle-EntityFinder-EntityFinderHelper.html#method_findModulesByInserttag" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\EntityFinder\\EntityFinderHelper\u003A\u003AfindContentElementByInserttag\u0028\u0029", + "name": "findContentElementByInserttag", + "summary": "Find\u0020content\u0020elements\u0020by\u0020insert\u0020inserttags\u0020like\u0020insert_module\u0020oder\u0020insert_article.", + "url": "classes/HeimrichHannot-UtilsBundle-EntityFinder-EntityFinderHelper.html#method_findContentElementByInserttag" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\EntityFinder\\EntityFinderHelper\u003A\u003A\u0024utils", + "name": "utils", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-EntityFinder-EntityFinderHelper.html#property_utils" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Event\\AbstractEvent", + "name": "AbstractEvent", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Event-AbstractEvent.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Event\\ExtendEntityFinderEvent", + "name": "ExtendEntityFinderEvent", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Event-ExtendEntityFinderEvent.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Event\\ExtendEntityFinderEvent\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Event-ExtendEntityFinderEvent.html#method___construct" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Event\\ExtendEntityFinderEvent\u003A\u003AgetTable\u0028\u0029", + "name": "getTable", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Event-ExtendEntityFinderEvent.html#method_getTable" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Event\\ExtendEntityFinderEvent\u003A\u003AgetId\u0028\u0029", + "name": "getId", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Event-ExtendEntityFinderEvent.html#method_getId" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Event\\ExtendEntityFinderEvent\u003A\u003AaddParent\u0028\u0029", + "name": "addParent", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Event-ExtendEntityFinderEvent.html#method_addParent" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Event\\ExtendEntityFinderEvent\u003A\u003AgetParents\u0028\u0029", + "name": "getParents", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Event-ExtendEntityFinderEvent.html#method_getParents" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Event\\ExtendEntityFinderEvent\u003A\u003AsetParents\u0028\u0029", + "name": "setParents", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Event-ExtendEntityFinderEvent.html#method_setParents" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Event\\ExtendEntityFinderEvent\u003A\u003AgetOutput\u0028\u0029", + "name": "getOutput", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Event-ExtendEntityFinderEvent.html#method_getOutput" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Event\\ExtendEntityFinderEvent\u003A\u003AsetOutput\u0028\u0029", + "name": "setOutput", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Event-ExtendEntityFinderEvent.html#method_setOutput" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Event\\ExtendEntityFinderEvent\u003A\u003AisOnlyText\u0028\u0029", + "name": "isOnlyText", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Event-ExtendEntityFinderEvent.html#method_isOnlyText" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Event\\ExtendEntityFinderEvent\u003A\u003AaddInserttag\u0028\u0029", + "name": "addInserttag", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Event-ExtendEntityFinderEvent.html#method_addInserttag" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Event\\ExtendEntityFinderEvent\u003A\u003AgetInserttags\u0028\u0029", + "name": "getInserttags", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Event-ExtendEntityFinderEvent.html#method_getInserttags" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Event\\ExtendEntityFinderEvent\u003A\u003AsetInserttags\u0028\u0029", + "name": "setInserttags", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Event-ExtendEntityFinderEvent.html#method_setInserttags" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Event\\ExtendEntityFinderEvent\u003A\u003AgetEntityFinderHelper\u0028\u0029", + "name": "getEntityFinderHelper", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Event-ExtendEntityFinderEvent.html#method_getEntityFinderHelper" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Event\\ExtendEntityFinderEvent\u003A\u003A\u0024table", + "name": "table", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Event-ExtendEntityFinderEvent.html#property_table" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Event\\ExtendEntityFinderEvent\u003A\u003A\u0024id", + "name": "id", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Event-ExtendEntityFinderEvent.html#property_id" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Event\\ExtendEntityFinderEvent\u003A\u003A\u0024output", + "name": "output", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Event-ExtendEntityFinderEvent.html#property_output" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Event\\ExtendEntityFinderEvent\u003A\u003A\u0024parents", + "name": "parents", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Event-ExtendEntityFinderEvent.html#property_parents" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Event\\ExtendEntityFinderEvent\u003A\u003A\u0024onlyText", + "name": "onlyText", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Event-ExtendEntityFinderEvent.html#property_onlyText" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Event\\ExtendEntityFinderEvent\u003A\u003A\u0024inserttags", + "name": "inserttags", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Event-ExtendEntityFinderEvent.html#property_inserttags" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Event\\ExtendEntityFinderEvent\u003A\u003A\u0024entityFinderHelper", + "name": "entityFinderHelper", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Event-ExtendEntityFinderEvent.html#property_entityFinderHelper" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Event\\RenderTwigTemplateEvent", + "name": "RenderTwigTemplateEvent", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Event-RenderTwigTemplateEvent.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Event\\RenderTwigTemplateEvent\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Event-RenderTwigTemplateEvent.html#method___construct" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Event\\RenderTwigTemplateEvent\u003A\u003AgetTemplate\u0028\u0029", + "name": "getTemplate", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Event-RenderTwigTemplateEvent.html#method_getTemplate" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Event\\RenderTwigTemplateEvent\u003A\u003AsetTemplate\u0028\u0029", + "name": "setTemplate", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Event-RenderTwigTemplateEvent.html#method_setTemplate" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Event\\RenderTwigTemplateEvent\u003A\u003AgetContext\u0028\u0029", + "name": "getContext", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Event-RenderTwigTemplateEvent.html#method_getContext" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Event\\RenderTwigTemplateEvent\u003A\u003AsetContext\u0028\u0029", + "name": "setContext", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Event-RenderTwigTemplateEvent.html#method_setContext" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Event\\RenderTwigTemplateEvent\u003A\u003ANAME", + "name": "NAME", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Event-RenderTwigTemplateEvent.html#constant_NAME" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Event\\RenderTwigTemplateEvent\u003A\u003A\u0024template", + "name": "template", + "summary": "The\u0020name\u0020of\u0020the\u0020twig\u0020template.", + "url": "classes/HeimrichHannot-UtilsBundle-Event-RenderTwigTemplateEvent.html#property_template" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Event\\RenderTwigTemplateEvent\u003A\u003A\u0024context", + "name": "context", + "summary": "The\u0020context\u0020template\u0020data.", + "url": "classes/HeimrichHannot-UtilsBundle-Event-RenderTwigTemplateEvent.html#property_context" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\EventListener\\DcaField\\AbstractDcaFieldListener", + "name": "AbstractDcaFieldListener", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-EventListener-DcaField-AbstractDcaFieldListener.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\EventListener\\DcaField\\AbstractDcaFieldListener\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-EventListener-DcaField-AbstractDcaFieldListener.html#method___construct" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\EventListener\\DcaField\\AbstractDcaFieldListener\u003A\u003AgetModelInstance\u0028\u0029", + "name": "getModelInstance", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-EventListener-DcaField-AbstractDcaFieldListener.html#method_getModelInstance" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\EventListener\\DcaField\\AbstractDcaFieldListener\u003A\u003AapplyDefaultFieldAdjustments\u0028\u0029", + "name": "applyDefaultFieldAdjustments", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-EventListener-DcaField-AbstractDcaFieldListener.html#method_applyDefaultFieldAdjustments" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\EventListener\\DcaField\\AbstractDcaFieldListener\u003A\u003AgetSubscribedServices\u0028\u0029", + "name": "getSubscribedServices", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-EventListener-DcaField-AbstractDcaFieldListener.html#method_getSubscribedServices" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\EventListener\\DcaField\\AbstractDcaFieldListener\u003A\u003A\u0024container", + "name": "container", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-EventListener-DcaField-AbstractDcaFieldListener.html#property_container" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\EventListener\\DcaField\\DateAddedFieldListener", + "name": "DateAddedFieldListener", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-EventListener-DcaField-DateAddedFieldListener.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\EventListener\\DcaField\\DateAddedFieldListener\u003A\u003AonLoadDataContainer\u0028\u0029", + "name": "onLoadDataContainer", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-EventListener-DcaField-DateAddedFieldListener.html#method_onLoadDataContainer" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\EventListener\\DcaField\\DateAddedFieldListener\u003A\u003AonLoadCallback\u0028\u0029", + "name": "onLoadCallback", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-EventListener-DcaField-DateAddedFieldListener.html#method_onLoadCallback" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\EventListener\\DcaField\\DateAddedFieldListener\u003A\u003AonCopyCallback\u0028\u0029", + "name": "onCopyCallback", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-EventListener-DcaField-DateAddedFieldListener.html#method_onCopyCallback" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\EventListener\\DcaField\\DcaAuthorListener", + "name": "DcaAuthorListener", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-EventListener-DcaField-DcaAuthorListener.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\EventListener\\DcaField\\DcaAuthorListener\u003A\u003AonLoadDataContainer\u0028\u0029", + "name": "onLoadDataContainer", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-EventListener-DcaField-DcaAuthorListener.html#method_onLoadDataContainer" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\EventListener\\DcaField\\DcaAuthorListener\u003A\u003AonConfigCopyCallback\u0028\u0029", + "name": "onConfigCopyCallback", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-EventListener-DcaField-DcaAuthorListener.html#method_onConfigCopyCallback" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\EventListener\\DcaField\\DcaAuthorListener\u003A\u003AgetAuthorFieldName\u0028\u0029", + "name": "getAuthorFieldName", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-EventListener-DcaField-DcaAuthorListener.html#method_getAuthorFieldName" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\EventListener\\DcaField\\DcaAuthorListener\u003A\u003AgetSubscribedServices\u0028\u0029", + "name": "getSubscribedServices", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-EventListener-DcaField-DcaAuthorListener.html#method_getSubscribedServices" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\EventListener\\ExtendEntityFinderSubscriber", + "name": "ExtendEntityFinderSubscriber", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-EventListener-ExtendEntityFinderSubscriber.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\EventListener\\ExtendEntityFinderSubscriber\u003A\u003AgetSubscribedEvents\u0028\u0029", + "name": "getSubscribedEvents", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-EventListener-ExtendEntityFinderSubscriber.html#method_getSubscribedEvents" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\EventListener\\ExtendEntityFinderSubscriber\u003A\u003AonExtendEntityFinderEvent\u0028\u0029", + "name": "onExtendEntityFinderEvent", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-EventListener-ExtendEntityFinderSubscriber.html#method_onExtendEntityFinderEvent" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\EventListener\\ExtendEntityFinderSubscriber\u003A\u003AfindNewsEntity\u0028\u0029", + "name": "findNewsEntity", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-EventListener-ExtendEntityFinderSubscriber.html#method_findNewsEntity" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\EventListener\\ExtendEntityFinderSubscriber\u003A\u003AfindBlockElements\u0028\u0029", + "name": "findBlockElements", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-EventListener-ExtendEntityFinderSubscriber.html#method_findBlockElements" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\EventListener\\InitializeSystemListener", + "name": "InitializeSystemListener", + "summary": "Hook\u0028\u0022initializeSystem\u0022\u0029.", + "url": "classes/HeimrichHannot-UtilsBundle-EventListener-InitializeSystemListener.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\EventListener\\InitializeSystemListener\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "InitializeSystemListener\u0020constructor.", + "url": "classes/HeimrichHannot-UtilsBundle-EventListener-InitializeSystemListener.html#method___construct" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\EventListener\\InitializeSystemListener\u003A\u003A__invoke\u0028\u0029", + "name": "__invoke", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-EventListener-InitializeSystemListener.html#method___invoke" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\EventListener\\InitializeSystemListener\u003A\u003A\u0024containerUtil", + "name": "containerUtil", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-EventListener-InitializeSystemListener.html#property_containerUtil" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\EventListener\\InitializeSystemListener\u003A\u003A\u0024bundleConfig", + "name": "bundleConfig", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-EventListener-InitializeSystemListener.html#property_bundleConfig" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\EventListener\\InsertTagsListener", + "name": "InsertTagsListener", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-EventListener-InsertTagsListener.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\EventListener\\InsertTagsListener\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructor.", + "url": "classes/HeimrichHannot-UtilsBundle-EventListener-InsertTagsListener.html#method___construct" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\EventListener\\InsertTagsListener\u003A\u003AonReplaceInsertTags\u0028\u0029", + "name": "onReplaceInsertTags", + "summary": "Replaces\u0020calendar\u0020insert\u0020tags.", + "url": "classes/HeimrichHannot-UtilsBundle-EventListener-InsertTagsListener.html#method_onReplaceInsertTags" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\EventListener\\InsertTagsListener\u003A\u003AreplaceSupportedTags\u0028\u0029", + "name": "replaceSupportedTags", + "summary": "Replace\u0020supported\u0020tags.", + "url": "classes/HeimrichHannot-UtilsBundle-EventListener-InsertTagsListener.html#method_replaceSupportedTags" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\EventListener\\InsertTagsListener\u003A\u003AreplaceTwigTag\u0028\u0029", + "name": "replaceTwigTag", + "summary": "Replace\u0020twig\u0020template\u0020insert\u0020tags\u0020\u007B\u007Btwig\u003A\u003Alogo.html.twig\u003A\u003Aa\u003A1\u003A\u007Bs\u003A3\u003A\u0022foo\u0022\u003Bs\u003A3\u003A\u0022bar\u0022\u003B\u007D\u007D\u007D.", + "url": "classes/HeimrichHannot-UtilsBundle-EventListener-InsertTagsListener.html#method_replaceTwigTag" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\EventListener\\InsertTagsListener\u003A\u003A\u0024supportedTags", + "name": "supportedTags", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-EventListener-InsertTagsListener.html#property_supportedTags" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\EventListener\\InsertTagsListener\u003A\u003A\u0024eventDispatcher", + "name": "eventDispatcher", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-EventListener-InsertTagsListener.html#property_eventDispatcher" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\EventListener\\InsertTagsListener\u003A\u003A\u0024twig", + "name": "twig", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-EventListener-InsertTagsListener.html#property_twig" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\EventListener\\InsertTagsListener\u003A\u003A\u0024templateUtil", + "name": "templateUtil", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-EventListener-InsertTagsListener.html#property_templateUtil" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\EventListener\\InsertTagsListener\u003A\u003A\u0024contaoFramework", + "name": "contaoFramework", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-EventListener-InsertTagsListener.html#property_contaoFramework" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Exception\\InvalidUrlException", + "name": "InvalidUrlException", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Exception-InvalidUrlException.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Exception\\InvalidUrlException\u003A\u003A\u0024message", + "name": "message", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Exception-InvalidUrlException.html#property_message" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileArchiveUtil", + "name": "FileArchiveUtil", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileArchiveUtil.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileArchiveUtil\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "FileArchiveUtil\u0020constructor.", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileArchiveUtil.html#method___construct" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileArchiveUtil\u003A\u003AcreateFileArchive\u0028\u0029", + "name": "createFileArchive", + "summary": "Create\u0020a\u0020temporary\u0020zip\u0020file\u0020and\u0020return\u0020the\u0020file\u0020path.", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileArchiveUtil.html#method_createFileArchive" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileArchiveUtil\u003A\u003A\u0024projectDir", + "name": "projectDir", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileArchiveUtil.html#property_projectDir" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileArchiveUtil\u003A\u003A\u0024utilsConfig", + "name": "utilsConfig", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileArchiveUtil.html#property_utilsConfig" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileArchiveUtil\u003A\u003A\u0024folderUtil", + "name": "folderUtil", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileArchiveUtil.html#property_folderUtil" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileStorage", + "name": "FileStorage", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileStorage.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileStorage\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "FileCache\u0020constructor.", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileStorage.html#method___construct" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileStorage\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Get\u0020the\u0020storage\u0020path\u0020for\u0020given\u0020identifier.\u0020Caution\u003A\u0020Identifier\u0020will\u0020be\u0020normalized\u0021", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileStorage.html#method_get" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileStorage\u003A\u003Aset\u0028\u0029", + "name": "set", + "summary": "Persist\u0020a\u0020file\u0020in\u0020the\u0020file\u0020storage,\u0020uniquely\u0020references\u0020by\u0020an\u0020identifier.\u0020Caution\u003A\u0020identifier\u0020will\u0020be\u0020normalized\u0021", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileStorage.html#method_set" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileStorage\u003A\u003AnormalizeKey\u0028\u0029", + "name": "normalizeKey", + "summary": "Normalize\u0020the\u0020key.", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileStorage.html#method_normalizeKey" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileStorage\u003A\u003AcreateFilename\u0028\u0029", + "name": "createFilename", + "summary": "Create\u0020the\u0020filename\u0020out\u0020of\u0020key\u0020and\u0020file\u0020extension.", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileStorage.html#method_createFilename" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileStorage\u003A\u003AcreateAbsoluteFilePath\u0028\u0029", + "name": "createAbsoluteFilePath", + "summary": "Return\u0020the\u0020absoulte\u0020path\u0020to\u0020the\u0020file.", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileStorage.html#method_createAbsoluteFilePath" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileStorage\u003A\u003AcreateRelativeFilePath\u0028\u0029", + "name": "createRelativeFilePath", + "summary": "Return\u0020the\u0020relative\u0020path\u0020to\u0020the\u0020file.", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileStorage.html#method_createRelativeFilePath" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileStorage\u003A\u003A\u0024relativeStoragePath", + "name": "relativeStoragePath", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileStorage.html#property_relativeStoragePath" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileStorage\u003A\u003A\u0024generator", + "name": "generator", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileStorage.html#property_generator" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileStorage\u003A\u003A\u0024defaultFileExtension", + "name": "defaultFileExtension", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileStorage.html#property_defaultFileExtension" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileStorage\u003A\u003A\u0024rootPath", + "name": "rootPath", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileStorage.html#property_rootPath" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileStorageCallback", + "name": "FileStorageCallback", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileStorageCallback.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileStorageCallback\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "FileStorageCallback\u0020constructor.", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileStorageCallback.html#method___construct" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileStorageCallback\u003A\u003AgetIdentifier\u0028\u0029", + "name": "getIdentifier", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileStorageCallback.html#method_getIdentifier" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileStorageCallback\u003A\u003AgetFilename\u0028\u0029", + "name": "getFilename", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileStorageCallback.html#method_getFilename" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileStorageCallback\u003A\u003AgetRelativeFilePath\u0028\u0029", + "name": "getRelativeFilePath", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileStorageCallback.html#method_getRelativeFilePath" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileStorageCallback\u003A\u003AgetAbsoluteFilePath\u0028\u0029", + "name": "getAbsoluteFilePath", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileStorageCallback.html#method_getAbsoluteFilePath" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileStorageCallback\u003A\u003AgetRootPath\u0028\u0029", + "name": "getRootPath", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileStorageCallback.html#method_getRootPath" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileStorageCallback\u003A\u003AgetRelativeStoragePath\u0028\u0029", + "name": "getRelativeStoragePath", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileStorageCallback.html#method_getRelativeStoragePath" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileStorageCallback\u003A\u003A\u0024identifier", + "name": "identifier", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileStorageCallback.html#property_identifier" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileStorageCallback\u003A\u003A\u0024filename", + "name": "filename", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileStorageCallback.html#property_filename" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileStorageCallback\u003A\u003A\u0024relativeFilePath", + "name": "relativeFilePath", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileStorageCallback.html#property_relativeFilePath" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileStorageCallback\u003A\u003A\u0024absoluteFilePath", + "name": "absoluteFilePath", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileStorageCallback.html#property_absoluteFilePath" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileStorageCallback\u003A\u003A\u0024rootPath", + "name": "rootPath", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileStorageCallback.html#property_rootPath" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileStorageCallback\u003A\u003A\u0024relativeStoragePath", + "name": "relativeStoragePath", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileStorageCallback.html#property_relativeStoragePath" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileStorageUtil", + "name": "FileStorageUtil", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileStorageUtil.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileStorageUtil\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "FileStorageUtil\u0020constructor.", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileStorageUtil.html#method___construct" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileStorageUtil\u003A\u003AcreateFileStorage\u0028\u0029", + "name": "createFileStorage", + "summary": "Returns\u0020a\u0020new\u0020FileStorage\u0020instance.", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileStorageUtil.html#method_createFileStorage" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileStorageUtil\u003A\u003A\u0024projectDir", + "name": "projectDir", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileStorageUtil.html#property_projectDir" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileUtil", + "name": "FileUtil", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileUtil.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileUtil\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileUtil.html#method___construct" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileUtil\u003A\u003AgetUniqueFileNameWithinTarget\u0028\u0029", + "name": "getUniqueFileNameWithinTarget", + "summary": "Get\u0020a\u0020unique\u0020filename\u0020within\u0020given\u0020target\u0020folder,\u0020remove\u0020uniqid\u0028\u0029\u0020suffix\u0020from\u0020file\u0020\u0028optional,\u0020add\u0020\u0024prefix\u0029\u0020and\u0020append\u0020file\u0020count\u0020by\u0020name\u0020to\nfile\u0020if\u0020file\u0020with\u0020same\u0020name\u0020already\u0020exists\u0020in\u0020target\u0020folder.", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileUtil.html#method_getUniqueFileNameWithinTarget" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileUtil\u003A\u003AgetFileList\u0028\u0029", + "name": "getFileList", + "summary": "Returns\u0020the\u0020file\u0020list\u0020for\u0020a\u0020given\u0020directory.", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileUtil.html#method_getFileList" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileUtil\u003A\u003AformatSizeUnits\u0028\u0029", + "name": "formatSizeUnits", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileUtil.html#method_formatSizeUnits" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileUtil\u003A\u003AgetPathWithoutFilename\u0028\u0029", + "name": "getPathWithoutFilename", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileUtil.html#method_getPathWithoutFilename" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileUtil\u003A\u003AgetFileExtension\u0028\u0029", + "name": "getFileExtension", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileUtil.html#method_getFileExtension" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileUtil\u003A\u003AgetPathFromUuid\u0028\u0029", + "name": "getPathFromUuid", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileUtil.html#method_getPathFromUuid" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileUtil\u003A\u003AgetFileContentFromUuid\u0028\u0029", + "name": "getFileContentFromUuid", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileUtil.html#method_getFileContentFromUuid" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileUtil\u003A\u003AgetFileFromUuid\u0028\u0029", + "name": "getFileFromUuid", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileUtil.html#method_getFileFromUuid" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileUtil\u003A\u003AgetFolderFromUuid\u0028\u0029", + "name": "getFolderFromUuid", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileUtil.html#method_getFolderFromUuid" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileUtil\u003A\u003AaddUniqueIdToFilename\u0028\u0029", + "name": "addUniqueIdToFilename", + "summary": "Add\u0020a\u0020unique\u0020identifier\u0020to\u0020a\u0020file\u0020name.", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileUtil.html#method_addUniqueIdToFilename" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileUtil\u003A\u003AsanitizeFileName\u0028\u0029", + "name": "sanitizeFileName", + "summary": "Sanitize\u0020filename\u0020and\u0020removes\u0020\u0022id\u002D\u0022\u0020prefix\u0020generated\u0020by\u0020contao\u0020standardize\u0020method.", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileUtil.html#method_sanitizeFileName" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileUtil\u003A\u003AsendTextAsFileToBrowser\u0028\u0029", + "name": "sendTextAsFileToBrowser", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileUtil.html#method_sendTextAsFileToBrowser" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileUtil\u003A\u003AgetFolderFromDca\u0028\u0029", + "name": "getFolderFromDca", + "summary": "Get\u0020real\u0020folder\u0020from\u0020datacontainer\u0020attribute.", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileUtil.html#method_getFolderFromDca" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileUtil\u003A\u003AgetFileLineCount\u0028\u0029", + "name": "getFileLineCount", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileUtil.html#method_getFileLineCount" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileUtil\u003A\u003AgetPreviewFromPdf\u0028\u0029", + "name": "getPreviewFromPdf", + "summary": "convert\u0020pdf\u0020to\u0020png\u0020and\u0020return\u0020a\u0020preview\u0020file\ndelete\u0020the\u0020other\u0020png\u0020files.", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileUtil.html#method_getPreviewFromPdf" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileUtil\u003A\u003AgetFileIdFromPath\u0028\u0029", + "name": "getFileIdFromPath", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileUtil.html#method_getFileIdFromPath" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileUtil\u003A\u003AgetFolderContent\u0028\u0029", + "name": "getFolderContent", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileUtil.html#method_getFolderContent" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileUtil\u003A\u003AgetParentFoldersByUuid\u0028\u0029", + "name": "getParentFoldersByUuid", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileUtil.html#method_getParentFoldersByUuid" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileUtil\u003A\u003AretrieveFileContent\u0028\u0029", + "name": "retrieveFileContent", + "summary": "Tries\u0020to\u0020get\u0020the\u0020binary\u0020content\u0020from\u0020a\u0020file\u0020in\u0020various\u0020sources\u0020and\u0020returns\u0020it\u0020if\u0020possible.", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileUtil.html#method_retrieveFileContent" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileUtil\u003A\u003AgetExtensionFromFileContent\u0028\u0029", + "name": "getExtensionFromFileContent", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileUtil.html#method_getExtensionFromFileContent" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileUtil\u003A\u003AgetExtensionByMimeType\u0028\u0029", + "name": "getExtensionByMimeType", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileUtil.html#method_getExtensionByMimeType" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileUtil\u003A\u003AFILE_UTIL_CONVERT_FILE_TYPE", + "name": "FILE_UTIL_CONVERT_FILE_TYPE", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileUtil.html#constant_FILE_UTIL_CONVERT_FILE_TYPE" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileUtil\u003A\u003A\u0024framework", + "name": "framework", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileUtil.html#property_framework" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FileUtil\u003A\u003A\u0024container", + "name": "container", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-File-FileUtil.html#property_container" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FolderUtil", + "name": "FolderUtil", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-File-FolderUtil.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FolderUtil\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "FolderUtil\u0020constructor.", + "url": "classes/HeimrichHannot-UtilsBundle-File-FolderUtil.html#method___construct" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FolderUtil\u003A\u003AcreatePublicFolder\u0028\u0029", + "name": "createPublicFolder", + "summary": "Creates\u0020an\u0020symlink\u0020to\u0020the\u0020given\u0020folder\u0020in\u0020the\u0020web\u0020director,\u0020if\u0020not\u0020already\u0020exist.", + "url": "classes/HeimrichHannot-UtilsBundle-File-FolderUtil.html#method_createPublicFolder" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FolderUtil\u003A\u003A\u0024webDir", + "name": "webDir", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-File-FolderUtil.html#property_webDir" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FolderUtil\u003A\u003A\u0024kernel", + "name": "kernel", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-File-FolderUtil.html#property_kernel" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File\\FolderUtil\u003A\u003A\u0024symlinksCommand", + "name": "symlinksCommand", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-File-FolderUtil.html#property_symlinksCommand" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Form\\FormUtil", + "name": "FormUtil", + "summary": "Class\u0020FormUtil.", + "url": "classes/HeimrichHannot-UtilsBundle-Form-FormUtil.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Form\\FormUtil\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Form-FormUtil.html#method___construct" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Form\\FormUtil\u003A\u003AgetWidgetFromAttributes\u0028\u0029", + "name": "getWidgetFromAttributes", + "summary": "Get\u0020a\u0020new\u0020widget\u0020instance\u0020based\u0020on\u0020given\u0020attributes\u0020from\u0020a\u0020Data\u0020Container\u0020array.", + "url": "classes/HeimrichHannot-UtilsBundle-Form-FormUtil.html#method_getWidgetFromAttributes" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Form\\FormUtil\u003A\u003AprepareSpecialValueForOutput\u0028\u0029", + "name": "prepareSpecialValueForOutput", + "summary": "Prepares\u0020a\u0020special\u0020field\u0027s\u0020value.\u0020If\u0020an\u0020array\u0020is\u0020inserted,\u0020the\u0020function\u0020will\u0020call\u0020itself\u0020recursively.", + "url": "classes/HeimrichHannot-UtilsBundle-Form-FormUtil.html#method_prepareSpecialValueForOutput" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Form\\FormUtil\u003A\u003AescapeAllHtmlEntities\u0028\u0029", + "name": "escapeAllHtmlEntities", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Form-FormUtil.html#method_escapeAllHtmlEntities" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Form\\FormUtil\u003A\u003AgetBackendFormField\u0028\u0029", + "name": "getBackendFormField", + "summary": "Get\u0020an\u0020instance\u0020of\u0020Widget\u0020by\u0020passing\u0020fieldname\u0020and\u0020dca\u0020data.", + "url": "classes/HeimrichHannot-UtilsBundle-Form-FormUtil.html#method_getBackendFormField" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Form\\FormUtil\u003A\u003AgetModelDataAsNotificationTokens\u0028\u0029", + "name": "getModelDataAsNotificationTokens", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Form-FormUtil.html#method_getModelDataAsNotificationTokens" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Form\\FormUtil\u003A\u003A\u0024framework", + "name": "framework", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Form-FormUtil.html#property_framework" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Form\\FormUtil\u003A\u003A\u0024optionsCache", + "name": "optionsCache", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Form-FormUtil.html#property_optionsCache" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Form\\FormUtil\u003A\u003A\u0024container", + "name": "container", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Form-FormUtil.html#property_container" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\HeimrichHannotContaoUtilsBundle", + "name": "HeimrichHannotContaoUtilsBundle", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-HeimrichHannotContaoUtilsBundle.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\HeimrichHannotContaoUtilsBundle\u003A\u003AgetContainerExtension\u0028\u0029", + "name": "getContainerExtension", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-HeimrichHannotContaoUtilsBundle.html#method_getContainerExtension" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\HeimrichHannotUtilsBundle", + "name": "HeimrichHannotUtilsBundle", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-HeimrichHannotUtilsBundle.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\HeimrichHannotUtilsBundle\u003A\u003AgetContainerExtension\u0028\u0029", + "name": "getContainerExtension", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-HeimrichHannotUtilsBundle.html#method_getContainerExtension" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Ics\\IcsUtil", + "name": "IcsUtil", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Ics-IcsUtil.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Ics\\IcsUtil\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Ics-IcsUtil.html#method___construct" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Ics\\IcsUtil\u003A\u003AgenerateIcs\u0028\u0029", + "name": "generateIcs", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Ics-IcsUtil.html#method_generateIcs" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Ics\\IcsUtil\u003A\u003A\u0024framework", + "name": "framework", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Ics-IcsUtil.html#property_framework" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Ics\\IcsUtil\u003A\u003A\u0024container", + "name": "container", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Ics-IcsUtil.html#property_container" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Image\\ImageUtil", + "name": "ImageUtil", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Image-ImageUtil.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Image\\ImageUtil\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Image-ImageUtil.html#method___construct" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Image\\ImageUtil\u003A\u003AaddToTemplateData\u0028\u0029", + "name": "addToTemplateData", + "summary": "Add\u0020an\u0020image\u0020to\u0020a\u0020template.", + "url": "classes/HeimrichHannot-UtilsBundle-Image-ImageUtil.html#method_addToTemplateData" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Image\\ImageUtil\u003A\u003AgetPixelValue\u0028\u0029", + "name": "getPixelValue", + "summary": "Convert\u0020sizes\u0020like\u00202em,\u002010cm\u0020or\u002012pt\u0020to\u0020pixels.", + "url": "classes/HeimrichHannot-UtilsBundle-Image-ImageUtil.html#method_getPixelValue" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Image\\ImageUtil\u003A\u003AprepareImage\u0028\u0029", + "name": "prepareImage", + "summary": "Prepares\u0020one\u0020image\u0020for\u0020a\u0020typical\u0020Contao\u0020template.", + "url": "classes/HeimrichHannot-UtilsBundle-Image-ImageUtil.html#method_prepareImage" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Image\\ImageUtil\u003A\u003A\u0024framework", + "name": "framework", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Image-ImageUtil.html#property_framework" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Image\\ImageUtil\u003A\u003A\u0024container", + "name": "container", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Image-ImageUtil.html#property_container" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Location\\LocationUtil", + "name": "LocationUtil", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Location-LocationUtil.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Location\\LocationUtil\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Location-LocationUtil.html#method___construct" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Location\\LocationUtil\u003A\u003AcomputeCoordinatesByArray\u0028\u0029", + "name": "computeCoordinatesByArray", + "summary": "Computes\u0020the\u0020coordinates\u0020from\u0020a\u0020given\u0020address.\u0020Supported\u0020array\u0020keys\u0020are\u003A.", + "url": "classes/HeimrichHannot-UtilsBundle-Location-LocationUtil.html#method_computeCoordinatesByArray" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Location\\LocationUtil\u003A\u003AcomputeCoordinatesByString\u0028\u0029", + "name": "computeCoordinatesByString", + "summary": "Computes\u0020the\u0020coordinates\u0020from\u0020a\u0020given\u0020address.\u0020Supported\u0020array\u0020keys\u0020are\u003A.", + "url": "classes/HeimrichHannot-UtilsBundle-Location-LocationUtil.html#method_computeCoordinatesByString" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Location\\LocationUtil\u003A\u003AcomputeCoordinatesInSaveCallback\u0028\u0029", + "name": "computeCoordinatesInSaveCallback", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Location-LocationUtil.html#method_computeCoordinatesInSaveCallback" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Location\\LocationUtil\u003A\u003AgetCoordinatesFromKml\u0028\u0029", + "name": "getCoordinatesFromKml", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Location-LocationUtil.html#method_getCoordinatesFromKml" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Location\\LocationUtil\u003A\u003AgetCoordinatesFromGpx\u0028\u0029", + "name": "getCoordinatesFromGpx", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Location-LocationUtil.html#method_getCoordinatesFromGpx" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Location\\LocationUtil\u003A\u003AGOOGLE_MAPS_GEOCODE_URL", + "name": "GOOGLE_MAPS_GEOCODE_URL", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Location-LocationUtil.html#constant_GOOGLE_MAPS_GEOCODE_URL" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Location\\LocationUtil\u003A\u003A\u0024framework", + "name": "framework", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Location-LocationUtil.html#property_framework" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Member\\MemberUtil", + "name": "MemberUtil", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Member-MemberUtil.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Member\\MemberUtil\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Member-MemberUtil.html#method___construct" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Member\\MemberUtil\u003A\u003AaddHomeDir\u0028\u0029", + "name": "addHomeDir", + "summary": "Adds\u0020a\u0020new\u0020home\u0020dir\u0020to\u0020a\u0020member.\u0020Therefore\u0020a\u0020folder\u0020named\u0020with\u0020the\u0020members\u0027s\u0020id\u0020is\u0020created\u0020in\u0020\u0024varRootFolder.", + "url": "classes/HeimrichHannot-UtilsBundle-Member-MemberUtil.html#method_addHomeDir" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Member\\MemberUtil\u003A\u003AgetHomeDir\u0028\u0029", + "name": "getHomeDir", + "summary": "Returns\u0020a\u0020member\u0020home\u0020dir\u0020and\u0020creates\u0020one,\u0020if\u0020desired.", + "url": "classes/HeimrichHannot-UtilsBundle-Member-MemberUtil.html#method_getHomeDir" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Member\\MemberUtil\u003A\u003AfindActiveByGroups\u0028\u0029", + "name": "findActiveByGroups", + "summary": "Find\u0020active\u0020members\u0020by\u0020member\u0020group.", + "url": "classes/HeimrichHannot-UtilsBundle-Member-MemberUtil.html#method_findActiveByGroups" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Member\\MemberUtil\u003A\u003AfindOrCreate\u0028\u0029", + "name": "findOrCreate", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Member-MemberUtil.html#method_findOrCreate" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Member\\MemberUtil\u003A\u003ATABLE", + "name": "TABLE", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Member-MemberUtil.html#constant_TABLE" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Member\\MemberUtil\u003A\u003A\u0024framework", + "name": "framework", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Member-MemberUtil.html#property_framework" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Member\\MemberUtil\u003A\u003A\u0024modelUtil", + "name": "modelUtil", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Member-MemberUtil.html#property_modelUtil" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Model\\TagModelBase", + "name": "TagModelBase", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Model-TagModelBase.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Model\\CfgTagModel", + "name": "CfgTagModel", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Model-CfgTagModel.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Model\\CfgTagModel\u003A\u003AfindAllBySource\u0028\u0029", + "name": "findAllBySource", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Model-CfgTagModel.html#method_findAllBySource" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Model\\CfgTagModel\u003A\u003AgetSourcesAsOptions\u0028\u0029", + "name": "getSourcesAsOptions", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Model-CfgTagModel.html#method_getSourcesAsOptions" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Model\\CfgTagModel\u003A\u003A\u0024strTable", + "name": "strTable", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Model-CfgTagModel.html#property_strTable" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Model\\ModelUtil", + "name": "ModelUtil", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Model-ModelUtil.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Model\\ModelUtil\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Model-ModelUtil.html#method___construct" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Model\\ModelUtil\u003A\u003AsetDefaultsFromDca\u0028\u0029", + "name": "setDefaultsFromDca", + "summary": "Set\u0020the\u0020entity\u0020defaults\u0020from\u0020dca\u0020config\u0020\u0028for\u0020new\u0020model\u0020entry\u0029.", + "url": "classes/HeimrichHannot-UtilsBundle-Model-ModelUtil.html#method_setDefaultsFromDca" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Model\\ModelUtil\u003A\u003AfindModelInstanceByPk\u0028\u0029", + "name": "findModelInstanceByPk", + "summary": "Returns\u0020a\u0020model\u0020instance\u0020if\u0020for\u0020a\u0020given\u0020table\u0020and\u0020id\u0028primary\u0020key\u0029.", + "url": "classes/HeimrichHannot-UtilsBundle-Model-ModelUtil.html#method_findModelInstanceByPk" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Model\\ModelUtil\u003A\u003AfindModelInstancesBy\u0028\u0029", + "name": "findModelInstancesBy", + "summary": "Returns\u0020model\u0020instances\u0020by\u0020given\u0020table\u0020and\u0020search\u0020criteria.", + "url": "classes/HeimrichHannot-UtilsBundle-Model-ModelUtil.html#method_findModelInstancesBy" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Model\\ModelUtil\u003A\u003AfindOneModelInstanceBy\u0028\u0029", + "name": "findOneModelInstanceBy", + "summary": "Return\u0020a\u0020single\u0020model\u0020instance\u0020by\u0020table\u0020and\u0020search\u0020criteria.", + "url": "classes/HeimrichHannot-UtilsBundle-Model-ModelUtil.html#method_findOneModelInstanceBy" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Model\\ModelUtil\u003A\u003AfindMultipleModelInstancesByIds\u0028\u0029", + "name": "findMultipleModelInstancesByIds", + "summary": "Returns\u0020multiple\u0020model\u0020instances\u0020by\u0020given\u0020table\u0020and\u0020ids.", + "url": "classes/HeimrichHannot-UtilsBundle-Model-ModelUtil.html#method_findMultipleModelInstancesByIds" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Model\\ModelUtil\u003A\u003AfindModelInstanceByIdOrAlias\u0028\u0029", + "name": "findModelInstanceByIdOrAlias", + "summary": "Returns\u0020multiple\u0020model\u0020instances\u0020by\u0020given\u0020table\u0020and\u0020id\u0020or\u0020alias.", + "url": "classes/HeimrichHannot-UtilsBundle-Model-ModelUtil.html#method_findModelInstanceByIdOrAlias" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Model\\ModelUtil\u003A\u003AcallModelMethod\u0028\u0029", + "name": "callModelMethod", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Model-ModelUtil.html#method_callModelMethod" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Model\\ModelUtil\u003A\u003AfixTablePrefixForDcMultilingual\u0028\u0029", + "name": "fixTablePrefixForDcMultilingual", + "summary": "Fixes\u0020existing\u0020table\u0020prefixed\u0020already\u0020aliased\u0020in\u0020MultilingualQueryBuilder\u003A\u003AbuildQueryBuilderForFind\u0028\u0029.", + "url": "classes/HeimrichHannot-UtilsBundle-Model-ModelUtil.html#method_fixTablePrefixForDcMultilingual" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Model\\ModelUtil\u003A\u003AgetDcMultilingualTranslationRecord\u0028\u0029", + "name": "getDcMultilingualTranslationRecord", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Model-ModelUtil.html#method_getDcMultilingualTranslationRecord" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Model\\ModelUtil\u003A\u003AgetCurrentDcMultilingualLanguage\u0028\u0029", + "name": "getCurrentDcMultilingualLanguage", + "summary": "Get\u0020the\u0020current\u0020dc_multilingual\u0020language\u0020even\u0020DC_Multilingual\u003A\u003Aedit\u0028\u0029\u0020didn\u0027t\u0020run.", + "url": "classes/HeimrichHannot-UtilsBundle-Model-ModelUtil.html#method_getCurrentDcMultilingualLanguage" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Model\\ModelUtil\u003A\u003AgetDcMultilingualTranslatableLanguages\u0028\u0029", + "name": "getDcMultilingualTranslatableLanguages", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Model-ModelUtil.html#method_getDcMultilingualTranslatableLanguages" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Model\\ModelUtil\u003A\u003AgetDcMultilingualRootPageLanguages\u0028\u0029", + "name": "getDcMultilingualRootPageLanguages", + "summary": "Get\u0020the\u0020list\u0020of\u0020languages\u0020based\u0020on\u0020root\u0020pages.", + "url": "classes/HeimrichHannot-UtilsBundle-Model-ModelUtil.html#method_getDcMultilingualRootPageLanguages" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Model\\ModelUtil\u003A\u003AfindRootParentRecursively\u0028\u0029", + "name": "findRootParentRecursively", + "summary": "Recursively\u0020finds\u0020the\u0020root\u0020parent.", + "url": "classes/HeimrichHannot-UtilsBundle-Model-ModelUtil.html#method_findRootParentRecursively" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Model\\ModelUtil\u003A\u003AfindParentsRecursively\u0028\u0029", + "name": "findParentsRecursively", + "summary": "Returns\u0020an\u0020array\u0020of\u0020a\u0020model\u0020instance\u0027s\u0020parents\u0020in\u0020ascending\u0020order,\u0020i.e.\u0020the\u0020root\u0020parent\u0020comes\u0020first.", + "url": "classes/HeimrichHannot-UtilsBundle-Model-ModelUtil.html#method_findParentsRecursively" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Model\\ModelUtil\u003A\u003AfindAllModelInstances\u0028\u0029", + "name": "findAllModelInstances", + "summary": "Find\u0020all\u0020model\u0020instances\u0020for\u0020a\u0020given\u0020table.", + "url": "classes/HeimrichHannot-UtilsBundle-Model-ModelUtil.html#method_findAllModelInstances" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Model\\ModelUtil\u003A\u003AcomputeStringPattern\u0028\u0029", + "name": "computeStringPattern", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Model-ModelUtil.html#method_computeStringPattern" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Model\\ModelUtil\u003A\u003AgetModelInstanceIfId\u0028\u0029", + "name": "getModelInstanceIfId", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Model-ModelUtil.html#method_getModelInstanceIfId" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Model\\ModelUtil\u003A\u003AhasValueChanged\u0028\u0029", + "name": "hasValueChanged", + "summary": "Determine\u0020if\u0020given\u0020value\u0020is\u0020newer\u0020than\u0020DataContainer\u0020value.", + "url": "classes/HeimrichHannot-UtilsBundle-Model-ModelUtil.html#method_hasValueChanged" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Model\\ModelUtil\u003A\u003AgetModelInstanceFieldValue\u0028\u0029", + "name": "getModelInstanceFieldValue", + "summary": "Get\u0020model\u0020instance\u0020value\u0020for\u0020given\u0020field.", + "url": "classes/HeimrichHannot-UtilsBundle-Model-ModelUtil.html#method_getModelInstanceFieldValue" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Model\\ModelUtil\u003A\u003AfindModulePages\u0028\u0029", + "name": "findModulePages", + "summary": "Find\u0020module\u0020pages.", + "url": "classes/HeimrichHannot-UtilsBundle-Model-ModelUtil.html#method_findModulePages" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Model\\ModelUtil\u003A\u003AaddPublishedCheckToModelArrays\u0028\u0029", + "name": "addPublishedCheckToModelArrays", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Model-ModelUtil.html#method_addPublishedCheckToModelArrays" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Model\\ModelUtil\u003A\u003A\u0024dcaUtil", + "name": "dcaUtil", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Model-ModelUtil.html#property_dcaUtil" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Model\\ModelUtil\u003A\u003A\u0024framework", + "name": "framework", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Model-ModelUtil.html#property_framework" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Model\\ModelUtil\u003A\u003A\u0024session", + "name": "session", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Model-ModelUtil.html#property_session" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Model\\ModelUtil\u003A\u003A\u0024requestStack", + "name": "requestStack", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Model-ModelUtil.html#property_requestStack" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Model\\ModelUtil\u003A\u003A\u0024formUtil", + "name": "formUtil", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Model-ModelUtil.html#property_formUtil" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Model\\ModelUtil\u003A\u003A\u0024kernelBundles", + "name": "kernelBundles", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Model-ModelUtil.html#property_kernelBundles" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Module\\ModuleUtil", + "name": "ModuleUtil", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Module-ModuleUtil.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Module\\ModuleUtil\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Module-ModuleUtil.html#method___construct" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Module\\ModuleUtil\u003A\u003AgetClassByModule\u0028\u0029", + "name": "getClassByModule", + "summary": "Get\u0020the\u0020class\u0020name\u0020of\u0020a\u0020given\u0020module.", + "url": "classes/HeimrichHannot-UtilsBundle-Module-ModuleUtil.html#method_getClassByModule" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Module\\ModuleUtil\u003A\u003AisSubModuleOf\u0028\u0029", + "name": "isSubModuleOf", + "summary": "Check\u0020whether\u0020a\u0020module\u0020is\u0020a\u0020sub\u0020module\u0020of\u0020another.", + "url": "classes/HeimrichHannot-UtilsBundle-Module-ModuleUtil.html#method_isSubModuleOf" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Module\\ModuleUtil\u003A\u003AgetModuleClass\u0028\u0029", + "name": "getModuleClass", + "summary": "Get\u0020the\u0020full\u0020qualified\u0020class\u0020name\u0020for\u0020a\u0020given\u0020module.", + "url": "classes/HeimrichHannot-UtilsBundle-Module-ModuleUtil.html#method_getModuleClass" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Module\\ModuleUtil\u003A\u003AgetModulesByType\u0028\u0029", + "name": "getModulesByType", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Module-ModuleUtil.html#method_getModulesByType" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Command\\EntityFinderCommand\u003A\u003A__construct\u0028\u0029", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Module\\ModuleUtil\u003A\u003A\u0024framework", + "name": "framework", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Module-ModuleUtil.html#property_framework" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Page\\PageUtil", + "name": "PageUtil", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Page-PageUtil.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Page\\PageUtil\u003A\u003A__construct\u0028\u0029", "name": "__construct", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Command-EntityFinderCommand.html#method___construct" + "url": "classes/HeimrichHannot-UtilsBundle-Page-PageUtil.html#method___construct" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Command\\EntityFinderCommand\u003A\u003Aconfigure\u0028\u0029", - "name": "configure", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Page\\PageUtil\u003A\u003AretrieveGlobalPageFromCurrentPageId\u0028\u0029", + "name": "retrieveGlobalPageFromCurrentPageId", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Command-EntityFinderCommand.html#method_configure" + "url": "classes/HeimrichHannot-UtilsBundle-Page-PageUtil.html#method_retrieveGlobalPageFromCurrentPageId" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Command\\EntityFinderCommand\u003A\u003Aexecute\u0028\u0029", - "name": "execute", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Page\\PageUtil\u003A\u003AsetParametersFromLayout\u0028\u0029", + "name": "setParametersFromLayout", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Command-EntityFinderCommand.html#method_execute" + "url": "classes/HeimrichHannot-UtilsBundle-Page-PageUtil.html#method_setParametersFromLayout" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Command\\EntityFinderCommand\u003A\u003Aloop\u0028\u0029", - "name": "loop", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Page\\PageUtil\u003A\u003APAGE_MODEL_TYPE_ROOT", + "name": "PAGE_MODEL_TYPE_ROOT", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Command-EntityFinderCommand.html#method_loop" + "url": "classes/HeimrichHannot-UtilsBundle-Page-PageUtil.html#constant_PAGE_MODEL_TYPE_ROOT" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Command\\EntityFinderCommand\u003A\u003Aoutput\u0028\u0029", - "name": "output", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Page\\PageUtil\u003A\u003A\u0024framework", + "name": "framework", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Command-EntityFinderCommand.html#method_output" + "url": "classes/HeimrichHannot-UtilsBundle-Page-PageUtil.html#property_framework" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Command\\EntityFinderCommand\u003A\u003AfindEntity\u0028\u0029", - "name": "findEntity", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Page\\PageUtil\u003A\u003A\u0024container", + "name": "container", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Command-EntityFinderCommand.html#method_findEntity" + "url": "classes/HeimrichHannot-UtilsBundle-Page-PageUtil.html#property_container" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Command\\EntityFinderCommand\u003A\u003AcreateText\u0028\u0029", - "name": "createText", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pagination\\TextualPagination", + "name": "TextualPagination", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Command-EntityFinderCommand.html#method_createText" + "url": "classes/HeimrichHannot-UtilsBundle-Pagination-TextualPagination.html" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Command\\EntityFinderCommand\u003A\u003ArunExtendEntityFinderEvent\u0028\u0029", - "name": "runExtendEntityFinderEvent", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pagination\\TextualPagination\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Set\u0020the\u0020number\u0020of\u0020rows,\u0020the\u0020number\u0020of\u0020results\u0020per\u0020pages\u0020and\u0020the\u0020number\u0020of\u0020links.", + "url": "classes/HeimrichHannot-UtilsBundle-Pagination-TextualPagination.html#method___construct" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pagination\\TextualPagination\u003A\u003AgetItemsAsArray\u0028\u0029", + "name": "getItemsAsArray", + "summary": "Generate\u0020all\u0020page\u0020links\u0020and\u0020return\u0020them\u0020as\u0020array.", + "url": "classes/HeimrichHannot-UtilsBundle-Pagination-TextualPagination.html#method_getItemsAsArray" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pagination\\TextualPagination\u003A\u003A\u0024teasers", + "name": "teasers", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Command-EntityFinderCommand.html#method_runExtendEntityFinderEvent" + "url": "classes/HeimrichHannot-UtilsBundle-Pagination-TextualPagination.html#property_teasers" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Command\\EntityFinderCommand\u003A\u003AfindFrontendModuleParents\u0028\u0029", - "name": "findFrontendModuleParents", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pagination\\TextualPagination\u003A\u003A\u0024singlePageUrl", + "name": "singlePageUrl", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Command-EntityFinderCommand.html#method_findFrontendModuleParents" + "url": "classes/HeimrichHannot-UtilsBundle-Pagination-TextualPagination.html#property_singlePageUrl" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Command\\EntityFinderCommand\u003A\u003AfindInserttags\u0028\u0029", - "name": "findInserttags", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pdf\\AbstractPdfWriter", + "name": "AbstractPdfWriter", + "summary": "Class\u0020AbstractPdfWriter.", + "url": "classes/HeimrichHannot-UtilsBundle-Pdf-AbstractPdfWriter.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pdf\\AbstractPdfWriter\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "constructor.", + "url": "classes/HeimrichHannot-UtilsBundle-Pdf-AbstractPdfWriter.html#method___construct" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pdf\\AbstractPdfWriter\u003A\u003AsetDefaultConfig\u0028\u0029", + "name": "setDefaultConfig", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Command-EntityFinderCommand.html#method_findInserttags" + "url": "classes/HeimrichHannot-UtilsBundle-Pdf-AbstractPdfWriter.html#method_setDefaultConfig" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pdf\\AbstractPdfWriter\u003A\u003Aprepare\u0028\u0029", + "name": "prepare", + "summary": "Prepare\u0020the\u0020current\u0020object.", + "url": "classes/HeimrichHannot-UtilsBundle-Pdf-AbstractPdfWriter.html#method_prepare" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pdf\\AbstractPdfWriter\u003A\u003Agenerate\u0028\u0029", + "name": "generate", + "summary": "Generate\u0020the\u0020pdf.", + "url": "classes/HeimrichHannot-UtilsBundle-Pdf-AbstractPdfWriter.html#method_generate" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pdf\\AbstractPdfWriter\u003A\u003AgetHtml\u0028\u0029", + "name": "getHtml", + "summary": "Get\u0020html\u0020including\u0020styles.", + "url": "classes/HeimrichHannot-UtilsBundle-Pdf-AbstractPdfWriter.html#method_getHtml" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pdf\\AbstractPdfWriter\u003A\u003AsetHtml\u0028\u0029", + "name": "setHtml", + "summary": "Set\u0020html\u0020including\u0020styles.", + "url": "classes/HeimrichHannot-UtilsBundle-Pdf-AbstractPdfWriter.html#method_setHtml" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pdf\\AbstractPdfWriter\u003A\u003AgetPdf\u0028\u0029", + "name": "getPdf", + "summary": "Get\u0020current\u0020pdf\u0020object.", + "url": "classes/HeimrichHannot-UtilsBundle-Pdf-AbstractPdfWriter.html#method_getPdf" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pdf\\AbstractPdfWriter\u003A\u003AgetFileName\u0028\u0029", + "name": "getFileName", + "summary": "Get\u0020the\u0020pdf\u0020file\u0020name.", + "url": "classes/HeimrichHannot-UtilsBundle-Pdf-AbstractPdfWriter.html#method_getFileName" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pdf\\AbstractPdfWriter\u003A\u003AsetFileName\u0028\u0029", + "name": "setFileName", + "summary": "Set\u0020the\u0020pdf\u0020filename.", + "url": "classes/HeimrichHannot-UtilsBundle-Pdf-AbstractPdfWriter.html#method_setFileName" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pdf\\AbstractPdfWriter\u003A\u003AgetConfig\u0028\u0029", + "name": "getConfig", + "summary": "Get\u0020the\u0020pdf\u0020config.", + "url": "classes/HeimrichHannot-UtilsBundle-Pdf-AbstractPdfWriter.html#method_getConfig" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pdf\\AbstractPdfWriter\u003A\u003AsetConfig\u0028\u0029", + "name": "setConfig", + "summary": "Set\u0020pdf\u0020config,\u0020replace\u0020default\u0020with\u0020custom\u0020config.", + "url": "classes/HeimrichHannot-UtilsBundle-Pdf-AbstractPdfWriter.html#method_setConfig" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pdf\\AbstractPdfWriter\u003A\u003AmergeConfig\u0028\u0029", + "name": "mergeConfig", + "summary": "Merge\u0020current\u0020pdf\u0020config\u0020with\u0020given.", + "url": "classes/HeimrichHannot-UtilsBundle-Pdf-AbstractPdfWriter.html#method_mergeConfig" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pdf\\AbstractPdfWriter\u003A\u003A\u0024isPrepared", + "name": "isPrepared", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Pdf-AbstractPdfWriter.html#property_isPrepared" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pdf\\AbstractPdfWriter\u003A\u003AgetFolder\u0028\u0029", + "name": "getFolder", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Pdf-AbstractPdfWriter.html#method_getFolder" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pdf\\AbstractPdfWriter\u003A\u003AsetFolder\u0028\u0029", + "name": "setFolder", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Pdf-AbstractPdfWriter.html#method_setFolder" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pdf\\AbstractPdfWriter\u003A\u003AOUTPUT_MODE_DOWNLOAD", + "name": "OUTPUT_MODE_DOWNLOAD", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Pdf-AbstractPdfWriter.html#constant_OUTPUT_MODE_DOWNLOAD" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pdf\\AbstractPdfWriter\u003A\u003AOUTPUT_MODE_FILE", + "name": "OUTPUT_MODE_FILE", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Pdf-AbstractPdfWriter.html#constant_OUTPUT_MODE_FILE" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pdf\\AbstractPdfWriter\u003A\u003AOUTPUT_MODE_INLINE", + "name": "OUTPUT_MODE_INLINE", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Pdf-AbstractPdfWriter.html#constant_OUTPUT_MODE_INLINE" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pdf\\AbstractPdfWriter\u003A\u003AOUTPUT_MODES", + "name": "OUTPUT_MODES", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Pdf-AbstractPdfWriter.html#constant_OUTPUT_MODES" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pdf\\AbstractPdfWriter\u003A\u003A\u0024pdf", + "name": "pdf", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Pdf-AbstractPdfWriter.html#property_pdf" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pdf\\AbstractPdfWriter\u003A\u003A\u0024html", + "name": "html", + "summary": "Pdf\u0020html\u0020content\u0020including\u0020styles.", + "url": "classes/HeimrichHannot-UtilsBundle-Pdf-AbstractPdfWriter.html#property_html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pdf\\AbstractPdfWriter\u003A\u003A\u0024fileName", + "name": "fileName", + "summary": "Pdf\u0020file\u0020name.", + "url": "classes/HeimrichHannot-UtilsBundle-Pdf-AbstractPdfWriter.html#property_fileName" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pdf\\AbstractPdfWriter\u003A\u003A\u0024folder", + "name": "folder", + "summary": "The\u0020folder\u0020in\u0020case\u0020of\u0020saving\u0020to\u0020file.", + "url": "classes/HeimrichHannot-UtilsBundle-Pdf-AbstractPdfWriter.html#property_folder" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pdf\\AbstractPdfWriter\u003A\u003A\u0024config", + "name": "config", + "summary": "Pdf\u0020configuration.", + "url": "classes/HeimrichHannot-UtilsBundle-Pdf-AbstractPdfWriter.html#property_config" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pdf\\FPDIWriter", + "name": "FPDIWriter", + "summary": "Class\u0020AbstractPdfWriter.", + "url": "classes/HeimrichHannot-UtilsBundle-Pdf-FPDIWriter.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pdf\\FPDIWriter\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "TCPDFWriter\u0020constructor.", + "url": "classes/HeimrichHannot-UtilsBundle-Pdf-FPDIWriter.html#method___construct" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pdf\\FPDIWriter\u003A\u003AsetDefaultConfig\u0028\u0029", + "name": "setDefaultConfig", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Pdf-FPDIWriter.html#method_setDefaultConfig" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pdf\\FPDIWriter\u003A\u003AgetTemplate\u0028\u0029", + "name": "getTemplate", + "summary": "Get\u0020the\u0020master\u0020template\u0020path.", + "url": "classes/HeimrichHannot-UtilsBundle-Pdf-FPDIWriter.html#method_getTemplate" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pdf\\FPDIWriter\u003A\u003AsetTemplate\u0028\u0029", + "name": "setTemplate", + "summary": "Set\u0020the\u0020master\u0020template\u0020path.", + "url": "classes/HeimrichHannot-UtilsBundle-Pdf-FPDIWriter.html#method_setTemplate" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pdf\\FPDIWriter\u003A\u003Aprepare\u0028\u0029", + "name": "prepare", + "summary": "Prepare\u0020the\u0020current\u0020fpdi\u0020object.", + "url": "classes/HeimrichHannot-UtilsBundle-Pdf-FPDIWriter.html#method_prepare" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pdf\\FPDIWriter\u003A\u003Agenerate\u0028\u0029", + "name": "generate", + "summary": "Generate\u0020the\u0020pdf.", + "url": "classes/HeimrichHannot-UtilsBundle-Pdf-FPDIWriter.html#method_generate" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pdf\\FPDIWriter\u003A\u003AgetPdf\u0028\u0029", + "name": "getPdf", + "summary": "Get\u0020current\u0020pdf\u0020object.", + "url": "classes/HeimrichHannot-UtilsBundle-Pdf-FPDIWriter.html#method_getPdf" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pdf\\FPDIWriter\u003A\u003AaddFont\u0028\u0029", + "name": "addFont", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Pdf-FPDIWriter.html#method_addFont" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pdf\\FPDIWriter\u003A\u003AisPrepared\u0028\u0029", + "name": "isPrepared", + "summary": "Check\u0020if\u0020prepare\u0020was\u0020already\u0020triggered.", + "url": "classes/HeimrichHannot-UtilsBundle-Pdf-FPDIWriter.html#method_isPrepared" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pdf\\FPDIWriter\u003A\u003A\u0024pdf", + "name": "pdf", + "summary": "Current\u0020fpdi\u0020instance.", + "url": "classes/HeimrichHannot-UtilsBundle-Pdf-FPDIWriter.html#property_pdf" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pdf\\FPDIWriter\u003A\u003A\u0024template", + "name": "template", + "summary": "Master\u0020pdf\u0020template.", + "url": "classes/HeimrichHannot-UtilsBundle-Pdf-FPDIWriter.html#property_template" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pdf\\PdfPreview", + "name": "PdfPreview", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Pdf-PdfPreview.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pdf\\PdfPreview\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Pdf-PdfPreview.html#method___construct" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pdf\\PdfPreview\u003A\u003AgetCachedPdfPreview\u0028\u0029", + "name": "getCachedPdfPreview", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Pdf-PdfPreview.html#method_getCachedPdfPreview" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pdf\\PdfPreview\u003A\u003AgeneratePdfPreview\u0028\u0029", + "name": "generatePdfPreview", + "summary": "Generate\u0020a\u0020image\u0020preview\u0020of\u0020the\u0020given\u0020pdf.", + "url": "classes/HeimrichHannot-UtilsBundle-Pdf-PdfPreview.html#method_generatePdfPreview" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pdf\\PdfPreview\u003A\u003AspatiePdf\u0028\u0029", + "name": "spatiePdf", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Pdf-PdfPreview.html#method_spatiePdf" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pdf\\PdfPreview\u003A\u003AalchemyPdf\u0028\u0029", + "name": "alchemyPdf", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Pdf-PdfPreview.html#method_alchemyPdf" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pdf\\PdfPreview\u003A\u003A\u0024projectDir", + "name": "projectDir", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Pdf-PdfPreview.html#property_projectDir" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pdf\\PdfPreview\u003A\u003A\u0024containerUtil", + "name": "containerUtil", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Pdf-PdfPreview.html#property_containerUtil" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pdf\\PdfPreview\u003A\u003A\u0024fileStorageUtil", + "name": "fileStorageUtil", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Pdf-PdfPreview.html#property_fileStorageUtil" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pdf\\PdfPreview\u003A\u003A\u0024utilsConfig", + "name": "utilsConfig", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Pdf-PdfPreview.html#property_utilsConfig" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pdf\\PdfWriter", + "name": "PdfWriter", + "summary": "Class\u0020PdfWriter.", + "url": "classes/HeimrichHannot-UtilsBundle-Pdf-PdfWriter.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pdf\\PdfWriter\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "constructor.", + "url": "classes/HeimrichHannot-UtilsBundle-Pdf-PdfWriter.html#method___construct" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pdf\\PdfWriter\u003A\u003AsetDefaultConfig\u0028\u0029", + "name": "setDefaultConfig", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Pdf-PdfWriter.html#method_setDefaultConfig" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pdf\\PdfWriter\u003A\u003AgetTemplate\u0028\u0029", + "name": "getTemplate", + "summary": "Get\u0020the\u0020master\u0020template\u0020path.", + "url": "classes/HeimrichHannot-UtilsBundle-Pdf-PdfWriter.html#method_getTemplate" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pdf\\PdfWriter\u003A\u003AsetTemplate\u0028\u0029", + "name": "setTemplate", + "summary": "Set\u0020the\u0020master\u0020template\u0020path.", + "url": "classes/HeimrichHannot-UtilsBundle-Pdf-PdfWriter.html#method_setTemplate" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pdf\\PdfWriter\u003A\u003Aprepare\u0028\u0029", + "name": "prepare", + "summary": "Prepare\u0020the\u0020current\u0020mpdf\u0020object.", + "url": "classes/HeimrichHannot-UtilsBundle-Pdf-PdfWriter.html#method_prepare" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pdf\\PdfWriter\u003A\u003Agenerate\u0028\u0029", + "name": "generate", + "summary": "Generate\u0020the\u0020pdf.", + "url": "classes/HeimrichHannot-UtilsBundle-Pdf-PdfWriter.html#method_generate" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pdf\\PdfWriter\u003A\u003AaddFontDirectories\u0028\u0029", + "name": "addFontDirectories", + "summary": "Add\u0020font\u0020directories\u0020to\u0020the\u0020config.", + "url": "classes/HeimrichHannot-UtilsBundle-Pdf-PdfWriter.html#method_addFontDirectories" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pdf\\PdfWriter\u003A\u003AgetPdf\u0028\u0029", + "name": "getPdf", + "summary": "Get\u0020current\u0020pdf\u0020object.", + "url": "classes/HeimrichHannot-UtilsBundle-Pdf-PdfWriter.html#method_getPdf" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pdf\\PdfWriter\u003A\u003A\u0024pdf", + "name": "pdf", + "summary": "Current\u0020mpdf\u0020instance.", + "url": "classes/HeimrichHannot-UtilsBundle-Pdf-PdfWriter.html#property_pdf" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pdf\\PdfWriter\u003A\u003A\u0024template", + "name": "template", + "summary": "Master\u0020pdf\u0020template.", + "url": "classes/HeimrichHannot-UtilsBundle-Pdf-PdfWriter.html#property_template" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\AbstractPdfCreator", + "name": "AbstractPdfCreator", + "summary": "Class\u0020AbstractPdfCreator.", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-AbstractPdfCreator.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\AbstractPdfCreator\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Return\u0020an\u0020unique\u0020type\u0020alias.", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-AbstractPdfCreator.html#method_getType" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\AbstractPdfCreator\u003A\u003AgetHtmlContent\u0028\u0029", + "name": "getHtmlContent", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-AbstractPdfCreator.html#method_getHtmlContent" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\AbstractPdfCreator\u003A\u003AsetHtmlContent\u0028\u0029", + "name": "setHtmlContent", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-AbstractPdfCreator.html#method_setHtmlContent" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\AbstractPdfCreator\u003A\u003Arender\u0028\u0029", + "name": "render", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-AbstractPdfCreator.html#method_render" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\AbstractPdfCreator\u003A\u003AgetFilename\u0028\u0029", + "name": "getFilename", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-AbstractPdfCreator.html#method_getFilename" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\AbstractPdfCreator\u003A\u003AsetFilename\u0028\u0029", + "name": "setFilename", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-AbstractPdfCreator.html#method_setFilename" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\AbstractPdfCreator\u003A\u003AgetOutputMode\u0028\u0029", + "name": "getOutputMode", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-AbstractPdfCreator.html#method_getOutputMode" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\AbstractPdfCreator\u003A\u003AsetOutputMode\u0028\u0029", + "name": "setOutputMode", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-AbstractPdfCreator.html#method_setOutputMode" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\AbstractPdfCreator\u003A\u003AgetSupportedOutputModes\u0028\u0029", + "name": "getSupportedOutputModes", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-AbstractPdfCreator.html#method_getSupportedOutputModes" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\AbstractPdfCreator\u003A\u003AgetFolder\u0028\u0029", + "name": "getFolder", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-AbstractPdfCreator.html#method_getFolder" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\AbstractPdfCreator\u003A\u003AsetFolder\u0028\u0029", + "name": "setFolder", + "summary": "Absolute\u0020folder\u0020where\u0020to\u0020store\u0020pdf.", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-AbstractPdfCreator.html#method_setFolder" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\AbstractPdfCreator\u003A\u003AgetMediaType\u0028\u0029", + "name": "getMediaType", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-AbstractPdfCreator.html#method_getMediaType" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\AbstractPdfCreator\u003A\u003AsetMediaType\u0028\u0029", + "name": "setMediaType", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-AbstractPdfCreator.html#method_setMediaType" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\AbstractPdfCreator\u003A\u003AgetFonts\u0028\u0029", + "name": "getFonts", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-AbstractPdfCreator.html#method_getFonts" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\AbstractPdfCreator\u003A\u003AsetFonts\u0028\u0029", + "name": "setFonts", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-AbstractPdfCreator.html#method_setFonts" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\AbstractPdfCreator\u003A\u003AaddFont\u0028\u0029", + "name": "addFont", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-AbstractPdfCreator.html#method_addFont" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\AbstractPdfCreator\u003A\u003AgetMargins\u0028\u0029", + "name": "getMargins", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-AbstractPdfCreator.html#method_getMargins" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\AbstractPdfCreator\u003A\u003AsetMargins\u0028\u0029", + "name": "setMargins", + "summary": "Set\u0020document\u0020margins.", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-AbstractPdfCreator.html#method_setMargins" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\AbstractPdfCreator\u003A\u003AgetFormat\u0028\u0029", + "name": "getFormat", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-AbstractPdfCreator.html#method_getFormat" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\AbstractPdfCreator\u003A\u003AsetFormat\u0028\u0029", + "name": "setFormat", + "summary": "Set\u0020the\u0020document\u0020format.", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-AbstractPdfCreator.html#method_setFormat" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\AbstractPdfCreator\u003A\u003AgetOrientation\u0028\u0029", + "name": "getOrientation", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-AbstractPdfCreator.html#method_getOrientation" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\AbstractPdfCreator\u003A\u003AsetOrientation\u0028\u0029", + "name": "setOrientation", + "summary": "Set\u0020orientation.\u0020Use\u0020AbstractPdfCreator\u003A\u003AORIENTATION_LANDSCAPE\u0020or\u0020AbstractPdfCreator\u003A\u003AORIENTATION_PORTRAIT.", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-AbstractPdfCreator.html#method_setOrientation" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\AbstractPdfCreator\u003A\u003AgetTemplateFilePath\u0028\u0029", + "name": "getTemplateFilePath", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-AbstractPdfCreator.html#method_getTemplateFilePath" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\AbstractPdfCreator\u003A\u003AsetTemplateFilePath\u0028\u0029", + "name": "setTemplateFilePath", + "summary": "Set\u0020the\u0020absolute\u0020path\u0020to\u0020a\u0020pdf\u0020template\u0020file.", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-AbstractPdfCreator.html#method_setTemplateFilePath" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\AbstractPdfCreator\u003A\u003AgetBeforeCreateInstanceCallback\u0028\u0029", + "name": "getBeforeCreateInstanceCallback", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-AbstractPdfCreator.html#method_getBeforeCreateInstanceCallback" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\AbstractPdfCreator\u003A\u003AsetBeforeCreateInstanceCallback\u0028\u0029", + "name": "setBeforeCreateInstanceCallback", + "summary": "Add\u0020an\u0020callback\u0020to\u0020modify\u0020constructor\u0020parameters\u0020for\u0020pdf\u0020library.", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-AbstractPdfCreator.html#method_setBeforeCreateInstanceCallback" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\AbstractPdfCreator\u003A\u003AgetBeforeOutputPdfCallback\u0028\u0029", + "name": "getBeforeOutputPdfCallback", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-AbstractPdfCreator.html#method_getBeforeOutputPdfCallback" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\AbstractPdfCreator\u003A\u003AsetBeforeOutputPdfCallback\u0028\u0029", + "name": "setBeforeOutputPdfCallback", + "summary": "Add\u0020an\u0020callback\u0020to\u0020modify\u0020the\u0020configuration\u0020or\u0020parameters\u0020before\u0020outputting\u0020the\u0020pdf\u0020file.", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-AbstractPdfCreator.html#method_setBeforeOutputPdfCallback" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\AbstractPdfCreator\u003A\u003AOUTPUT_MODE_DOWNLOAD", + "name": "OUTPUT_MODE_DOWNLOAD", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-AbstractPdfCreator.html#constant_OUTPUT_MODE_DOWNLOAD" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\AbstractPdfCreator\u003A\u003AOUTPUT_MODE_FILE", + "name": "OUTPUT_MODE_FILE", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-AbstractPdfCreator.html#constant_OUTPUT_MODE_FILE" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\AbstractPdfCreator\u003A\u003AOUTPUT_MODE_INLINE", + "name": "OUTPUT_MODE_INLINE", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-AbstractPdfCreator.html#constant_OUTPUT_MODE_INLINE" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\AbstractPdfCreator\u003A\u003AOUTPUT_MODE_STRING", + "name": "OUTPUT_MODE_STRING", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-AbstractPdfCreator.html#constant_OUTPUT_MODE_STRING" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\AbstractPdfCreator\u003A\u003AOUTPUT_MODES", + "name": "OUTPUT_MODES", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-AbstractPdfCreator.html#constant_OUTPUT_MODES" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\AbstractPdfCreator\u003A\u003AFONT_STYLE_REGUALAR", + "name": "FONT_STYLE_REGUALAR", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-AbstractPdfCreator.html#constant_FONT_STYLE_REGUALAR" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\AbstractPdfCreator\u003A\u003AFONT_STYLE_ITALIC", + "name": "FONT_STYLE_ITALIC", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-AbstractPdfCreator.html#constant_FONT_STYLE_ITALIC" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\AbstractPdfCreator\u003A\u003AFONT_STYLE_BOLD", + "name": "FONT_STYLE_BOLD", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-AbstractPdfCreator.html#constant_FONT_STYLE_BOLD" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\AbstractPdfCreator\u003A\u003AFONT_STYLE_BOLDITALIC", + "name": "FONT_STYLE_BOLDITALIC", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-AbstractPdfCreator.html#constant_FONT_STYLE_BOLDITALIC" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\AbstractPdfCreator\u003A\u003AORIENTATION_LANDSCAPE", + "name": "ORIENTATION_LANDSCAPE", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-AbstractPdfCreator.html#constant_ORIENTATION_LANDSCAPE" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\AbstractPdfCreator\u003A\u003AORIENTATION_PORTRAIT", + "name": "ORIENTATION_PORTRAIT", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-AbstractPdfCreator.html#constant_ORIENTATION_PORTRAIT" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\AbstractPdfCreator\u003A\u003A\u0024htmlContent", + "name": "htmlContent", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-AbstractPdfCreator.html#property_htmlContent" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\AbstractPdfCreator\u003A\u003A\u0024filename", + "name": "filename", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-AbstractPdfCreator.html#property_filename" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\AbstractPdfCreator\u003A\u003A\u0024outputMode", + "name": "outputMode", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-AbstractPdfCreator.html#property_outputMode" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\AbstractPdfCreator\u003A\u003A\u0024folder", + "name": "folder", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-AbstractPdfCreator.html#property_folder" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\AbstractPdfCreator\u003A\u003A\u0024mediaType", + "name": "mediaType", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-AbstractPdfCreator.html#property_mediaType" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\AbstractPdfCreator\u003A\u003A\u0024fonts", + "name": "fonts", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-AbstractPdfCreator.html#property_fonts" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\AbstractPdfCreator\u003A\u003A\u0024margins", + "name": "margins", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-AbstractPdfCreator.html#property_margins" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\AbstractPdfCreator\u003A\u003A\u0024format", + "name": "format", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-AbstractPdfCreator.html#property_format" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\AbstractPdfCreator\u003A\u003A\u0024orientation", + "name": "orientation", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-AbstractPdfCreator.html#property_orientation" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\AbstractPdfCreator\u003A\u003A\u0024templateFilePath", + "name": "templateFilePath", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-AbstractPdfCreator.html#property_templateFilePath" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\AbstractPdfCreator\u003A\u003A\u0024beforeCreateInstanceCallback", + "name": "beforeCreateInstanceCallback", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-AbstractPdfCreator.html#property_beforeCreateInstanceCallback" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\AbstractPdfCreator\u003A\u003A\u0024beforeOutputPdfCallback", + "name": "beforeOutputPdfCallback", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-AbstractPdfCreator.html#property_beforeOutputPdfCallback" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\BeforeCreateLibraryInstanceCallback", + "name": "BeforeCreateLibraryInstanceCallback", + "summary": "Class\u0020BeforeCreateLibraryInstanceCallback.", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-BeforeCreateLibraryInstanceCallback.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\BeforeCreateLibraryInstanceCallback\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "BeforeCreateLibraryInstanceCallback\u0020constructor.", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-BeforeCreateLibraryInstanceCallback.html#method___construct" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\BeforeCreateLibraryInstanceCallback\u003A\u003AgetConstructorParameters\u0028\u0029", + "name": "getConstructorParameters", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-BeforeCreateLibraryInstanceCallback.html#method_getConstructorParameters" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\BeforeCreateLibraryInstanceCallback\u003A\u003AsetConstructorParameters\u0028\u0029", + "name": "setConstructorParameters", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-BeforeCreateLibraryInstanceCallback.html#method_setConstructorParameters" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\BeforeCreateLibraryInstanceCallback\u003A\u003A\u0024constructorParameters", + "name": "constructorParameters", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-BeforeCreateLibraryInstanceCallback.html#property_constructorParameters" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\BeforeOutputPdfCallback", + "name": "BeforeOutputPdfCallback", + "summary": "Class\u0020BeforeOutputPdfCallback.", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-BeforeOutputPdfCallback.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\BeforeOutputPdfCallback\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-BeforeOutputPdfCallback.html#method___construct" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\BeforeOutputPdfCallback\u003A\u003AgetLibraryInstance\u0028\u0029", + "name": "getLibraryInstance", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-BeforeOutputPdfCallback.html#method_getLibraryInstance" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\BeforeOutputPdfCallback\u003A\u003AsetLibraryInstance\u0028\u0029", + "name": "setLibraryInstance", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-BeforeOutputPdfCallback.html#method_setLibraryInstance" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\BeforeOutputPdfCallback\u003A\u003AgetOutputParameters\u0028\u0029", + "name": "getOutputParameters", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-BeforeOutputPdfCallback.html#method_getOutputParameters" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\BeforeOutputPdfCallback\u003A\u003AsetOutputParameters\u0028\u0029", + "name": "setOutputParameters", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-BeforeOutputPdfCallback.html#method_setOutputParameters" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\BeforeOutputPdfCallback\u003A\u003A\u0024libraryInstance", + "name": "libraryInstance", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-BeforeOutputPdfCallback.html#property_libraryInstance" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\BeforeOutputPdfCallback\u003A\u003A\u0024outputParameters", + "name": "outputParameters", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-BeforeOutputPdfCallback.html#property_outputParameters" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\Concrete\\MpdfCreator", + "name": "MpdfCreator", + "summary": "Class\u0020MpdfCreator.", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-Concrete-MpdfCreator.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\Concrete\\MpdfCreator\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "MpdfCreator\u0020constructor.", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-Concrete-MpdfCreator.html#method___construct" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\Concrete\\MpdfCreator\u003A\u003Arender\u0028\u0029", + "name": "render", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-Concrete-MpdfCreator.html#method_render" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\Concrete\\MpdfCreator\u003A\u003AgetSupportedOutputModes\u0028\u0029", + "name": "getSupportedOutputModes", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-Concrete-MpdfCreator.html#method_getSupportedOutputModes" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\Concrete\\MpdfCreator\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Return\u0020an\u0020unique\u0020type\u0020alias.", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-Concrete-MpdfCreator.html#method_getType" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\Concrete\\MpdfCreator\u003A\u003AaddFontDirectories\u0028\u0029", + "name": "addFontDirectories", + "summary": "Add\u0020font\u0020directories\u0020to\u0020the\u0020config.\u0020Directory\u0020must\u0020contain\u0020mpdf\u002Dconfig.php.", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-Concrete-MpdfCreator.html#method_addFontDirectories" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\Concrete\\MpdfCreator\u003A\u003AapplyFonts\u0028\u0029", + "name": "applyFonts", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-Concrete-MpdfCreator.html#method_applyFonts" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\Concrete\\MpdfCreator\u003A\u003AapplyDocumentFormatConfiguration\u0028\u0029", + "name": "applyDocumentFormatConfiguration", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-Concrete-MpdfCreator.html#method_applyDocumentFormatConfiguration" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\Concrete\\MpdfCreator\u003A\u003AapplyTemplate\u0028\u0029", + "name": "applyTemplate", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-Concrete-MpdfCreator.html#method_applyTemplate" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\Concrete\\MpdfCreator\u003A\u003A\u0024legacyFontDirectoryConfig", + "name": "legacyFontDirectoryConfig", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-Concrete-MpdfCreator.html#property_legacyFontDirectoryConfig" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\PdfCreatorFactory", + "name": "PdfCreatorFactory", + "summary": "Class\u0020PdfCreatorFactory.", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-PdfCreatorFactory.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\PdfCreatorFactory\u003A\u003AgetTypes\u0028\u0029", + "name": "getTypes", + "summary": "Return\u0020supported\u0020pdf\u0020creator\u0020types.", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-PdfCreatorFactory.html#method_getTypes" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\PdfCreatorFactory\u003A\u003AcreateInstance\u0028\u0029", + "name": "createInstance", + "summary": "Return\u0020a\u0020pdf\u0020creator\u0020instance\u0020for\u0020given\u0020type\u0020or\u0020null,\u0020if\u0020no\u0020type\u0020is\u0020registered\u0020for\u0020given\u0020type.", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-PdfCreatorFactory.html#method_createInstance" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\PdfCreatorFactory\u003A\u003AgetPdfCreatorRegistry\u0028\u0029", + "name": "getPdfCreatorRegistry", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-PdfCreator-PdfCreatorFactory.html#method_getPdfCreatorRegistry" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Request\\CurlRequest", + "name": "CurlRequest", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Request-CurlRequest.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Request\\CurlRequest\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "CurlRequest\u0020constructor.", + "url": "classes/HeimrichHannot-UtilsBundle-Request-CurlRequest.html#method___construct" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Request\\CurlRequest\u003A\u003Ainit\u0028\u0029", + "name": "init", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Request-CurlRequest.html#method_init" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Command\\EntityFinderCommand\u003A\u003A\u0024defaultName", - "name": "defaultName", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Request\\CurlRequest\u003A\u003AsetOption\u0028\u0029", + "name": "setOption", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Command-EntityFinderCommand.html#property_defaultName" + "url": "classes/HeimrichHannot-UtilsBundle-Request-CurlRequest.html#method_setOption" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Command\\EntityFinderCommand\u003A\u003A\u0024defaultDescription", - "name": "defaultDescription", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Request\\CurlRequest\u003A\u003Aexecute\u0028\u0029", + "name": "execute", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Command-EntityFinderCommand.html#property_defaultDescription" + "url": "classes/HeimrichHannot-UtilsBundle-Request-CurlRequest.html#method_execute" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Command\\EntityFinderCommand\u003A\u003A\u0024contaoFramework", - "name": "contaoFramework", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Request\\CurlRequest\u003A\u003AgetInfo\u0028\u0029", + "name": "getInfo", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Command-EntityFinderCommand.html#property_contaoFramework" + "url": "classes/HeimrichHannot-UtilsBundle-Request-CurlRequest.html#method_getInfo" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Command\\EntityFinderCommand\u003A\u003A\u0024eventDispatcher", - "name": "eventDispatcher", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Request\\CurlRequest\u003A\u003Aclose\u0028\u0029", + "name": "close", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Command-EntityFinderCommand.html#property_eventDispatcher" + "url": "classes/HeimrichHannot-UtilsBundle-Request-CurlRequest.html#method_close" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Command\\EntityFinderCommand\u003A\u003A\u0024connection", - "name": "connection", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Request\\CurlRequest\u003A\u003A\u0024handle", + "name": "handle", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Command-EntityFinderCommand.html#property_connection" + "url": "classes/HeimrichHannot-UtilsBundle-Request-CurlRequest.html#property_handle" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Command\\EntityFinderCommand\u003A\u003A\u0024entityFinderHelper", - "name": "entityFinderHelper", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Request\\CurlRequestUtil", + "name": "CurlRequestUtil", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Command-EntityFinderCommand.html#property_entityFinderHelper" + "url": "classes/HeimrichHannot-UtilsBundle-Request-CurlRequestUtil.html" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\ContaoManager\\Plugin", - "name": "Plugin", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Request\\CurlRequestUtil\u003A\u003A__construct\u0028\u0029", + "name": "__construct", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-ContaoManager-Plugin.html" + "url": "classes/HeimrichHannot-UtilsBundle-Request-CurlRequestUtil.html#method___construct" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\ContaoManager\\Plugin\u003A\u003AgetBundles\u0028\u0029", - "name": "getBundles", - "summary": "\u007B\u0040inheritdoc\u007D", - "url": "classes/HeimrichHannot-UtilsBundle-ContaoManager-Plugin.html#method_getBundles" + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Request\\CurlRequestUtil\u003A\u003Arequest\u0028\u0029", + "name": "request", + "summary": "Executes\u0020a\u0020curl\u0020request\u0020while\u0020taking.", + "url": "classes/HeimrichHannot-UtilsBundle-Request-CurlRequestUtil.html#method_request" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\ContaoManager\\Plugin\u003A\u003AregisterContainerConfiguration\u0028\u0029", - "name": "registerContainerConfiguration", - "summary": "Allows\u0020a\u0020plugin\u0020to\u0020load\u0020container\u0020configuration.", - "url": "classes/HeimrichHannot-UtilsBundle-ContaoManager-Plugin.html#method_registerContainerConfiguration" + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Request\\CurlRequestUtil\u003A\u003ApostRequest\u0028\u0029", + "name": "postRequest", + "summary": "Create\u0020a\u0020curl\u0020post\u0020request.", + "url": "classes/HeimrichHannot-UtilsBundle-Request-CurlRequestUtil.html#method_postRequest" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AbstractDcaField", - "name": "AbstractDcaField", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Request\\CurlRequestUtil\u003A\u003ArecursiveGetRequest\u0028\u0029", + "name": "recursiveGetRequest", + "summary": "Recursivly\u0020send\u0020get\u0020request\u0020and\u0020terminates\u0020if\u0020termination\u0020condition\u0020is\u0020given\u0020or\u0020max\u0020request\u0020count\u0020is\u0020reached.", + "url": "classes/HeimrichHannot-UtilsBundle-Request-CurlRequestUtil.html#method_recursiveGetRequest" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Request\\CurlRequestUtil\u003A\u003ArecursivePostRequest\u0028\u0029", + "name": "recursivePostRequest", + "summary": "Recursivly\u0020send\u0020post\u0020request\u0020and\u0020terminates\u0020if\u0020termination\u0020condition\u0020is\u0020given\u0020or\u0020max\u0020request\u0020count\u0020is\u0020reached.", + "url": "classes/HeimrichHannot-UtilsBundle-Request-CurlRequestUtil.html#method_recursivePostRequest" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Request\\CurlRequestUtil\u003A\u003AsplitResponseHeaderAndBody\u0028\u0029", + "name": "splitResponseHeaderAndBody", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Dca-AbstractDcaField.html" + "url": "classes/HeimrichHannot-UtilsBundle-Request-CurlRequestUtil.html#method_splitResponseHeaderAndBody" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AbstractDcaField\u003A\u003Aregister\u0028\u0029", - "name": "register", - "summary": "Register\u0020a\u0020dca\u0020to\u0020have\u0020an\u0020author\u0020field\u0020and\u0020update\u0020logic\u0020added.", - "url": "classes/HeimrichHannot-UtilsBundle-Dca-AbstractDcaField.html#method_register" + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Request\\CurlRequestUtil\u003A\u003AprepareHeaderArrayForPrint\u0028\u0029", + "name": "prepareHeaderArrayForPrint", + "summary": "Creates\u0020a\u0020linebreak\u0020separated\u0020list\u0020of\u0020the\u0020headers\u0020in\u0020\u0024arrHeaders\u0020\u002D\u003E\u0020see\u0020request\u0028\u0029\u0020and\u0020postRequest\u0028\u0029.", + "url": "classes/HeimrichHannot-UtilsBundle-Request-CurlRequestUtil.html#method_prepareHeaderArrayForPrint" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AbstractDcaField\u003A\u003AstoreConfig\u0028\u0029", - "name": "storeConfig", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Request\\CurlRequestUtil\u003A\u003AgetHandle\u0028\u0029", + "name": "getHandle", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Dca-AbstractDcaField.html#method_storeConfig" + "url": "classes/HeimrichHannot-UtilsBundle-Request-CurlRequestUtil.html#method_getHandle" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AbstractDcaField\u003A\u003AloadConfig\u0028\u0029", - "name": "loadConfig", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Request\\CurlRequestUtil\u003A\u003AsetHandle\u0028\u0029", + "name": "setHandle", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Dca-AbstractDcaField.html#method_loadConfig" + "url": "classes/HeimrichHannot-UtilsBundle-Request-CurlRequestUtil.html#method_setHandle" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AbstractDcaField\u003A\u003AgetRegistrations\u0028\u0029", - "name": "getRegistrations", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Request\\CurlRequestUtil\u003A\u003AcreateCurlHandle\u0028\u0029", + "name": "createCurlHandle", + "summary": "Create\u0020the\u0020curl\u0020handle.", + "url": "classes/HeimrichHannot-UtilsBundle-Request-CurlRequestUtil.html#method_createCurlHandle" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Request\\CurlRequestUtil\u003A\u003AprepareHeaders\u0028\u0029", + "name": "prepareHeaders", + "summary": "Prepare\u0020headers\u0020for\u0020curl\u0020handle.", + "url": "classes/HeimrichHannot-UtilsBundle-Request-CurlRequestUtil.html#method_prepareHeaders" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Request\\CurlRequestUtil\u003A\u003AHTTP_STATUS_CODE_MESSAGES", + "name": "HTTP_STATUS_CODE_MESSAGES", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Dca-AbstractDcaField.html#method_getRegistrations" + "url": "classes/HeimrichHannot-UtilsBundle-Request-CurlRequestUtil.html#constant_HTTP_STATUS_CODE_MESSAGES" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AbstractDcaField\u003A\u003AcreateOptionObject\u0028\u0029", - "name": "createOptionObject", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Request\\CurlRequestUtil\u003A\u003A\u0024framework", + "name": "framework", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Dca-AbstractDcaField.html#method_createOptionObject" + "url": "classes/HeimrichHannot-UtilsBundle-Request-CurlRequestUtil.html#property_framework" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AuthorField", - "name": "AuthorField", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Request\\CurlRequestUtil\u003A\u003A\u0024container", + "name": "container", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Dca-AuthorField.html" + "url": "classes/HeimrichHannot-UtilsBundle-Request-CurlRequestUtil.html#property_container" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AuthorField\u003A\u003AgetRegistrations\u0028\u0029", - "name": "getRegistrations", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Request\\CurlRequestUtil\u003A\u003A\u0024handle", + "name": "handle", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Dca-AuthorField.html#method_getRegistrations" + "url": "classes/HeimrichHannot-UtilsBundle-Request-CurlRequestUtil.html#property_handle" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AuthorField\u003A\u003AcreateOptionObject\u0028\u0029", - "name": "createOptionObject", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Request\\HttpRequestInterface", + "name": "HttpRequestInterface", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Dca-AuthorField.html#method_createOptionObject" + "url": "classes/HeimrichHannot-UtilsBundle-Request-HttpRequestInterface.html" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AuthorField\u003A\u003AstoreConfig\u0028\u0029", - "name": "storeConfig", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Request\\HttpRequestInterface\u003A\u003Ainit\u0028\u0029", + "name": "init", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Dca-AuthorField.html#method_storeConfig" + "url": "classes/HeimrichHannot-UtilsBundle-Request-HttpRequestInterface.html#method_init" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AuthorField\u003A\u003AloadConfig\u0028\u0029", - "name": "loadConfig", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Request\\HttpRequestInterface\u003A\u003AsetOption\u0028\u0029", + "name": "setOption", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Dca-AuthorField.html#method_loadConfig" + "url": "classes/HeimrichHannot-UtilsBundle-Request-HttpRequestInterface.html#method_setOption" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AuthorField\u003A\u003ATYPE_USER", - "name": "TYPE_USER", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Request\\HttpRequestInterface\u003A\u003Aexecute\u0028\u0029", + "name": "execute", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Dca-AuthorField.html#constant_TYPE_USER" + "url": "classes/HeimrichHannot-UtilsBundle-Request-HttpRequestInterface.html#method_execute" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AuthorField\u003A\u003ATYPE_MEMBER", - "name": "TYPE_MEMBER", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Request\\HttpRequestInterface\u003A\u003AgetInfo\u0028\u0029", + "name": "getInfo", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Dca-AuthorField.html#constant_TYPE_MEMBER" + "url": "classes/HeimrichHannot-UtilsBundle-Request-HttpRequestInterface.html#method_getInfo" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AuthorField\u003A\u003A\u0024tables", - "name": "tables", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Request\\HttpRequestInterface\u003A\u003Aclose\u0028\u0029", + "name": "close", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Dca-AuthorField.html#property_tables" + "url": "classes/HeimrichHannot-UtilsBundle-Request-HttpRequestInterface.html#method_close" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AuthorFieldConfiguration", - "name": "AuthorFieldConfiguration", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Request\\RequestUtil", + "name": "RequestUtil", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Dca-AuthorFieldConfiguration.html" + "url": "classes/HeimrichHannot-UtilsBundle-Request-RequestUtil.html" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AuthorFieldConfiguration\u003A\u003AsetType\u0028\u0029", - "name": "setType", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Request\\RequestUtil\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "RequestUtil\u0020constructor.", + "url": "classes/HeimrichHannot-UtilsBundle-Request-RequestUtil.html#method___construct" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Request\\RequestUtil\u003A\u003AisNewVisitor\u0028\u0029", + "name": "isNewVisitor", + "summary": "Detect\u0020if\u0020user\u0020already\u0020visited\u0020our\u0020domain\u0020before.", + "url": "classes/HeimrichHannot-UtilsBundle-Request-RequestUtil.html#method_isNewVisitor" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Request\\RequestUtil\u003A\u003A\u0024requestStack", + "name": "requestStack", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Dca-AuthorFieldConfiguration.html#method_setType" + "url": "classes/HeimrichHannot-UtilsBundle-Request-RequestUtil.html#property_requestStack" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AuthorFieldConfiguration\u003A\u003AhasFieldNamePrefix\u0028\u0029", - "name": "hasFieldNamePrefix", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Routing\\RoutingUtil", + "name": "RoutingUtil", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Dca-AuthorFieldConfiguration.html#method_hasFieldNamePrefix" + "url": "classes/HeimrichHannot-UtilsBundle-Routing-RoutingUtil.html" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AuthorFieldConfiguration\u003A\u003AgetFieldNamePrefix\u0028\u0029", - "name": "getFieldNamePrefix", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Routing\\RoutingUtil\u003A\u003A__construct\u0028\u0029", + "name": "__construct", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Dca-AuthorFieldConfiguration.html#method_getFieldNamePrefix" + "url": "classes/HeimrichHannot-UtilsBundle-Routing-RoutingUtil.html#method___construct" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AuthorFieldConfiguration\u003A\u003AsetFieldNamePrefix\u0028\u0029", - "name": "setFieldNamePrefix", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Routing\\RoutingUtil\u003A\u003AgenerateBackendRoute\u0028\u0029", + "name": "generateBackendRoute", + "summary": "Generate\u0020a\u0020backend\u0020route\u0020with\u0020token\u0020and\u0020referer.", + "url": "classes/HeimrichHannot-UtilsBundle-Routing-RoutingUtil.html#method_generateBackendRoute" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Routing\\RoutingUtil\u003A\u003A\u0024utils", + "name": "utils", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Dca-AuthorFieldConfiguration.html#method_setFieldNamePrefix" + "url": "classes/HeimrichHannot-UtilsBundle-Routing-RoutingUtil.html#property_utils" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AuthorFieldConfiguration\u003A\u003AisUseDefaultLabel\u0028\u0029", - "name": "isUseDefaultLabel", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Rsce\\RsceUtil", + "name": "RsceUtil", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Dca-AuthorFieldConfiguration.html#method_isUseDefaultLabel" + "url": "classes/HeimrichHannot-UtilsBundle-Rsce-RsceUtil.html" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AuthorFieldConfiguration\u003A\u003AsetUseDefaultLabel\u0028\u0029", - "name": "setUseDefaultLabel", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Rsce\\RsceUtil\u003A\u003A__construct\u0028\u0029", + "name": "__construct", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Dca-AuthorFieldConfiguration.html#method_setUseDefaultLabel" + "url": "classes/HeimrichHannot-UtilsBundle-Rsce-RsceUtil.html#method___construct" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AuthorFieldConfiguration\u003A\u003AisExclude\u0028\u0029", - "name": "isExclude", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Rsce\\RsceUtil\u003A\u003AexplodeRsceData\u0028\u0029", + "name": "explodeRsceData", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Dca-AuthorFieldConfiguration.html#method_isExclude" + "url": "classes/HeimrichHannot-UtilsBundle-Rsce-RsceUtil.html#method_explodeRsceData" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AuthorFieldConfiguration\u003A\u003AsetExclude\u0028\u0029", - "name": "setExclude", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Rsce\\RsceUtil\u003A\u003A\u0024formUtil", + "name": "formUtil", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Dca-AuthorFieldConfiguration.html#method_setExclude" + "url": "classes/HeimrichHannot-UtilsBundle-Rsce-RsceUtil.html#property_formUtil" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AuthorFieldConfiguration\u003A\u003AisSearch\u0028\u0029", - "name": "isSearch", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Salutation\\SalutationUtil", + "name": "SalutationUtil", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Dca-AuthorFieldConfiguration.html#method_isSearch" + "url": "classes/HeimrichHannot-UtilsBundle-Salutation-SalutationUtil.html" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AuthorFieldConfiguration\u003A\u003AsetSearch\u0028\u0029", - "name": "setSearch", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Salutation\\SalutationUtil\u003A\u003A__construct\u0028\u0029", + "name": "__construct", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Dca-AuthorFieldConfiguration.html#method_setSearch" + "url": "classes/HeimrichHannot-UtilsBundle-Salutation-SalutationUtil.html#method___construct" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AuthorFieldConfiguration\u003A\u003AisFilter\u0028\u0029", - "name": "isFilter", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Salutation\\SalutationUtil\u003A\u003AcreateNameByFields\u0028\u0029", + "name": "createNameByFields", + "summary": "Creates\u0020complete\u0020names\u0020by\u0020inserting\u0020an\u0020array\u0020of\u0020the\u0020person\u0027s\u0020data.", + "url": "classes/HeimrichHannot-UtilsBundle-Salutation-SalutationUtil.html#method_createNameByFields" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Salutation\\SalutationUtil\u003A\u003AcreateSalutation\u0028\u0029", + "name": "createSalutation", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Dca-AuthorFieldConfiguration.html#method_isFilter" + "url": "classes/HeimrichHannot-UtilsBundle-Salutation-SalutationUtil.html#method_createSalutation" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AuthorFieldConfiguration\u003A\u003AsetFilter\u0028\u0029", - "name": "setFilter", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Salutation\\SalutationUtil\u003A\u003A\u0024framework", + "name": "framework", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Dca-AuthorFieldConfiguration.html#method_setFilter" + "url": "classes/HeimrichHannot-UtilsBundle-Salutation-SalutationUtil.html#property_framework" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AuthorFieldConfiguration\u003A\u003AgetType\u0028\u0029", - "name": "getType", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Security\\CodeUtil", + "name": "CodeUtil", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Dca-AuthorFieldConfiguration.html#method_getType" + "url": "classes/HeimrichHannot-UtilsBundle-Security-CodeUtil.html" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AuthorFieldConfiguration\u003A\u003A\u0024type", - "name": "type", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Security\\CodeUtil\u003A\u003A__construct\u0028\u0029", + "name": "__construct", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Dca-AuthorFieldConfiguration.html#property_type" + "url": "classes/HeimrichHannot-UtilsBundle-Security-CodeUtil.html#method___construct" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AuthorFieldConfiguration\u003A\u003A\u0024fieldNamePrefix", - "name": "fieldNamePrefix", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Security\\CodeUtil\u003A\u003Agenerate\u0028\u0029", + "name": "generate", + "summary": "Generates\u0020a\u0020code\u0020by\u0020certain\u0020criteria.", + "url": "classes/HeimrichHannot-UtilsBundle-Security-CodeUtil.html#method_generate" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Security\\CodeUtil\u003A\u003ACAPITAL_LETTERS", + "name": "CAPITAL_LETTERS", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Dca-AuthorFieldConfiguration.html#property_fieldNamePrefix" + "url": "classes/HeimrichHannot-UtilsBundle-Security-CodeUtil.html#constant_CAPITAL_LETTERS" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AuthorFieldConfiguration\u003A\u003A\u0024useDefaultLabel", - "name": "useDefaultLabel", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Security\\CodeUtil\u003A\u003ASMALL_LETTERS", + "name": "SMALL_LETTERS", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Dca-AuthorFieldConfiguration.html#property_useDefaultLabel" + "url": "classes/HeimrichHannot-UtilsBundle-Security-CodeUtil.html#constant_SMALL_LETTERS" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AuthorFieldConfiguration\u003A\u003A\u0024exclude", - "name": "exclude", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Security\\CodeUtil\u003A\u003ANUMBERS", + "name": "NUMBERS", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Dca-AuthorFieldConfiguration.html#property_exclude" + "url": "classes/HeimrichHannot-UtilsBundle-Security-CodeUtil.html#constant_NUMBERS" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AuthorFieldConfiguration\u003A\u003A\u0024search", - "name": "search", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Security\\CodeUtil\u003A\u003ASPECIAL_CHARS", + "name": "SPECIAL_CHARS", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Dca-AuthorFieldConfiguration.html#property_search" + "url": "classes/HeimrichHannot-UtilsBundle-Security-CodeUtil.html#constant_SPECIAL_CHARS" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\AuthorFieldConfiguration\u003A\u003A\u0024filter", - "name": "filter", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Security\\CodeUtil\u003A\u003ADEFAULT_ALPHABETS", + "name": "DEFAULT_ALPHABETS", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Dca-AuthorFieldConfiguration.html#property_filter" + "url": "classes/HeimrichHannot-UtilsBundle-Security-CodeUtil.html#constant_DEFAULT_ALPHABETS" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DateAddedField", - "name": "DateAddedField", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Security\\CodeUtil\u003A\u003ADEFAULT_RULES", + "name": "DEFAULT_RULES", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Dca-DateAddedField.html" + "url": "classes/HeimrichHannot-UtilsBundle-Security-CodeUtil.html#constant_DEFAULT_RULES" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DateAddedField\u003A\u003AstoreConfig\u0028\u0029", - "name": "storeConfig", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Security\\CodeUtil\u003A\u003ADEFAULT_ALLOWED_SPECIAL_CHARS", + "name": "DEFAULT_ALLOWED_SPECIAL_CHARS", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Dca-DateAddedField.html#method_storeConfig" + "url": "classes/HeimrichHannot-UtilsBundle-Security-CodeUtil.html#constant_DEFAULT_ALLOWED_SPECIAL_CHARS" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DateAddedField\u003A\u003AloadConfig\u0028\u0029", - "name": "loadConfig", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Security\\CodeUtil\u003A\u003A\u0024framework", + "name": "framework", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Dca-DateAddedField.html#method_loadConfig" + "url": "classes/HeimrichHannot-UtilsBundle-Security-CodeUtil.html#property_framework" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DateAddedField\u003A\u003A\u0024tables", - "name": "tables", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Security\\CodeUtil\u003A\u003A\u0024blnPreventAmbiguous", + "name": "blnPreventAmbiguous", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Dca-DateAddedField.html#property_tables" + "url": "classes/HeimrichHannot-UtilsBundle-Security-CodeUtil.html#property_blnPreventAmbiguous" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaFieldConfiguration", - "name": "DcaFieldConfiguration", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Security\\EncryptionUtil", + "name": "EncryptionUtil", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaFieldConfiguration.html" + "url": "classes/HeimrichHannot-UtilsBundle-Security-EncryptionUtil.html" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaFieldConfiguration\u003A\u003A__construct\u0028\u0029", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Security\\EncryptionUtil\u003A\u003A__construct\u0028\u0029", "name": "__construct", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaFieldConfiguration.html#method___construct" + "url": "classes/HeimrichHannot-UtilsBundle-Security-EncryptionUtil.html#method___construct" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaFieldConfiguration\u003A\u003AgetTable\u0028\u0029", - "name": "getTable", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Security\\EncryptionUtil\u003A\u003Aencrypt\u0028\u0029", + "name": "encrypt", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaFieldConfiguration.html#method_getTable" + "url": "classes/HeimrichHannot-UtilsBundle-Security-EncryptionUtil.html#method_encrypt" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca\\DcaFieldConfiguration\u003A\u003A\u0024table", - "name": "table", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Security\\EncryptionUtil\u003A\u003Adecrypt\u0028\u0029", + "name": "decrypt", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Dca-DcaFieldConfiguration.html#property_table" + "url": "classes/HeimrichHannot-UtilsBundle-Security-EncryptionUtil.html#method_decrypt" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\EntityFinder\\EntityFinderHelper", - "name": "EntityFinderHelper", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Security\\EncryptionUtil\u003A\u003A\u0024framework", + "name": "framework", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-EntityFinder-EntityFinderHelper.html" + "url": "classes/HeimrichHannot-UtilsBundle-Security-EncryptionUtil.html#property_framework" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\EntityFinder\\EntityFinderHelper\u003A\u003A__construct\u0028\u0029", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\String\\AnonymizerUtil", + "name": "AnonymizerUtil", + "summary": "Class\u0020AnonymizerUtil.", + "url": "classes/HeimrichHannot-UtilsBundle-String-AnonymizerUtil.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\String\\AnonymizerUtil\u003A\u003AanonymizeEmail\u0028\u0029", + "name": "anonymizeEmail", + "summary": "Returns\u0020an\u0020ananymized\u0020email\u0020address.", + "url": "classes/HeimrichHannot-UtilsBundle-String-AnonymizerUtil.html#method_anonymizeEmail" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\String\\StringUtil", + "name": "StringUtil", + "summary": "Class\u0020StringUtil.", + "url": "classes/HeimrichHannot-UtilsBundle-String-StringUtil.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\String\\StringUtil\u003A\u003A__construct\u0028\u0029", "name": "__construct", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-EntityFinder-EntityFinderHelper.html#method___construct" + "url": "classes/HeimrichHannot-UtilsBundle-String-StringUtil.html#method___construct" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\EntityFinder\\EntityFinderHelper\u003A\u003AfindModulesByTypeAndSerializedValue\u0028\u0029", - "name": "findModulesByTypeAndSerializedValue", - "summary": "Search\u0020within\u0020serialized\u0020array\u0020fields\u0020of\u0020the\u0020model\u0020entity.", - "url": "classes/HeimrichHannot-UtilsBundle-EntityFinder-EntityFinderHelper.html#method_findModulesByTypeAndSerializedValue" + "fqsen": "\\HeimrichHannot\\UtilsBundle\\String\\StringUtil\u003A\u003AstartsWith\u0028\u0029", + "name": "startsWith", + "summary": "Check\u0020for\u0020the\u0020occurrence\u0020at\u0020the\u0020start\u0020of\u0020the\u0020string.", + "url": "classes/HeimrichHannot-UtilsBundle-String-StringUtil.html#method_startsWith" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\EntityFinder\\EntityFinderHelper\u003A\u003AfindModulesByInserttag\u0028\u0029", - "name": "findModulesByInserttag", - "summary": "Find\u0020frontend\u0020modules\u0020by\u0020insert\u0020inserttags\u0020like\u0020insert_module\u0020oder\u0020insert_article.", - "url": "classes/HeimrichHannot-UtilsBundle-EntityFinder-EntityFinderHelper.html#method_findModulesByInserttag" + "fqsen": "\\HeimrichHannot\\UtilsBundle\\String\\StringUtil\u003A\u003AendsWith\u0028\u0029", + "name": "endsWith", + "summary": "Check\u0020for\u0020the\u0020occurrence\u0020at\u0020the\u0020end\u0020of\u0020the\u0020string.", + "url": "classes/HeimrichHannot-UtilsBundle-String-StringUtil.html#method_endsWith" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\EntityFinder\\EntityFinderHelper\u003A\u003AfindContentElementByInserttag\u0028\u0029", - "name": "findContentElementByInserttag", - "summary": "Find\u0020content\u0020elements\u0020by\u0020insert\u0020inserttags\u0020like\u0020insert_module\u0020oder\u0020insert_article.", - "url": "classes/HeimrichHannot-UtilsBundle-EntityFinder-EntityFinderHelper.html#method_findContentElementByInserttag" + "fqsen": "\\HeimrichHannot\\UtilsBundle\\String\\StringUtil\u003A\u003AcamelCaseToDashed\u0028\u0029", + "name": "camelCaseToDashed", + "summary": "Convert\u0020a\u0020camel\u0020case\u0020string\u0020to\u0020a\u0020dashed\u0020string.", + "url": "classes/HeimrichHannot-UtilsBundle-String-StringUtil.html#method_camelCaseToDashed" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\EntityFinder\\EntityFinderHelper\u003A\u003A\u0024utils", - "name": "utils", - "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-EntityFinder-EntityFinderHelper.html#property_utils" + "fqsen": "\\HeimrichHannot\\UtilsBundle\\String\\StringUtil\u003A\u003AcamelCaseToSnake\u0028\u0029", + "name": "camelCaseToSnake", + "summary": "Convert\u0020a\u0020camel\u0020case\u0020string\u0020to\u0020a\u0020snake\u0020cased\u0020string.", + "url": "classes/HeimrichHannot-UtilsBundle-String-StringUtil.html#method_camelCaseToSnake" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\EntityFinder\\EntityFinderHelper\u003A\u003A\u0024framework", - "name": "framework", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\String\\StringUtil\u003A\u003ArandomChar\u0028\u0029", + "name": "randomChar", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-EntityFinder-EntityFinderHelper.html#property_framework" + "url": "classes/HeimrichHannot-UtilsBundle-String-StringUtil.html#method_randomChar" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Event\\ExtendEntityFinderEvent", - "name": "ExtendEntityFinderEvent", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\String\\StringUtil\u003A\u003ArandomLetter\u0028\u0029", + "name": "randomLetter", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Event-ExtendEntityFinderEvent.html" + "url": "classes/HeimrichHannot-UtilsBundle-String-StringUtil.html#method_randomLetter" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Event\\ExtendEntityFinderEvent\u003A\u003A__construct\u0028\u0029", - "name": "__construct", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\String\\StringUtil\u003A\u003ArandomNumber\u0028\u0029", + "name": "randomNumber", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Event-ExtendEntityFinderEvent.html#method___construct" + "url": "classes/HeimrichHannot-UtilsBundle-String-StringUtil.html#method_randomNumber" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Event\\ExtendEntityFinderEvent\u003A\u003AgetTable\u0028\u0029", - "name": "getTable", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\String\\StringUtil\u003A\u003Arandom\u0028\u0029", + "name": "random", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Event-ExtendEntityFinderEvent.html#method_getTable" + "url": "classes/HeimrichHannot-UtilsBundle-String-StringUtil.html#method_random" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Event\\ExtendEntityFinderEvent\u003A\u003AgetId\u0028\u0029", - "name": "getId", - "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Event-ExtendEntityFinderEvent.html#method_getId" + "fqsen": "\\HeimrichHannot\\UtilsBundle\\String\\StringUtil\u003A\u003AtruncateHtml\u0028\u0029", + "name": "truncateHtml", + "summary": "Truncates\u0020a\u0020given\u0020string\u0020respecting\u0020html\u0020element.", + "url": "classes/HeimrichHannot-UtilsBundle-String-StringUtil.html#method_truncateHtml" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Event\\ExtendEntityFinderEvent\u003A\u003AaddParent\u0028\u0029", - "name": "addParent", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\String\\StringUtil\u003A\u003ApregReplaceLast\u0028\u0029", + "name": "pregReplaceLast", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Event-ExtendEntityFinderEvent.html#method_addParent" + "url": "classes/HeimrichHannot-UtilsBundle-String-StringUtil.html#method_pregReplaceLast" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Event\\ExtendEntityFinderEvent\u003A\u003AgetParents\u0028\u0029", - "name": "getParents", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\String\\StringUtil\u003A\u003AremoveLeadingAndTrailingSlash\u0028\u0029", + "name": "removeLeadingAndTrailingSlash", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Event-ExtendEntityFinderEvent.html#method_getParents" + "url": "classes/HeimrichHannot-UtilsBundle-String-StringUtil.html#method_removeLeadingAndTrailingSlash" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Event\\ExtendEntityFinderEvent\u003A\u003AsetParents\u0028\u0029", - "name": "setParents", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\String\\StringUtil\u003A\u003AremoveLeadingString\u0028\u0029", + "name": "removeLeadingString", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Event-ExtendEntityFinderEvent.html#method_setParents" + "url": "classes/HeimrichHannot-UtilsBundle-String-StringUtil.html#method_removeLeadingString" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Event\\ExtendEntityFinderEvent\u003A\u003AgetOutput\u0028\u0029", - "name": "getOutput", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\String\\StringUtil\u003A\u003AremoveTrailingString\u0028\u0029", + "name": "removeTrailingString", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Event-ExtendEntityFinderEvent.html#method_getOutput" + "url": "classes/HeimrichHannot-UtilsBundle-String-StringUtil.html#method_removeTrailingString" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Event\\ExtendEntityFinderEvent\u003A\u003AsetOutput\u0028\u0029", - "name": "setOutput", - "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Event-ExtendEntityFinderEvent.html#method_setOutput" + "fqsen": "\\HeimrichHannot\\UtilsBundle\\String\\StringUtil\u003A\u003ArestoreBasicEntities\u0028\u0029", + "name": "restoreBasicEntities", + "summary": "Restore\u0020basic\u0020entities.", + "url": "classes/HeimrichHannot-UtilsBundle-String-StringUtil.html#method_restoreBasicEntities" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Event\\ExtendEntityFinderEvent\u003A\u003AisOnlyText\u0028\u0029", - "name": "isOnlyText", - "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Event-ExtendEntityFinderEvent.html#method_isOnlyText" + "fqsen": "\\HeimrichHannot\\UtilsBundle\\String\\StringUtil\u003A\u003AconvertToInlineCss\u0028\u0029", + "name": "convertToInlineCss", + "summary": "Convert\u0020css\u0020into\u0020inline\u0020styles.", + "url": "classes/HeimrichHannot-UtilsBundle-String-StringUtil.html#method_convertToInlineCss" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Event\\ExtendEntityFinderEvent\u003A\u003AaddInserttag\u0028\u0029", - "name": "addInserttag", - "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Event-ExtendEntityFinderEvent.html#method_addInserttag" + "fqsen": "\\HeimrichHannot\\UtilsBundle\\String\\StringUtil\u003A\u003Ahtml2Text\u0028\u0029", + "name": "html2Text", + "summary": "Converts\u0020html\u0020to\u0020text.", + "url": "classes/HeimrichHannot-UtilsBundle-String-StringUtil.html#method_html2Text" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Event\\ExtendEntityFinderEvent\u003A\u003AgetInserttags\u0028\u0029", - "name": "getInserttags", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\String\\StringUtil\u003A\u003AlowerCase\u0028\u0029", + "name": "lowerCase", + "summary": "Convenience\u0020method\u0020for\u0020lower\u0020casing\u0020in\u0020a\u0020save\u0020callback.", + "url": "classes/HeimrichHannot-UtilsBundle-String-StringUtil.html#method_lowerCase" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\String\\StringUtil\u003A\u003AensureLineBreaks\u0028\u0029", + "name": "ensureLineBreaks", + "summary": "Ensure\u0020line\u0020breaks\u0020for\u0020several\u0020languages.", + "url": "classes/HeimrichHannot-UtilsBundle-String-StringUtil.html#method_ensureLineBreaks" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\String\\StringUtil\u003A\u003AconvertXmlToArray\u0028\u0029", + "name": "convertXmlToArray", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Event-ExtendEntityFinderEvent.html#method_getInserttags" + "url": "classes/HeimrichHannot-UtilsBundle-String-StringUtil.html#method_convertXmlToArray" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Event\\ExtendEntityFinderEvent\u003A\u003AsetInserttags\u0028\u0029", - "name": "setInserttags", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\String\\StringUtil\u003A\u003AreplaceUnicodeEmojisByHtml\u0028\u0029", + "name": "replaceUnicodeEmojisByHtml", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Event-ExtendEntityFinderEvent.html#method_setInserttags" + "url": "classes/HeimrichHannot-UtilsBundle-String-StringUtil.html#method_replaceUnicodeEmojisByHtml" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Event\\ExtendEntityFinderEvent\u003A\u003AgetEntityFinderHelper\u0028\u0029", - "name": "getEntityFinderHelper", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\String\\StringUtil\u003A\u003AreplaceInsertTags\u0028\u0029", + "name": "replaceInsertTags", + "summary": "Replace\u0020insert\u0020tags\u0020with\u0020their\u0020values.", + "url": "classes/HeimrichHannot-UtilsBundle-String-StringUtil.html#method_replaceInsertTags" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\String\\StringUtil\u003A\u003ACAPITAL_LETTERS", + "name": "CAPITAL_LETTERS", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Event-ExtendEntityFinderEvent.html#method_getEntityFinderHelper" + "url": "classes/HeimrichHannot-UtilsBundle-String-StringUtil.html#constant_CAPITAL_LETTERS" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Event\\ExtendEntityFinderEvent\u003A\u003A\u0024output", - "name": "output", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\String\\StringUtil\u003A\u003ACAPITAL_LETTERS_NONAMBIGUOUS", + "name": "CAPITAL_LETTERS_NONAMBIGUOUS", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Event-ExtendEntityFinderEvent.html#property_output" + "url": "classes/HeimrichHannot-UtilsBundle-String-StringUtil.html#constant_CAPITAL_LETTERS_NONAMBIGUOUS" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Event\\ExtendEntityFinderEvent\u003A\u003A\u0024table", - "name": "table", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\String\\StringUtil\u003A\u003ASMALL_LETTERS", + "name": "SMALL_LETTERS", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Event-ExtendEntityFinderEvent.html#property_table" + "url": "classes/HeimrichHannot-UtilsBundle-String-StringUtil.html#constant_SMALL_LETTERS" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Event\\ExtendEntityFinderEvent\u003A\u003A\u0024id", - "name": "id", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\String\\StringUtil\u003A\u003ASMALL_LETTERS_NONAMBIGUOUS", + "name": "SMALL_LETTERS_NONAMBIGUOUS", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Event-ExtendEntityFinderEvent.html#property_id" + "url": "classes/HeimrichHannot-UtilsBundle-String-StringUtil.html#constant_SMALL_LETTERS_NONAMBIGUOUS" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Event\\ExtendEntityFinderEvent\u003A\u003A\u0024parents", - "name": "parents", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\String\\StringUtil\u003A\u003ANUMBERS", + "name": "NUMBERS", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Event-ExtendEntityFinderEvent.html#property_parents" + "url": "classes/HeimrichHannot-UtilsBundle-String-StringUtil.html#constant_NUMBERS" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Event\\ExtendEntityFinderEvent\u003A\u003A\u0024inserttags", - "name": "inserttags", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\String\\StringUtil\u003A\u003ANUMBERS_NONAMBIGUOUS", + "name": "NUMBERS_NONAMBIGUOUS", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Event-ExtendEntityFinderEvent.html#property_inserttags" + "url": "classes/HeimrichHannot-UtilsBundle-String-StringUtil.html#constant_NUMBERS_NONAMBIGUOUS" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Event\\ExtendEntityFinderEvent\u003A\u003A\u0024entityFinderHelper", - "name": "entityFinderHelper", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\String\\StringUtil\u003A\u003A\u0024framework", + "name": "framework", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Event-ExtendEntityFinderEvent.html#property_entityFinderHelper" + "url": "classes/HeimrichHannot-UtilsBundle-String-StringUtil.html#property_framework" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Event\\ExtendEntityFinderEvent\u003A\u003A\u0024onlyText", - "name": "onlyText", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\String\\StringUtil\u003A\u003A\u0024utils", + "name": "utils", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Event-ExtendEntityFinderEvent.html#property_onlyText" + "url": "classes/HeimrichHannot-UtilsBundle-String-StringUtil.html#property_utils" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\EventListener\\DcaField\\AbstractDcaFieldListener", - "name": "AbstractDcaFieldListener", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Template\\TemplateUtil", + "name": "TemplateUtil", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-EventListener-DcaField-AbstractDcaFieldListener.html" + "url": "classes/HeimrichHannot-UtilsBundle-Template-TemplateUtil.html" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\EventListener\\DcaField\\AbstractDcaFieldListener\u003A\u003A__construct\u0028\u0029", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Template\\TemplateUtil\u003A\u003A__construct\u0028\u0029", "name": "__construct", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-EventListener-DcaField-AbstractDcaFieldListener.html#method___construct" + "url": "classes/HeimrichHannot-UtilsBundle-Template-TemplateUtil.html#method___construct" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\EventListener\\DcaField\\AbstractDcaFieldListener\u003A\u003AgetModelInstance\u0028\u0029", - "name": "getModelInstance", - "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-EventListener-DcaField-AbstractDcaFieldListener.html#method_getModelInstance" + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Template\\TemplateUtil\u003A\u003AgetAllTemplates\u0028\u0029", + "name": "getAllTemplates", + "summary": "Get\u0020a\u0020list\u0020of\u0020all\u0020available\u0020templates.", + "url": "classes/HeimrichHannot-UtilsBundle-Template-TemplateUtil.html#method_getAllTemplates" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\EventListener\\DcaField\\AbstractDcaFieldListener\u003A\u003AgetSubscribedServices\u0028\u0029", - "name": "getSubscribedServices", - "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-EventListener-DcaField-AbstractDcaFieldListener.html#method_getSubscribedServices" + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Template\\TemplateUtil\u003A\u003AgetTemplateGroup\u0028\u0029", + "name": "getTemplateGroup", + "summary": "Return\u0020all\u0020template\u0020files\u0020of\u0020a\u0020particular\u0020group\u0020as\u0020array.", + "url": "classes/HeimrichHannot-UtilsBundle-Template-TemplateUtil.html#method_getTemplateGroup" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\EventListener\\DcaField\\AbstractDcaFieldListener\u003A\u003A\u0024container", - "name": "container", - "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-EventListener-DcaField-AbstractDcaFieldListener.html#property_container" + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Template\\TemplateUtil\u003A\u003AgetTemplate\u0028\u0029", + "name": "getTemplate", + "summary": "Find\u0020a\u0020particular\u0020template\u0020file\u0020and\u0020return\u0020its\u0020path.", + "url": "classes/HeimrichHannot-UtilsBundle-Template-TemplateUtil.html#method_getTemplate" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\EventListener\\DcaField\\DateAddedFieldListener", - "name": "DateAddedFieldListener", - "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-EventListener-DcaField-DateAddedFieldListener.html" + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Template\\TemplateUtil\u003A\u003AfindTemplates\u0028\u0029", + "name": "findTemplates", + "summary": "Return\u0020the\u0020files\u0020matching\u0020a\u0020GLOB\u0020pattern.", + "url": "classes/HeimrichHannot-UtilsBundle-Template-TemplateUtil.html#method_findTemplates" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\EventListener\\DcaField\\DateAddedFieldListener\u003A\u003AonLoadDataContainer\u0028\u0029", - "name": "onLoadDataContainer", - "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-EventListener-DcaField-DateAddedFieldListener.html#method_onLoadDataContainer" + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Template\\TemplateUtil\u003A\u003AremoveTemplateComment\u0028\u0029", + "name": "removeTemplateComment", + "summary": "remove\u0020TEMPLATE\u0020START\/END\u0020comment\u0020from\u0020template\u0020if\u0020in\u0020debug\u0020mode.", + "url": "classes/HeimrichHannot-UtilsBundle-Template-TemplateUtil.html#method_removeTemplateComment" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\EventListener\\DcaField\\DateAddedFieldListener\u003A\u003AonLoadCallback\u0028\u0029", - "name": "onLoadCallback", - "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-EventListener-DcaField-DateAddedFieldListener.html#method_onLoadCallback" + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Template\\TemplateUtil\u003A\u003AisTemplatePartEmpty\u0028\u0029", + "name": "isTemplatePartEmpty", + "summary": "Return\u0020true,\u0020if\u0020the\u0020template\u0020part\u0020is\u0020empty.", + "url": "classes/HeimrichHannot-UtilsBundle-Template-TemplateUtil.html#method_isTemplatePartEmpty" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\EventListener\\DcaField\\DateAddedFieldListener\u003A\u003AonCopyCallback\u0028\u0029", - "name": "onCopyCallback", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Template\\TemplateUtil\u003A\u003AgetPageAliasAsCssClass\u0028\u0029", + "name": "getPageAliasAsCssClass", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-EventListener-DcaField-DateAddedFieldListener.html#method_onCopyCallback" + "url": "classes/HeimrichHannot-UtilsBundle-Template-TemplateUtil.html#method_getPageAliasAsCssClass" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\EventListener\\DcaField\\DcaAuthorListener", - "name": "DcaAuthorListener", - "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-EventListener-DcaField-DcaAuthorListener.html" + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Template\\TemplateUtil\u003A\u003ArenderTwigTemplate\u0028\u0029", + "name": "renderTwigTemplate", + "summary": "Renders\u0020a\u0020twig\u0020template\u0020with\u0020data.", + "url": "classes/HeimrichHannot-UtilsBundle-Template-TemplateUtil.html#method_renderTwigTemplate" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\EventListener\\DcaField\\DcaAuthorListener\u003A\u003A__construct\u0028\u0029", - "name": "__construct", - "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-EventListener-DcaField-DcaAuthorListener.html#method___construct" + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Template\\TemplateUtil\u003A\u003AgetBundleTemplate\u0028\u0029", + "name": "getBundleTemplate", + "summary": "Find\u0020a\u0020particular\u0020template\u0020file\u0020within\u0020all\u0020bundles\u0020and\u0020return\u0020its\u0020path.", + "url": "classes/HeimrichHannot-UtilsBundle-Template-TemplateUtil.html#method_getBundleTemplate" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\EventListener\\DcaField\\DcaAuthorListener\u003A\u003AonLoadDataContainer\u0028\u0029", - "name": "onLoadDataContainer", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Template\\TemplateUtil\u003A\u003A\u0024cache", + "name": "cache", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-EventListener-DcaField-DcaAuthorListener.html#method_onLoadDataContainer" + "url": "classes/HeimrichHannot-UtilsBundle-Template-TemplateUtil.html#property_cache" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\EventListener\\DcaField\\DcaAuthorListener\u003A\u003AonConfigCopyCallback\u0028\u0029", - "name": "onConfigCopyCallback", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Template\\TemplateUtil\u003A\u003A\u0024twigFiles", + "name": "twigFiles", + "summary": "Known\u0020files.", + "url": "classes/HeimrichHannot-UtilsBundle-Template-TemplateUtil.html#property_twigFiles" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Template\\TemplateUtil\u003A\u003A\u0024container", + "name": "container", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-EventListener-DcaField-DcaAuthorListener.html#method_onConfigCopyCallback" + "url": "classes/HeimrichHannot-UtilsBundle-Template-TemplateUtil.html#property_container" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\EventListener\\DcaField\\DcaAuthorListener\u003A\u003AgetAuthorFieldName\u0028\u0029", - "name": "getAuthorFieldName", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Template\\TemplateUtil\u003A\u003A\u0024containerUtil", + "name": "containerUtil", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-EventListener-DcaField-DcaAuthorListener.html#method_getAuthorFieldName" + "url": "classes/HeimrichHannot-UtilsBundle-Template-TemplateUtil.html#property_containerUtil" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\EventListener\\DcaField\\DcaAuthorListener\u003A\u003A\u0024framework", - "name": "framework", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Template\\TemplateUtil\u003A\u003A\u0024kernel", + "name": "kernel", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-EventListener-DcaField-DcaAuthorListener.html#property_framework" + "url": "classes/HeimrichHannot-UtilsBundle-Template-TemplateUtil.html#property_kernel" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\EventListener\\DcaField\\DcaAuthorListener\u003A\u003A\u0024security", - "name": "security", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Twig\\ArrayExtension", + "name": "ArrayExtension", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-EventListener-DcaField-DcaAuthorListener.html#property_security" + "url": "classes/HeimrichHannot-UtilsBundle-Twig-ArrayExtension.html" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\EventListener\\ExtendEntityFinderSubscriber", - "name": "ExtendEntityFinderSubscriber", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Twig\\ArrayExtension\u003A\u003AgetFilters\u0028\u0029", + "name": "getFilters", + "summary": "Get\u0020list\u0020of\u0020twig\u0020filters.", + "url": "classes/HeimrichHannot-UtilsBundle-Twig-ArrayExtension.html#method_getFilters" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Twig\\ArrayExtension\u003A\u003Adeserialize\u0028\u0029", + "name": "deserialize", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-EventListener-ExtendEntityFinderSubscriber.html" + "url": "classes/HeimrichHannot-UtilsBundle-Twig-ArrayExtension.html#method_deserialize" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\EventListener\\ExtendEntityFinderSubscriber\u003A\u003AgetSubscribedEvents\u0028\u0029", - "name": "getSubscribedEvents", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Twig\\DateExtension", + "name": "DateExtension", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-EventListener-ExtendEntityFinderSubscriber.html#method_getSubscribedEvents" + "url": "classes/HeimrichHannot-UtilsBundle-Twig-DateExtension.html" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\EventListener\\ExtendEntityFinderSubscriber\u003A\u003AonExtendEntityFinderEvent\u0028\u0029", - "name": "onExtendEntityFinderEvent", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Twig\\DateExtension\u003A\u003AgetFilters\u0028\u0029", + "name": "getFilters", + "summary": "Get\u0020list\u0020of\u0020twig\u0020filters.", + "url": "classes/HeimrichHannot-UtilsBundle-Twig-DateExtension.html#method_getFilters" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Twig\\DateExtension\u003A\u003AgetLocalizedDate\u0028\u0029", + "name": "getLocalizedDate", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-EventListener-ExtendEntityFinderSubscriber.html#method_onExtendEntityFinderEvent" + "url": "classes/HeimrichHannot-UtilsBundle-Twig-DateExtension.html#method_getLocalizedDate" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\EventListener\\ExtendEntityFinderSubscriber\u003A\u003AfindNewsEntity\u0028\u0029", - "name": "findNewsEntity", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Twig\\DcaExtension", + "name": "DcaExtension", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-EventListener-ExtendEntityFinderSubscriber.html#method_findNewsEntity" + "url": "classes/HeimrichHannot-UtilsBundle-Twig-DcaExtension.html" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\EventListener\\ExtendEntityFinderSubscriber\u003A\u003AfindBlockElements\u0028\u0029", - "name": "findBlockElements", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Twig\\DcaExtension\u003A\u003AgetFilters\u0028\u0029", + "name": "getFilters", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-EventListener-ExtendEntityFinderSubscriber.html#method_findBlockElements" + "url": "classes/HeimrichHannot-UtilsBundle-Twig-DcaExtension.html#method_getFilters" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Exception\\InvalidUrlException", - "name": "InvalidUrlException", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Twig\\DcaExtension\u003A\u003AfieldLabel\u0028\u0029", + "name": "fieldLabel", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Exception-InvalidUrlException.html" + "url": "classes/HeimrichHannot-UtilsBundle-Twig-DcaExtension.html#method_fieldLabel" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Exception\\InvalidUrlException\u003A\u003A\u0024message", - "name": "message", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Twig\\DownloadExtension", + "name": "DownloadExtension", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Exception-InvalidUrlException.html#property_message" + "url": "classes/HeimrichHannot-UtilsBundle-Twig-DownloadExtension.html" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\HeimrichHannotUtilsBundle", - "name": "HeimrichHannotUtilsBundle", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Twig\\DownloadExtension\u003A\u003A__construct\u0028\u0029", + "name": "__construct", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-HeimrichHannotUtilsBundle.html" + "url": "classes/HeimrichHannot-UtilsBundle-Twig-DownloadExtension.html#method___construct" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\HeimrichHannotUtilsBundle\u003A\u003AgetPath\u0028\u0029", - "name": "getPath", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Twig\\DownloadExtension\u003A\u003AgetFilters\u0028\u0029", + "name": "getFilters", + "summary": "Get\u0020list\u0020of\u0020twig\u0020filters.", + "url": "classes/HeimrichHannot-UtilsBundle-Twig-DownloadExtension.html#method_getFilters" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Twig\\DownloadExtension\u003A\u003AgetDownloadData\u0028\u0029", + "name": "getDownloadData", + "summary": "Get\u0020download\u0020data\u0020based\u0020on\u0020given\u0020path\/uuid.", + "url": "classes/HeimrichHannot-UtilsBundle-Twig-DownloadExtension.html#method_getDownloadData" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Twig\\DownloadExtension\u003A\u003AgetDownload\u0028\u0029", + "name": "getDownload", + "summary": "Get\u0020download\u0020based\u0020on\u0020given\u0020path\/uuid.", + "url": "classes/HeimrichHannot-UtilsBundle-Twig-DownloadExtension.html#method_getDownload" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Twig\\DownloadExtension\u003A\u003AgetDownloadLink\u0028\u0029", + "name": "getDownloadLink", + "summary": "Get\u0020download\u0020link\u0020\u0060\u003Ffile\u003D\u0060\u0020based\u0020on\u0020given\u0020path\/uuid.", + "url": "classes/HeimrichHannot-UtilsBundle-Twig-DownloadExtension.html#method_getDownloadLink" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Twig\\DownloadExtension\u003A\u003AgetDownloadPath\u0028\u0029", + "name": "getDownloadPath", + "summary": "Get\u0020download\u0020path\u0020based\u0020on\u0020given\u0020path\/uuid.", + "url": "classes/HeimrichHannot-UtilsBundle-Twig-DownloadExtension.html#method_getDownloadPath" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Twig\\DownloadExtension\u003A\u003AgetDownloadTitle\u0028\u0029", + "name": "getDownloadTitle", + "summary": "Get\u0020download\u0020title\u0020based\u0020on\u0020given\u0020path\/uuid.", + "url": "classes/HeimrichHannot-UtilsBundle-Twig-DownloadExtension.html#method_getDownloadTitle" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Twig\\DownloadExtension\u003A\u003A\u0024requestStack", + "name": "requestStack", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-HeimrichHannotUtilsBundle.html#method_getPath" + "url": "classes/HeimrichHannot-UtilsBundle-Twig-DownloadExtension.html#property_requestStack" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\StaticUtil\\StaticArrayUtil", - "name": "StaticArrayUtil", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Twig\\DownloadExtension\u003A\u003A\u0024utils", + "name": "utils", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-StaticUtil-StaticArrayUtil.html" + "url": "classes/HeimrichHannot-UtilsBundle-Twig-DownloadExtension.html#property_utils" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\StaticUtil\\StaticArrayUtil\u003A\u003AinsertBeforeKey\u0028\u0029", - "name": "insertBeforeKey", - "summary": "Insert\u0020a\u0020new\u0020entry\u0020before\u0020a\u0020specific\u0020or\u0020multiple\u0020keys\u0020in\u0020array.", - "url": "classes/HeimrichHannot-UtilsBundle-StaticUtil-StaticArrayUtil.html#method_insertBeforeKey" + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Twig\\DownloadExtension\u003A\u003A\u0024twig", + "name": "twig", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Twig-DownloadExtension.html#property_twig" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\StaticUtil\\StaticArrayUtil\u003A\u003AinsertAfterKey\u0028\u0029", - "name": "insertAfterKey", - "summary": "Insert\u0020a\u0020value\u0020into\u0020an\u0020existing\u0020array\u0020by\u0020key\u0020name.", - "url": "classes/HeimrichHannot-UtilsBundle-StaticUtil-StaticArrayUtil.html#method_insertAfterKey" + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Twig\\FileExtension", + "name": "FileExtension", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Twig-FileExtension.html" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\StaticUtil\\StaticArrayUtil\u003A\u003AremoveValue\u0028\u0029", - "name": "removeValue", - "summary": "Removes\u0020a\u0020value\u0020from\u0020an\u0020array.", - "url": "classes/HeimrichHannot-UtilsBundle-StaticUtil-StaticArrayUtil.html#method_removeValue" + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Twig\\FileExtension\u003A\u003AgetFilters\u0028\u0029", + "name": "getFilters", + "summary": "Get\u0020list\u0020of\u0020twig\u0020filters.", + "url": "classes/HeimrichHannot-UtilsBundle-Twig-FileExtension.html#method_getFilters" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\StaticUtil\\StaticClassUtil", - "name": "StaticClassUtil", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Twig\\FileExtension\u003A\u003AconvertBinaryToUuid\u0028\u0029", + "name": "convertBinaryToUuid", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-StaticUtil-StaticClassUtil.html" + "url": "classes/HeimrichHannot-UtilsBundle-Twig-FileExtension.html#method_convertBinaryToUuid" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\StaticUtil\\StaticClassUtil\u003A\u003AhasTrait\u0028\u0029", - "name": "hasTrait", - "summary": "Check\u0020if\u0020a\u0020class\u0020or\u0020any\u0020of\u0020its\u0020parents\u0020implements\u0020a\u0020trait.", - "url": "classes/HeimrichHannot-UtilsBundle-StaticUtil-StaticClassUtil.html#method_hasTrait" + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Twig\\FileExtension\u003A\u003AgetFileData\u0028\u0029", + "name": "getFileData", + "summary": "Get\u0020file\u0020data\u0020based\u0020on\u0020given\u0020uuid.", + "url": "classes/HeimrichHannot-UtilsBundle-Twig-FileExtension.html#method_getFileData" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\StaticUtil\\SUtils", - "name": "SUtils", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Twig\\FileExtension\u003A\u003AgetFilePath\u0028\u0029", + "name": "getFilePath", + "summary": "Get\u0020file\u0020path\u0020based\u0020on\u0020given\u0020uuid.", + "url": "classes/HeimrichHannot-UtilsBundle-Twig-FileExtension.html#method_getFilePath" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Twig\\FileExtension\u003A\u003AgetFileContent\u0028\u0029", + "name": "getFileContent", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-StaticUtil-SUtils.html" + "url": "classes/HeimrichHannot-UtilsBundle-Twig-FileExtension.html#method_getFileContent" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\StaticUtil\\SUtils\u003A\u003Aarray\u0028\u0029", - "name": "array", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Twig\\FileExtension\u003A\u003AFILE_OBJECT_PROPERTIES", + "name": "FILE_OBJECT_PROPERTIES", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-StaticUtil-SUtils.html#method_array" + "url": "classes/HeimrichHannot-UtilsBundle-Twig-FileExtension.html#constant_FILE_OBJECT_PROPERTIES" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\StaticUtil\\SUtils\u003A\u003Aclass\u0028\u0029", - "name": "class", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Twig\\ImageExtension", + "name": "ImageExtension", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-StaticUtil-SUtils.html#method_class" + "url": "classes/HeimrichHannot-UtilsBundle-Twig-ImageExtension.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Twig\\ImageExtension\u003A\u003AgetFilters\u0028\u0029", + "name": "getFilters", + "summary": "Get\u0020list\u0020of\u0020twig\u0020filters.", + "url": "classes/HeimrichHannot-UtilsBundle-Twig-ImageExtension.html#method_getFilters" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Twig\\ImageExtension\u003A\u003AgetImage\u0028\u0029", + "name": "getImage", + "summary": "Get\u0020image\u0020based\u0020on\u0020given\u0020path\/uuid.", + "url": "classes/HeimrichHannot-UtilsBundle-Twig-ImageExtension.html#method_getImage" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Twig\\ImageExtension\u003A\u003AgetImageData\u0028\u0029", + "name": "getImageData", + "summary": "Get\u0020image\u0020data\u0020based\u0020on\u0020given\u0020path\/uuid.", + "url": "classes/HeimrichHannot-UtilsBundle-Twig-ImageExtension.html#method_getImageData" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Twig\\ImageExtension\u003A\u003AgetImageCaption\u0028\u0029", + "name": "getImageCaption", + "summary": "Get\u0020image\u0020caption\u0020based\u0020on\u0020given\u0020path\/uuid.", + "url": "classes/HeimrichHannot-UtilsBundle-Twig-ImageExtension.html#method_getImageCaption" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Twig\\ImageExtension\u003A\u003AgetImageWidth\u0028\u0029", + "name": "getImageWidth", + "summary": "Get\u0020image\u0020width\u0020based\u0020on\u0020given\u0020path\/uuid.", + "url": "classes/HeimrichHannot-UtilsBundle-Twig-ImageExtension.html#method_getImageWidth" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\StaticUtil\\SUtils\u003A\u003AgetInstance\u0028\u0029", - "name": "getInstance", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Twig\\ImageExtension\u003A\u003AgetImageGallery\u0028\u0029", + "name": "getImageGallery", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-StaticUtil-SUtils.html#method_getInstance" + "url": "classes/HeimrichHannot-UtilsBundle-Twig-ImageExtension.html#method_getImageGallery" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\StaticUtil\\SUtils\u003A\u003A\u0024instances", - "name": "instances", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Twig\\ImageExtension\u003A\u003AgetImageSize\u0028\u0029", + "name": "getImageSize", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-StaticUtil-SUtils.html#property_instances" + "url": "classes/HeimrichHannot-UtilsBundle-Twig-ImageExtension.html#method_getImageSize" }, { "fqsen": "\\HeimrichHannot\\UtilsBundle\\Twig\\StringExtension", "name": "StringExtension", @@ -645,886 +4600,881 @@ Search.appendIndex( "name": "getFilters", "summary": "Get\u0020list\u0020of\u0020twig\u0020filters.", "url": "classes/HeimrichHannot-UtilsBundle-Twig-StringExtension.html#method_getFilters" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Twig\\StringExtension\u003A\u003Aautolink\u0028\u0029", + "name": "autolink", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Twig-StringExtension.html#method_autolink" }, { "fqsen": "\\HeimrichHannot\\UtilsBundle\\Twig\\StringExtension\u003A\u003AanonymizeEmail\u0028\u0029", "name": "anonymizeEmail", "summary": "", "url": "classes/HeimrichHannot-UtilsBundle-Twig-StringExtension.html#method_anonymizeEmail" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Twig\\StringExtension\u003A\u003A\u0024utils", - "name": "utils", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Twig\\StringExtension\u003A\u003AreplaceInsertTag\u0028\u0029", + "name": "replaceInsertTag", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Twig-StringExtension.html#property_utils" + "url": "classes/HeimrichHannot-UtilsBundle-Twig-StringExtension.html#method_replaceInsertTag" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\AccordionUtil", - "name": "AccordionUtil", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Twig\\StringExtension\u003A\u003A\u0024anonymizerUtil", + "name": "anonymizerUtil", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-AccordionUtil.html" + "url": "classes/HeimrichHannot-UtilsBundle-Twig-StringExtension.html#property_anonymizerUtil" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\AccordionUtil\u003A\u003A__construct\u0028\u0029", - "name": "__construct", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Twig\\StringExtension\u003A\u003A\u0024framework", + "name": "framework", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-AccordionUtil.html#method___construct" + "url": "classes/HeimrichHannot-UtilsBundle-Twig-StringExtension.html#property_framework" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\AccordionUtil\u003A\u003AstructureAccordionStartStop\u0028\u0029", - "name": "structureAccordionStartStop", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Twig\\TestExtension", + "name": "TestExtension", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-AccordionUtil.html#method_structureAccordionStartStop" - }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\AccordionUtil\u003A\u003AstructureAccordionSingle\u0028\u0029", - "name": "structureAccordionSingle", - "summary": "Adds\u0020the\u0020following\u0020flags\u0020to\u0020the\u0020template\u0020data\u003A\n\u002D\u0020first\n\u002D\u0020last\n\u002D\u0020parentId.", - "url": "classes/HeimrichHannot-UtilsBundle-Util-AccordionUtil.html#method_structureAccordionSingle" + "url": "classes/HeimrichHannot-UtilsBundle-Twig-TestExtension.html" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\AccordionUtil\u003A\u003AgenerateAccordionLevel\u0028\u0029", - "name": "generateAccordionLevel", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Twig\\TestExtension\u003A\u003AgetTests\u0028\u0029", + "name": "getTests", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-AccordionUtil.html#method_generateAccordionLevel" + "url": "classes/HeimrichHannot-UtilsBundle-Twig-TestExtension.html#method_getTests" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\AccordionUtil\u003A\u003A\u0024accordionStartStopCache", - "name": "accordionStartStopCache", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Twig\\TestExtension\u003A\u003AisNumeric\u0028\u0029", + "name": "isNumeric", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-AccordionUtil.html#property_accordionStartStopCache" + "url": "classes/HeimrichHannot-UtilsBundle-Twig-TestExtension.html#method_isNumeric" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\AccordionUtil\u003A\u003A\u0024accordionSingleCache", - "name": "accordionSingleCache", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Twig\\TestExtension\u003A\u003AisFloat\u0028\u0029", + "name": "isFloat", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-AccordionUtil.html#property_accordionSingleCache" + "url": "classes/HeimrichHannot-UtilsBundle-Twig-TestExtension.html#method_isFloat" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\AccordionUtil\u003A\u003A\u0024contaoFramework", - "name": "contaoFramework", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Twig\\TestExtension\u003A\u003AisString\u0028\u0029", + "name": "isString", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-AccordionUtil.html#property_contaoFramework" + "url": "classes/HeimrichHannot-UtilsBundle-Twig-TestExtension.html#method_isString" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\AnonymizeUtil", - "name": "AnonymizeUtil", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Twig\\TestExtension\u003A\u003AisObject\u0028\u0029", + "name": "isObject", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-AnonymizeUtil.html" - }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\AnonymizeUtil\u003A\u003AanonymizeEmail\u0028\u0029", - "name": "anonymizeEmail", - "summary": "Returns\u0020an\u0020anonymized\u0020email\u0020address.", - "url": "classes/HeimrichHannot-UtilsBundle-Util-AnonymizeUtil.html#method_anonymizeEmail" + "url": "classes/HeimrichHannot-UtilsBundle-Twig-TestExtension.html#method_isObject" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\ArrayUtil", - "name": "ArrayUtil", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Twig\\TestExtension\u003A\u003AisArray\u0028\u0029", + "name": "isArray", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-ArrayUtil.html" - }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\ArrayUtil\u003A\u003AinsertBeforeKey\u0028\u0029", - "name": "insertBeforeKey", - "summary": "Insert\u0020a\u0020new\u0020entry\u0020before\u0020a\u0020specific\u0020or\u0020multiple\u0020keys\u0020in\u0020array.", - "url": "classes/HeimrichHannot-UtilsBundle-Util-ArrayUtil.html#method_insertBeforeKey" - }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\ArrayUtil\u003A\u003AinsertAfterKey\u0028\u0029", - "name": "insertAfterKey", - "summary": "Insert\u0020a\u0020value\u0020into\u0020an\u0020existing\u0020array\u0020by\u0020key\u0020name.", - "url": "classes/HeimrichHannot-UtilsBundle-Util-ArrayUtil.html#method_insertAfterKey" - }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\ArrayUtil\u003A\u003AremoveValue\u0028\u0029", - "name": "removeValue", - "summary": "Removes\u0020a\u0020value\u0020from\u0020an\u0020array.", - "url": "classes/HeimrichHannot-UtilsBundle-Util-ArrayUtil.html#method_removeValue" + "url": "classes/HeimrichHannot-UtilsBundle-Twig-TestExtension.html#method_isArray" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\ClassUtil", - "name": "ClassUtil", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Twig\\TestExtension\u003A\u003AisBool\u0028\u0029", + "name": "isBool", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-ClassUtil.html" - }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\ClassUtil\u003A\u003AclassImplementsTrait\u0028\u0029", - "name": "classImplementsTrait", - "summary": "Return\u0020true\u0020if\u0020the\u0020given\u0020class\u0020or\u0020a\u0020parent\u0020class\u0020implements\u0020the\u0020given\u0020trait", - "url": "classes/HeimrichHannot-UtilsBundle-Util-ClassUtil.html#method_classImplementsTrait" + "url": "classes/HeimrichHannot-UtilsBundle-Twig-TestExtension.html#method_isBool" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\ContainerUtil", - "name": "ContainerUtil", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Twig\\TestExtension\u003A\u003AisInt\u0028\u0029", + "name": "isInt", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-ContainerUtil.html" + "url": "classes/HeimrichHannot-UtilsBundle-Twig-TestExtension.html#method_isInt" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\ContainerUtil\u003A\u003A__construct\u0028\u0029", - "name": "__construct", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Twig\\TestExtension\u003A\u003AisUuid\u0028\u0029", + "name": "isUuid", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-ContainerUtil.html#method___construct" - }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\ContainerUtil\u003A\u003AisBackend\u0028\u0029", - "name": "isBackend", - "summary": "Return\u0020if\u0020currently\u0020in\u0020backend\u0020scope.", - "url": "classes/HeimrichHannot-UtilsBundle-Util-ContainerUtil.html#method_isBackend" - }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\ContainerUtil\u003A\u003AisFrontend\u0028\u0029", - "name": "isFrontend", - "summary": "Return\u0020if\u0020currently\u0020in\u0020frontend\u0020scope.", - "url": "classes/HeimrichHannot-UtilsBundle-Util-ContainerUtil.html#method_isFrontend" - }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\ContainerUtil\u003A\u003AisFrontendCron\u0028\u0029", - "name": "isFrontendCron", - "summary": "Return\u0020if\u0020in\u0020cron\u0020route\u0020\u0028Attention\u003A\u0020not\u0020cron\u0020command\u0021\u0029.", - "url": "classes/HeimrichHannot-UtilsBundle-Util-ContainerUtil.html#method_isFrontendCron" - }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\ContainerUtil\u003A\u003AisInstall\u0028\u0029", - "name": "isInstall", - "summary": "Return\u0020if\u0020in\u0020install\u0020route\u0020\u0028Attention\u003A\u0020not\u0020migration\u0021\u0029.", - "url": "classes/HeimrichHannot-UtilsBundle-Util-ContainerUtil.html#method_isInstall" - }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\ContainerUtil\u003A\u003AisDev\u0028\u0029", - "name": "isDev", - "summary": "Return\u0020if\u0020in\u0020dev\u0020environment.", - "url": "classes/HeimrichHannot-UtilsBundle-Util-ContainerUtil.html#method_isDev" - }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\ContainerUtil\u003A\u003Alog\u0028\u0029", - "name": "log", - "summary": "Add\u0020a\u0020log\u0020entry\u0020to\u0020contao\u0020system\u0020log.", - "url": "classes/HeimrichHannot-UtilsBundle-Util-ContainerUtil.html#method_log" - }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\ContainerUtil\u003A\u003AgetBundlePath\u0028\u0029", - "name": "getBundlePath", - "summary": "Returns\u0020the\u0020path\u0020to\u0020the\u0020bundle\u0020in\u0020vendor\u0020folder\nAttention\u003A\u0020resolves\u0020symlinks\u0021", - "url": "classes/HeimrichHannot-UtilsBundle-Util-ContainerUtil.html#method_getBundlePath" - }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\ContainerUtil\u003A\u003AgetBundleResourcePath\u0028\u0029", - "name": "getBundleResourcePath", - "summary": "Returns\u0020the\u0020path\u0020or\u0020paths\u0020to\u0020a\u0020ressource\u0020within\u0020a\u0020bundle\nAttention\u003A\u0020resolves\u0020symlinks\u0021", - "url": "classes/HeimrichHannot-UtilsBundle-Util-ContainerUtil.html#method_getBundleResourcePath" - }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\ContainerUtil\u003A\u003AisMaintenanceModeActive\u0028\u0029", - "name": "isMaintenanceModeActive", - "summary": "Return\u0020if\u0020currently\u0020in\u0020maintenance\u0020mode.", - "url": "classes/HeimrichHannot-UtilsBundle-Util-ContainerUtil.html#method_isMaintenanceModeActive" - }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\ContainerUtil\u003A\u003AisPreviewMode\u0028\u0029", - "name": "isPreviewMode", - "summary": "Return\u0020if\u0020currently\u0020in\u0020preview\u0020mode.", - "url": "classes/HeimrichHannot-UtilsBundle-Util-ContainerUtil.html#method_isPreviewMode" + "url": "classes/HeimrichHannot-UtilsBundle-Twig-TestExtension.html#method_isUuid" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\ContainerUtil\u003A\u003AgetSubscribedServices\u0028\u0029", - "name": "getSubscribedServices", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Twig\\TestExtension\u003A\u003AisBinaryUuid\u0028\u0029", + "name": "isBinaryUuid", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-ContainerUtil.html#method_getSubscribedServices" + "url": "classes/HeimrichHannot-UtilsBundle-Twig-TestExtension.html#method_isBinaryUuid" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\ContainerUtil\u003A\u003A\u0024locator", - "name": "locator", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Twig\\TestExtension\u003A\u003AisStringUuid\u0028\u0029", + "name": "isStringUuid", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-ContainerUtil.html#property_locator" + "url": "classes/HeimrichHannot-UtilsBundle-Twig-TestExtension.html#method_isStringUuid" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\ContainerUtil\u003A\u003A\u0024kernel", - "name": "kernel", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Twig\\TestExtension\u003A\u003AisUrl\u0028\u0029", + "name": "isUrl", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-ContainerUtil.html#property_kernel" + "url": "classes/HeimrichHannot-UtilsBundle-Twig-TestExtension.html#method_isUrl" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\ContainerUtil\u003A\u003A\u0024framework", - "name": "framework", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Twig\\TestExtension\u003A\u003AisEmail\u0028\u0029", + "name": "isEmail", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-ContainerUtil.html#property_framework" + "url": "classes/HeimrichHannot-UtilsBundle-Twig-TestExtension.html#method_isEmail" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\ContainerUtil\u003A\u003A\u0024scopeMatcher", - "name": "scopeMatcher", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Url\\UrlUtil", + "name": "UrlUtil", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-ContainerUtil.html#property_scopeMatcher" + "url": "classes/HeimrichHannot-UtilsBundle-Url-UrlUtil.html" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\ContainerUtil\u003A\u003A\u0024requestStack", - "name": "requestStack", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Url\\UrlUtil\u003A\u003A__construct\u0028\u0029", + "name": "__construct", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-ContainerUtil.html#property_requestStack" + "url": "classes/HeimrichHannot-UtilsBundle-Url-UrlUtil.html#method___construct" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\ContainerUtil\u003A\u003A\u0024filesystem", - "name": "filesystem", - "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-ContainerUtil.html#property_filesystem" + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Url\\UrlUtil\u003A\u003AisNewVisitor\u0028\u0029", + "name": "isNewVisitor", + "summary": "Detect\u0020if\u0020user\u0020already\u0020visited\u0020our\u0020domain\u0020before.", + "url": "classes/HeimrichHannot-UtilsBundle-Url-UrlUtil.html#method_isNewVisitor" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\DatabaseUtil", - "name": "DatabaseUtil", - "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-DatabaseUtil.html" + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Url\\UrlUtil\u003A\u003AgetCurrentUrl\u0028\u0029", + "name": "getCurrentUrl", + "summary": "Return\u0020the\u0020current\u0020url\u0020with\u0020requestUri.", + "url": "classes/HeimrichHannot-UtilsBundle-Url-UrlUtil.html#method_getCurrentUrl" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\DatabaseUtil\u003A\u003AcreateWhereForSerializedBlob\u0028\u0029", - "name": "createWhereForSerializedBlob", - "summary": "Create\u0020a\u0020where\u0020condition\u0020for\u0020a\u0020field\u0020that\u0020contains\u0020a\u0020serialized\u0020blob.", - "url": "classes/HeimrichHannot-UtilsBundle-Util-DatabaseUtil.html#method_createWhereForSerializedBlob" + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Url\\UrlUtil\u003A\u003AaddQueryString\u0028\u0029", + "name": "addQueryString", + "summary": "Add\u0020a\u0020query\u0020string\u0020to\u0020the\u0020given\u0020URI\u0020string\u0020or\u0020page\u0020ID.", + "url": "classes/HeimrichHannot-UtilsBundle-Url-UrlUtil.html#method_addQueryString" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Url\\UrlUtil\u003A\u003AremoveQueryString\u0028\u0029", + "name": "removeQueryString", + "summary": "Remove\u0020query\u0020parameters\u0020from\u0020the\u0020current\u0020URL.", + "url": "classes/HeimrichHannot-UtilsBundle-Url-UrlUtil.html#method_removeQueryString" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\DcaUtil\\GetDcaFieldsOptions", - "name": "GetDcaFieldsOptions", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Url\\UrlUtil\u003A\u003AgetJumpToPageObject\u0028\u0029", + "name": "getJumpToPageObject", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-DcaUtil-GetDcaFieldsOptions.html" + "url": "classes/HeimrichHannot-UtilsBundle-Url-UrlUtil.html#method_getJumpToPageObject" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\DcaUtil\\GetDcaFieldsOptions\u003A\u003AisOnlyDatabaseFields\u0028\u0029", - "name": "isOnlyDatabaseFields", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Url\\UrlUtil\u003A\u003AgetJumpToPageUrl\u0028\u0029", + "name": "getJumpToPageUrl", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-DcaUtil-GetDcaFieldsOptions.html#method_isOnlyDatabaseFields" + "url": "classes/HeimrichHannot-UtilsBundle-Url-UrlUtil.html#method_getJumpToPageUrl" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\DcaUtil\\GetDcaFieldsOptions\u003A\u003Acreate\u0028\u0029", - "name": "create", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Url\\UrlUtil\u003A\u003AaddAutoItemToPage\u0028\u0029", + "name": "addAutoItemToPage", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-DcaUtil-GetDcaFieldsOptions.html#method_create" + "url": "classes/HeimrichHannot-UtilsBundle-Url-UrlUtil.html#method_addAutoItemToPage" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\DcaUtil\\GetDcaFieldsOptions\u003A\u003AsetOnlyDatabaseFields\u0028\u0029", - "name": "setOnlyDatabaseFields", - "summary": "Return\u0020only\u0020fields\u0020with\u0020sql\u0020definition.\u0020Default\u0020false", - "url": "classes/HeimrichHannot-UtilsBundle-Util-DcaUtil-GetDcaFieldsOptions.html#method_setOnlyDatabaseFields" + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Url\\UrlUtil\u003A\u003Aredirect\u0028\u0029", + "name": "redirect", + "summary": "Redirect\u0020to\u0020another\u0020page.", + "url": "classes/HeimrichHannot-UtilsBundle-Url-UrlUtil.html#method_redirect" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\DcaUtil\\GetDcaFieldsOptions\u003A\u003AgetAllowedInputTypes\u0028\u0029", - "name": "getAllowedInputTypes", - "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-DcaUtil-GetDcaFieldsOptions.html#method_getAllowedInputTypes" + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Url\\UrlUtil\u003A\u003AaddURIScheme\u0028\u0029", + "name": "addURIScheme", + "summary": "Add\u0020a\u0020url\u0020scheme\u0020to\u0020a\u0020given\u0020url.", + "url": "classes/HeimrichHannot-UtilsBundle-Url-UrlUtil.html#method_addURIScheme" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\DcaUtil\\GetDcaFieldsOptions\u003A\u003AsetAllowedInputTypes\u0028\u0029", - "name": "setAllowedInputTypes", - "summary": "Return\u0020only\u0020fields\u0020of\u0020given\u0020types.", - "url": "classes/HeimrichHannot-UtilsBundle-Util-DcaUtil-GetDcaFieldsOptions.html#method_setAllowedInputTypes" + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Url\\UrlUtil\u003A\u003AprepareUrl\u0028\u0029", + "name": "prepareUrl", + "summary": "Prepare\u0020URL\u0020from\u0020ID\u0020and\u0020keep\u0020query\u0020string\u0020from\u0020current\u0020string.", + "url": "classes/HeimrichHannot-UtilsBundle-Url-UrlUtil.html#method_prepareUrl" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\DcaUtil\\GetDcaFieldsOptions\u003A\u003AisOnlyAllowedInputTypes\u0028\u0029", - "name": "isOnlyAllowedInputTypes", - "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-DcaUtil-GetDcaFieldsOptions.html#method_isOnlyAllowedInputTypes" + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Url\\UrlUtil\u003A\u003AgetRelativePath\u0028\u0029", + "name": "getRelativePath", + "summary": "Convert\u0020an\u0020absolute\u0020url\u0020to\u0020an\u0020relative\u0020url.", + "url": "classes/HeimrichHannot-UtilsBundle-Url-UrlUtil.html#method_getRelativePath" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\DcaUtil\\GetDcaFieldsOptions\u003A\u003AgetEvalConditions\u0028\u0029", - "name": "getEvalConditions", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Url\\UrlUtil\u003A\u003AgetBaseUrl\u0028\u0029", + "name": "getBaseUrl", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-DcaUtil-GetDcaFieldsOptions.html#method_getEvalConditions" - }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\DcaUtil\\GetDcaFieldsOptions\u003A\u003AsetEvalConditions\u0028\u0029", - "name": "setEvalConditions", - "summary": "Return\u0020only\u0020fields\u0020with\u0020given\u0020eval\u0020key\u002Dvalue\u002Dpairs.", - "url": "classes/HeimrichHannot-UtilsBundle-Util-DcaUtil-GetDcaFieldsOptions.html#method_setEvalConditions" + "url": "classes/HeimrichHannot-UtilsBundle-Url-UrlUtil.html#method_getBaseUrl" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\DcaUtil\\GetDcaFieldsOptions\u003A\u003AisHasEvalConditions\u0028\u0029", - "name": "isHasEvalConditions", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Url\\UrlUtil\u003A\u003ATERMINATE_HEADERS_ALREADY_SENT", + "name": "TERMINATE_HEADERS_ALREADY_SENT", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-DcaUtil-GetDcaFieldsOptions.html#method_isHasEvalConditions" + "url": "classes/HeimrichHannot-UtilsBundle-Url-UrlUtil.html#constant_TERMINATE_HEADERS_ALREADY_SENT" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\DcaUtil\\GetDcaFieldsOptions\u003A\u003AisLocalizeLabels\u0028\u0029", - "name": "isLocalizeLabels", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Url\\UrlUtil\u003A\u003ATERMINATE_EXIT_LOCATION_SET", + "name": "TERMINATE_EXIT_LOCATION_SET", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-DcaUtil-GetDcaFieldsOptions.html#method_isLocalizeLabels" + "url": "classes/HeimrichHannot-UtilsBundle-Url-UrlUtil.html#constant_TERMINATE_EXIT_LOCATION_SET" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\DcaUtil\\GetDcaFieldsOptions\u003A\u003AsetLocalizeLabels\u0028\u0029", - "name": "setLocalizeLabels", - "summary": "Return\u0020also\u0020the\u0020field\u0020labels\u0020\u0028key\u0020\u003D\u0020field\u0020name,\u0020value\u0020\u003D\u0020field\u0020label\u0029.\u0020Default\u0020false", - "url": "classes/HeimrichHannot-UtilsBundle-Util-DcaUtil-GetDcaFieldsOptions.html#method_setLocalizeLabels" + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Url\\UrlUtil\u003A\u003A\u0024framework", + "name": "framework", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Url-UrlUtil.html#property_framework" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\DcaUtil\\GetDcaFieldsOptions\u003A\u003AisSkipSorting\u0028\u0029", - "name": "isSkipSorting", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Url\\UrlUtil\u003A\u003A\u0024requestUtil", + "name": "requestUtil", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-DcaUtil-GetDcaFieldsOptions.html#method_isSkipSorting" + "url": "classes/HeimrichHannot-UtilsBundle-Url-UrlUtil.html#property_requestUtil" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\DcaUtil\\GetDcaFieldsOptions\u003A\u003AsetSkipSorting\u0028\u0029", - "name": "setSkipSorting", - "summary": "Skip\u0020sorting\u0020fields\u0020by\u0020field\u0020name\u0020alphabetical.\u0020Default\u0020false", - "url": "classes/HeimrichHannot-UtilsBundle-Util-DcaUtil-GetDcaFieldsOptions.html#method_setSkipSorting" + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Url\\UrlUtil\u003A\u003A\u0024requestStack", + "name": "requestStack", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Url-UrlUtil.html#property_requestStack" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\DcaUtil\\GetDcaFieldsOptions\u003A\u003A\u0024onlyDatabaseFields", - "name": "onlyDatabaseFields", - "summary": "\u0027onlyDatabaseFields\u0027\u0020\u003D\u003E\u0020false,\n\u0027allowedInputTypes\u0027\u0020\u003D\u003E\u0020\u005B\u005D,\n\u0027evalConditions\u0027\u0020\u003D\u003E\u0020\u005B\u005D,\n\u0027localizeLabels\u0027\u0020\u003D\u003E\u0020false,\n\u0027skipSorting\u0027\u0020\u003D\u003E\u0020false,", - "url": "classes/HeimrichHannot-UtilsBundle-Util-DcaUtil-GetDcaFieldsOptions.html#property_onlyDatabaseFields" + "fqsen": "\\HeimrichHannot\\UtilsBundle\\User\\UserUtil", + "name": "UserUtil", + "summary": "Class\u0020UserUtil.", + "url": "classes/HeimrichHannot-UtilsBundle-User-UserUtil.html" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\DcaUtil\\GetDcaFieldsOptions\u003A\u003A\u0024allowedInputTypes", - "name": "allowedInputTypes", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\User\\UserUtil\u003A\u003A__construct\u0028\u0029", + "name": "__construct", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-DcaUtil-GetDcaFieldsOptions.html#property_allowedInputTypes" + "url": "classes/HeimrichHannot-UtilsBundle-User-UserUtil.html#method___construct" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\DcaUtil\\GetDcaFieldsOptions\u003A\u003A\u0024evalConditions", - "name": "evalConditions", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\User\\UserUtil\u003A\u003AfindActiveByGroups\u0028\u0029", + "name": "findActiveByGroups", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-DcaUtil-GetDcaFieldsOptions.html#property_evalConditions" + "url": "classes/HeimrichHannot-UtilsBundle-User-UserUtil.html#method_findActiveByGroups" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\DcaUtil\\GetDcaFieldsOptions\u003A\u003A\u0024localizeLabels", - "name": "localizeLabels", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\User\\UserUtil\u003A\u003AhasAccessToField\u0028\u0029", + "name": "hasAccessToField", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-DcaUtil-GetDcaFieldsOptions.html#property_localizeLabels" + "url": "classes/HeimrichHannot-UtilsBundle-User-UserUtil.html#method_hasAccessToField" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\DcaUtil\\GetDcaFieldsOptions\u003A\u003A\u0024skipSorting", - "name": "skipSorting", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\User\\UserUtil\u003A\u003AisAdmin\u0028\u0029", + "name": "isAdmin", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-DcaUtil-GetDcaFieldsOptions.html#property_skipSorting" + "url": "classes/HeimrichHannot-UtilsBundle-User-UserUtil.html#method_isAdmin" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\DcaUtil", - "name": "DcaUtil", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\User\\UserUtil\u003A\u003ATABLE", + "name": "TABLE", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-DcaUtil.html" + "url": "classes/HeimrichHannot-UtilsBundle-User-UserUtil.html#constant_TABLE" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\DcaUtil\u003A\u003A__construct\u0028\u0029", - "name": "__construct", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\User\\UserUtil\u003A\u003A\u0024framework", + "name": "framework", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-DcaUtil.html#method___construct" - }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\DcaUtil\u003A\u003AgetPaletteFields\u0028\u0029", - "name": "getPaletteFields", - "summary": "Return\u0020all\u0020fields\u0020of\u0020a\u0020palette\u0020including\u0020its\u0020subpalettes\u0020as\u0020array.", - "url": "classes/HeimrichHannot-UtilsBundle-Util-DcaUtil.html#method_getPaletteFields" - }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\DcaUtil\u003A\u003AexplodePalette\u0028\u0029", - "name": "explodePalette", - "summary": "Explode\u0020a\u0020palette\u0020string.", - "url": "classes/HeimrichHannot-UtilsBundle-Util-DcaUtil.html#method_explodePalette" + "url": "classes/HeimrichHannot-UtilsBundle-User-UserUtil.html#property_framework" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\DcaUtil\u003A\u003AgetDcaFields\u0028\u0029", - "name": "getDcaFields", - "summary": "Return\u0020a\u0020list\u0020of\u0020dca\u0020fields\u0020for\u0020given\u0020table.", - "url": "classes/HeimrichHannot-UtilsBundle-Util-DcaUtil.html#method_getDcaFields" + "fqsen": "\\HeimrichHannot\\UtilsBundle\\User\\UserUtil\u003A\u003A\u0024modelUtil", + "name": "modelUtil", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-User-UserUtil.html#property_modelUtil" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\DcaUtil\u003A\u003AexecuteCallback\u0028\u0029", - "name": "executeCallback", - "summary": "Execute\u0020a\u0020callback\u0020with\u0020given\u0020arguments.", - "url": "classes/HeimrichHannot-UtilsBundle-Util-DcaUtil.html#method_executeCallback" + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\AbstractServiceSubscriber", + "name": "AbstractServiceSubscriber", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Util-AbstractServiceSubscriber.html" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\DcaUtil\u003A\u003A\u0024contaoFramework", - "name": "contaoFramework", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\ClassUtil", + "name": "ClassUtil", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-DcaUtil.html#property_contaoFramework" + "url": "classes/HeimrichHannot-UtilsBundle-Util-ClassUtil.html" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\FileUtil", - "name": "FileUtil", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\ClassUtil\u003A\u003AclassImplementsTrait\u0028\u0029", + "name": "classImplementsTrait", + "summary": "Return\u0020true\u0020if\u0020the\u0020given\u0020class\u0020or\u0020a\u0020parent\u0020class\u0020implements\u0020the\u0020given\u0020trait", + "url": "classes/HeimrichHannot-UtilsBundle-Util-ClassUtil.html#method_classImplementsTrait" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Container\\ContainerUtil", + "name": "ContainerUtil", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-FileUtil.html" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Container-ContainerUtil.html" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\FileUtil\u003A\u003A__construct\u0028\u0029", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Container\\ContainerUtil\u003A\u003A__construct\u0028\u0029", "name": "__construct", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-FileUtil.html#method___construct" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Container-ContainerUtil.html#method___construct" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\FileUtil\u003A\u003AgetPathFromUuid\u0028\u0029", - "name": "getPathFromUuid", - "summary": "Get\u0020the\u0020path\u0020from\u0020a\u0020uuid.", - "url": "classes/HeimrichHannot-UtilsBundle-Util-FileUtil.html#method_getPathFromUuid" + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Container\\ContainerUtil\u003A\u003AisBundleActive\u0028\u0029", + "name": "isBundleActive", + "summary": "Checks\u0020if\u0020some\u0020bundle\u0020is\u0020active.\u0020Pass\u0020in\u0020the\u0020class\u0020name\u0020\u0028e.g.\u0020\u0027HeimrichHannot\\FilterBundle\\HeimrichHannotContaoFilterBundle\u0027\u0020or\u0020the\u0020legacy\u0020Contao\u00203\u0020name\u0020like\u0020\u0027news\u0027\u0029.", + "url": "classes/HeimrichHannot-UtilsBundle-Util-Container-ContainerUtil.html#method_isBundleActive" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\FileUtil\u003A\u003A\u0024contaoFramework", - "name": "contaoFramework", - "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-FileUtil.html#property_contaoFramework" + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Container\\ContainerUtil\u003A\u003AisBackend\u0028\u0029", + "name": "isBackend", + "summary": "Return\u0020if\u0020currently\u0020in\u0020backend\u0020scope.", + "url": "classes/HeimrichHannot-UtilsBundle-Util-Container-ContainerUtil.html#method_isBackend" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\FileUtil\u003A\u003A\u0024projectDir", - "name": "projectDir", - "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-FileUtil.html#property_projectDir" + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Container\\ContainerUtil\u003A\u003AisFrontend\u0028\u0029", + "name": "isFrontend", + "summary": "Return\u0020if\u0020currently\u0020in\u0020frontend\u0020scope.", + "url": "classes/HeimrichHannot-UtilsBundle-Util-Container-ContainerUtil.html#method_isFrontend" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\FormatterUtil\\FormatDcaFieldValueOptions", - "name": "FormatDcaFieldValueOptions", - "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-FormatterUtil-FormatDcaFieldValueOptions.html" + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Container\\ContainerUtil\u003A\u003AisFrontendCron\u0028\u0029", + "name": "isFrontendCron", + "summary": "Return\u0020if\u0020in\u0020cron\u0020route\u0020\u0028Attention\u003A\u0020not\u0020cron\u0020command\u0021\u0029.", + "url": "classes/HeimrichHannot-UtilsBundle-Util-Container-ContainerUtil.html#method_isFrontendCron" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\FormatterUtil\\FormatDcaFieldValueOptions\u003A\u003Acreate\u0028\u0029", - "name": "create", - "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-FormatterUtil-FormatDcaFieldValueOptions.html#method_create" + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Container\\ContainerUtil\u003A\u003AisInstall\u0028\u0029", + "name": "isInstall", + "summary": "Return\u0020if\u0020in\u0020install\u0020route\u0020\u0028Attention\u003A\u0020not\u0020migration\u0021\u0029.", + "url": "classes/HeimrichHannot-UtilsBundle-Util-Container-ContainerUtil.html#method_isInstall" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\FormatterUtil\\FormatDcaFieldValueOptions\u003A\u003AsetPreserveEmptyArrayValues\u0028\u0029", - "name": "setPreserveEmptyArrayValues", - "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-FormatterUtil-FormatDcaFieldValueOptions.html#method_setPreserveEmptyArrayValues" + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Container\\ContainerUtil\u003A\u003AisDev\u0028\u0029", + "name": "isDev", + "summary": "Return\u0020if\u0020in\u0020dev\u0020environment.", + "url": "classes/HeimrichHannot-UtilsBundle-Util-Container-ContainerUtil.html#method_isDev" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\FormatterUtil\\FormatDcaFieldValueOptions\u003A\u003AsetLocalize\u0028\u0029", - "name": "setLocalize", - "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-FormatterUtil-FormatDcaFieldValueOptions.html#method_setLocalize" + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Container\\ContainerUtil\u003A\u003Alog\u0028\u0029", + "name": "log", + "summary": "Add\u0020a\u0020log\u0020entry\u0020to\u0020contao\u0020system\u0020log.", + "url": "classes/HeimrichHannot-UtilsBundle-Util-Container-ContainerUtil.html#method_log" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\FormatterUtil\\FormatDcaFieldValueOptions\u003A\u003AsetLoadDca\u0028\u0029", - "name": "setLoadDca", - "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-FormatterUtil-FormatDcaFieldValueOptions.html#method_setLoadDca" + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Container\\ContainerUtil\u003A\u003AgetBundlePath\u0028\u0029", + "name": "getBundlePath", + "summary": "Returns\u0020the\u0020path\u0020to\u0020the\u0020bundle\u0020in\u0020vendor\u0020folder\nAttention\u003A\u0020resolves\u0020symlinks\u0021", + "url": "classes/HeimrichHannot-UtilsBundle-Util-Container-ContainerUtil.html#method_getBundlePath" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\FormatterUtil\\FormatDcaFieldValueOptions\u003A\u003AsetCacheOptions\u0028\u0029", - "name": "setCacheOptions", - "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-FormatterUtil-FormatDcaFieldValueOptions.html#method_setCacheOptions" + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Container\\ContainerUtil\u003A\u003AgetBundleResourcePath\u0028\u0029", + "name": "getBundleResourcePath", + "summary": "Returns\u0020the\u0020path\u0020or\u0020paths\u0020to\u0020a\u0020ressource\u0020within\u0020a\u0020bundle\nAttention\u003A\u0020resolves\u0020symlinks\u0021", + "url": "classes/HeimrichHannot-UtilsBundle-Util-Container-ContainerUtil.html#method_getBundleResourcePath" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\FormatterUtil\\FormatDcaFieldValueOptions\u003A\u003AsetReplaceInsertTags\u0028\u0029", - "name": "setReplaceInsertTags", - "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-FormatterUtil-FormatDcaFieldValueOptions.html#method_setReplaceInsertTags" + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Container\\ContainerUtil\u003A\u003AisMaintenanceModeActive\u0028\u0029", + "name": "isMaintenanceModeActive", + "summary": "Return\u0020if\u0020currently\u0020in\u0020maintenance\u0020mode.", + "url": "classes/HeimrichHannot-UtilsBundle-Util-Container-ContainerUtil.html#method_isMaintenanceModeActive" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\FormatterUtil\\FormatDcaFieldValueOptions\u003A\u003AsetDcaOverride\u0028\u0029", - "name": "setDcaOverride", - "summary": "Override\u0020the\u0020DCA\u0020field\u0020settings.\u0020If\u0020not\u0020set,\u0020the\u0020DCA\u0020field\u0020settings\u0020will\u0020be\u0020used.", - "url": "classes/HeimrichHannot-UtilsBundle-Util-FormatterUtil-FormatDcaFieldValueOptions.html#method_setDcaOverride" + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Container\\ContainerUtil\u003A\u003AisPreviewMode\u0028\u0029", + "name": "isPreviewMode", + "summary": "Return\u0020if\u0020currently\u0020in\u0020preview\u0020mode.", + "url": "classes/HeimrichHannot-UtilsBundle-Util-Container-ContainerUtil.html#method_isPreviewMode" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\FormatterUtil\\FormatDcaFieldValueOptions\u003A\u003AsetArrayJoiner\u0028\u0029", - "name": "setArrayJoiner", - "summary": "The\u0020string\u0020that\u0020joins\u0020array\u0020values.\u0020Default\u003A\u0020\u0027,\u0020\u0027.", - "url": "classes/HeimrichHannot-UtilsBundle-Util-FormatterUtil-FormatDcaFieldValueOptions.html#method_setArrayJoiner" + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Container\\ContainerUtil\u003A\u003AgetSubscribedServices\u0028\u0029", + "name": "getSubscribedServices", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Util-Container-ContainerUtil.html#method_getSubscribedServices" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\FormatterUtil\\FormatDcaFieldValueOptions\u003A\u003A\u0024preserveEmptyArrayValues", - "name": "preserveEmptyArrayValues", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Container\\ContainerUtil\u003A\u003A\u0024framework", + "name": "framework", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-FormatterUtil-FormatDcaFieldValueOptions.html#property_preserveEmptyArrayValues" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Container-ContainerUtil.html#property_framework" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\FormatterUtil\\FormatDcaFieldValueOptions\u003A\u003A\u0024localize", - "name": "localize", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Container\\ContainerUtil\u003A\u003A\u0024kernelBundles", + "name": "kernelBundles", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-FormatterUtil-FormatDcaFieldValueOptions.html#property_localize" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Container-ContainerUtil.html#property_kernelBundles" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\FormatterUtil\\FormatDcaFieldValueOptions\u003A\u003A\u0024loadDca", - "name": "loadDca", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Container\\ContainerUtil\u003A\u003A\u0024requestStack", + "name": "requestStack", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-FormatterUtil-FormatDcaFieldValueOptions.html#property_loadDca" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Container-ContainerUtil.html#property_requestStack" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\FormatterUtil\\FormatDcaFieldValueOptions\u003A\u003A\u0024cacheOptions", - "name": "cacheOptions", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Container\\ContainerUtil\u003A\u003A\u0024kernel", + "name": "kernel", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-FormatterUtil-FormatDcaFieldValueOptions.html#property_cacheOptions" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Container-ContainerUtil.html#property_kernel" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\FormatterUtil\\FormatDcaFieldValueOptions\u003A\u003A\u0024replaceInsertTags", - "name": "replaceInsertTags", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Container\\ContainerUtil\u003A\u003A\u0024locator", + "name": "locator", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-FormatterUtil-FormatDcaFieldValueOptions.html#property_replaceInsertTags" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Container-ContainerUtil.html#property_locator" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\FormatterUtil\\FormatDcaFieldValueOptions\u003A\u003A\u0024dcaOverride", - "name": "dcaOverride", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Container\\ContainerUtil\u003A\u003A\u0024filesystem", + "name": "filesystem", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-FormatterUtil-FormatDcaFieldValueOptions.html#property_dcaOverride" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Container-ContainerUtil.html#property_filesystem" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\FormatterUtil\\FormatDcaFieldValueOptions\u003A\u003A\u0024arrayJoiner", - "name": "arrayJoiner", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Container\\ContainerUtil\u003A\u003A\u0024scopeMatcher", + "name": "scopeMatcher", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-FormatterUtil-FormatDcaFieldValueOptions.html#property_arrayJoiner" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Container-ContainerUtil.html#property_scopeMatcher" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\FormatterUtil", - "name": "FormatterUtil", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\DatabaseUtil\\CreateWhereForSerializedBlobResult", + "name": "CreateWhereForSerializedBlobResult", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-FormatterUtil.html" + "url": "classes/HeimrichHannot-UtilsBundle-Util-DatabaseUtil-CreateWhereForSerializedBlobResult.html" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\FormatterUtil\u003A\u003A__construct\u0028\u0029", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\DatabaseUtil\\CreateWhereForSerializedBlobResult\u003A\u003A__construct\u0028\u0029", "name": "__construct", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-FormatterUtil.html#method___construct" + "url": "classes/HeimrichHannot-UtilsBundle-Util-DatabaseUtil-CreateWhereForSerializedBlobResult.html#method___construct" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\FormatterUtil\u003A\u003AformatDcaFieldValue\u0028\u0029", - "name": "formatDcaFieldValue", - "summary": "Makes\u0020a\u0020DCA\u0020field\u0020value\u0020human\u002Dreadable.", - "url": "classes/HeimrichHannot-UtilsBundle-Util-FormatterUtil.html#method_formatDcaFieldValue" + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\DatabaseUtil\\CreateWhereForSerializedBlobResult\u003A\u003AcreateInlineAndWhere\u0028\u0029", + "name": "createInlineAndWhere", + "summary": "Return\u0020the\u0020where\u0020query\u0020with\u0020AND\u0020operation\u0020for\u0020each\u0020value.\u0020Values\u0020are\u0020inlined\u0020in\u0020the\u0020query\u0020\u0028\u0027REGEXP\u0020\u0028\u0027\u003A\u00223\u0022\u0027\u0029\u0027\u0020instead\u0020of\u0020\u0027REGEXP\u0020\u0028\u003F\u0029\u0027\u0029.", + "url": "classes/HeimrichHannot-UtilsBundle-Util-DatabaseUtil-CreateWhereForSerializedBlobResult.html#method_createInlineAndWhere" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\FormatterUtil\u003A\u003AgetTagModel\u0028\u0029", - "name": "getTagModel", - "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-FormatterUtil.html#method_getTagModel" + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\DatabaseUtil\\CreateWhereForSerializedBlobResult\u003A\u003AcreateInlineOrWhere\u0028\u0029", + "name": "createInlineOrWhere", + "summary": "Return\u0020the\u0020where\u0020query\u0020with\u0020OR\u0020operation\u0020for\u0020each\u0020value.\u0020Values\u0020are\u0020inlined\u0020in\u0020the\u0020query\u0020\u0028\u0027REGEXP\u0020\u0028\u0027\u003A\u00223\u0022\u0027\u0029\u0027\u0020instead\u0020of\u0020\u0027REGEXP\u0020\u0028\u003F\u0029\u0027\u0029.", + "url": "classes/HeimrichHannot-UtilsBundle-Util-DatabaseUtil-CreateWhereForSerializedBlobResult.html#method_createInlineOrWhere" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\FormatterUtil\u003A\u003AisMultiColumnsActive\u0028\u0029", - "name": "isMultiColumnsActive", - "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-FormatterUtil.html#method_isMultiColumnsActive" + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\DatabaseUtil\\CreateWhereForSerializedBlobResult\u003A\u003AcreateAndWhere\u0028\u0029", + "name": "createAndWhere", + "summary": "Return\u0020the\u0020where\u0020query\u0020with\u0020AND\u0020operation\u0020and\u0020placeholder\u0020for\u0020each\u0020value\u0020\u0028\u0027REGEXP\u0020\u0028\u003F\u0029\u0027\u0029.\u0020Values\u0020can\u0020be\u0020obtained\u0020from\u0020the\u0020values\u0020property.", + "url": "classes/HeimrichHannot-UtilsBundle-Util-DatabaseUtil-CreateWhereForSerializedBlobResult.html#method_createAndWhere" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\FormatterUtil\u003A\u003AformatArray\u0028\u0029", - "name": "formatArray", - "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-FormatterUtil.html#method_formatArray" + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\DatabaseUtil\\CreateWhereForSerializedBlobResult\u003A\u003AcreateOrWhere\u0028\u0029", + "name": "createOrWhere", + "summary": "Return\u0020the\u0020where\u0020query\u0020with\u0020OR\u0020operation\u0020and\u0020placeholder\u0020for\u0020each\u0020value\u0020\u0028\u0027REGEXP\u0020\u0028\u003F\u0029\u0027\u0029.\u0020Values\u0020can\u0020be\u0020obtained\u0020from\u0020the\u0020values\u0020property.", + "url": "classes/HeimrichHannot-UtilsBundle-Util-DatabaseUtil-CreateWhereForSerializedBlobResult.html#method_createOrWhere" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\FormatterUtil\u003A\u003AformatInputUnitField\u0028\u0029", - "name": "formatInputUnitField", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\DatabaseUtil\\CreateWhereForSerializedBlobResult\u003A\u003AgetValueList\u0028\u0029", + "name": "getValueList", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-FormatterUtil.html#method_formatInputUnitField" + "url": "classes/HeimrichHannot-UtilsBundle-Util-DatabaseUtil-CreateWhereForSerializedBlobResult.html#method_getValueList" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\FormatterUtil\u003A\u003AformatMultiColumnField\u0028\u0029", - "name": "formatMultiColumnField", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\DatabaseUtil\\CreateWhereForSerializedBlobResult\u003A\u003A\u0024field", + "name": "field", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-FormatterUtil.html#method_formatMultiColumnField" + "url": "classes/HeimrichHannot-UtilsBundle-Util-DatabaseUtil-CreateWhereForSerializedBlobResult.html#property_field" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\FormatterUtil\u003A\u003A\u0024framework", - "name": "framework", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\DatabaseUtil\\CreateWhereForSerializedBlobResult\u003A\u003A\u0024values", + "name": "values", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-FormatterUtil.html#property_framework" + "url": "classes/HeimrichHannot-UtilsBundle-Util-DatabaseUtil-CreateWhereForSerializedBlobResult.html#property_values" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\FormatterUtil\u003A\u003A\u0024insertTagParser", - "name": "insertTagParser", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\DatabaseUtil", + "name": "DatabaseUtil", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-FormatterUtil.html#property_insertTagParser" + "url": "classes/HeimrichHannot-UtilsBundle-Util-DatabaseUtil.html" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\FormatterUtil\u003A\u003A\u0024utils", - "name": "utils", - "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-FormatterUtil.html#property_utils" + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\DatabaseUtil\u003A\u003AcreateWhereForSerializedBlob\u0028\u0029", + "name": "createWhereForSerializedBlob", + "summary": "Create\u0020a\u0020where\u0020condition\u0020for\u0020a\u0020field\u0020that\u0020contains\u0020a\u0020serialized\u0020blob.", + "url": "classes/HeimrichHannot-UtilsBundle-Util-DatabaseUtil.html#method_createWhereForSerializedBlob" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\FormatterUtil\u003A\u003A\u0024kernelBundles", - "name": "kernelBundles", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Dca\\DcaUtil", + "name": "DcaUtil", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-FormatterUtil.html#property_kernelBundles" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Dca-DcaUtil.html" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\HtmlUtil\\GenerateDataAttributesStringOptions", - "name": "GenerateDataAttributesStringOptions", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Dca\\DcaUtil\u003A\u003A__construct\u0028\u0029", + "name": "__construct", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-HtmlUtil-GenerateDataAttributesStringOptions.html" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Dca-DcaUtil.html#method___construct" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\HtmlUtil\\GenerateDataAttributesStringOptions\u003A\u003Acreate\u0028\u0029", - "name": "create", - "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-HtmlUtil-GenerateDataAttributesStringOptions.html#method_create" + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Dca\\DcaUtil\u003A\u003AgetPaletteFields\u0028\u0029", + "name": "getPaletteFields", + "summary": "Return\u0020all\u0020fields\u0020of\u0020a\u0020palette\u0020including\u0020its\u0020subpalettes\u0020as\u0020array.", + "url": "classes/HeimrichHannot-UtilsBundle-Util-Dca-DcaUtil.html#method_getPaletteFields" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\HtmlUtil\\GenerateDataAttributesStringOptions\u003A\u003AisXhtml\u0028\u0029", - "name": "isXhtml", - "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-HtmlUtil-GenerateDataAttributesStringOptions.html#method_isXhtml" + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Dca\\DcaUtil\u003A\u003AexplodePalette\u0028\u0029", + "name": "explodePalette", + "summary": "Explode\u0020a\u0020palette\u0020string.", + "url": "classes/HeimrichHannot-UtilsBundle-Util-Dca-DcaUtil.html#method_explodePalette" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\HtmlUtil\\GenerateDataAttributesStringOptions\u003A\u003AsetXhtml\u0028\u0029", - "name": "setXhtml", - "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-HtmlUtil-GenerateDataAttributesStringOptions.html#method_setXhtml" + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Dca\\DcaUtil\u003A\u003AgetDcaFields\u0028\u0029", + "name": "getDcaFields", + "summary": "Return\u0020a\u0020list\u0020of\u0020dca\u0020fields\u0020for\u0020given\u0020table.", + "url": "classes/HeimrichHannot-UtilsBundle-Util-Dca-DcaUtil.html#method_getDcaFields" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\HtmlUtil\\GenerateDataAttributesStringOptions\u003A\u003AisNormalizeKeys\u0028\u0029", - "name": "isNormalizeKeys", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Dca\\DcaUtil\u003A\u003A\u0024contaoFramework", + "name": "contaoFramework", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-HtmlUtil-GenerateDataAttributesStringOptions.html#method_isNormalizeKeys" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Dca-DcaUtil.html#property_contaoFramework" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\HtmlUtil\\GenerateDataAttributesStringOptions\u003A\u003AsetNormalizeKeys\u0028\u0029", - "name": "setNormalizeKeys", - "summary": "Array\u0020keys\u0020are\u0020normalized\u0020to\u0020lowercase\u0020dash\u002Dcased\u0020strings\u0020\u0028e.g.\u0020Foo\u0020Bar_player\u0020is\u0020transformed\u0020to\u0020foo\u002Dbar\u002Dplayer\u0029", - "url": "classes/HeimrichHannot-UtilsBundle-Util-HtmlUtil-GenerateDataAttributesStringOptions.html#method_setNormalizeKeys" - }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\HtmlUtil\\GenerateDataAttributesStringOptions\u003A\u003AgetArrayHandling\u0028\u0029", - "name": "getArrayHandling", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\File\\FileUtil", + "name": "FileUtil", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-HtmlUtil-GenerateDataAttributesStringOptions.html#method_getArrayHandling" + "url": "classes/HeimrichHannot-UtilsBundle-Util-File-FileUtil.html" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\HtmlUtil\\GenerateDataAttributesStringOptions\u003A\u003AsetArrayHandling\u0028\u0029", - "name": "setArrayHandling", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\File\\FileUtil\u003A\u003A__construct\u0028\u0029", + "name": "__construct", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-HtmlUtil-GenerateDataAttributesStringOptions.html#method_setArrayHandling" + "url": "classes/HeimrichHannot-UtilsBundle-Util-File-FileUtil.html#method___construct" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\HtmlUtil\\GenerateDataAttributesStringOptions\u003A\u003A\u0024xhtml", - "name": "xhtml", - "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-HtmlUtil-GenerateDataAttributesStringOptions.html#property_xhtml" + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\File\\FileUtil\u003A\u003AgetPathFromUuid\u0028\u0029", + "name": "getPathFromUuid", + "summary": "Get\u0020the\u0020path\u0020from\u0020a\u0020uuid.", + "url": "classes/HeimrichHannot-UtilsBundle-Util-File-FileUtil.html#method_getPathFromUuid" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\HtmlUtil\\GenerateDataAttributesStringOptions\u003A\u003A\u0024normalizeKeys", - "name": "normalizeKeys", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\File\\FileUtil\u003A\u003A\u0024contaoFramework", + "name": "contaoFramework", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-HtmlUtil-GenerateDataAttributesStringOptions.html#property_normalizeKeys" + "url": "classes/HeimrichHannot-UtilsBundle-Util-File-FileUtil.html#property_contaoFramework" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\HtmlUtil\\GenerateDataAttributesStringOptions\u003A\u003A\u0024arrayHandling", - "name": "arrayHandling", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\File\\FileUtil\u003A\u003A\u0024projectDir", + "name": "projectDir", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-HtmlUtil-GenerateDataAttributesStringOptions.html#property_arrayHandling" + "url": "classes/HeimrichHannot-UtilsBundle-Util-File-FileUtil.html#property_projectDir" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\HtmlUtil", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Html\\HtmlUtil", "name": "HtmlUtil", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-HtmlUtil.html" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Html-HtmlUtil.html" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\HtmlUtil\u003A\u003AgenerateAttributeString\u0028\u0029", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Html\\HtmlUtil\u003A\u003AgenerateAttributeString\u0028\u0029", "name": "generateAttributeString", "summary": "Generate\u0020a\u0020attribute\u0020string\u0020for\u0020html\u0020elements\u0020out\u0020of\u0020an\u0020array.", - "url": "classes/HeimrichHannot-UtilsBundle-Util-HtmlUtil.html#method_generateAttributeString" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Html-HtmlUtil.html#method_generateAttributeString" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\HtmlUtil\u003A\u003AgenerateDataAttributesString\u0028\u0029", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Html\\HtmlUtil\u003A\u003AgenerateDataAttributesString\u0028\u0029", "name": "generateDataAttributesString", "summary": "Generates\u0020a\u0020data\u002Dattributes\u0020string\u0020out\u0020of\u0020an\u0020array.", - "url": "classes/HeimrichHannot-UtilsBundle-Util-HtmlUtil.html#method_generateDataAttributesString" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Html-HtmlUtil.html#method_generateDataAttributesString" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\LocaleUtil", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Locale\\LocaleUtil", "name": "LocaleUtil", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-LocaleUtil.html" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Locale-LocaleUtil.html" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\LocaleUtil\u003A\u003AensureLineBreaks\u0028\u0029", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Locale\\LocaleUtil\u003A\u003AensureLineBreaks\u0028\u0029", "name": "ensureLineBreaks", "summary": "Ensure\u0020language\u0020specific\u0020line\u0020breaks.", - "url": "classes/HeimrichHannot-UtilsBundle-Util-LocaleUtil.html#method_ensureLineBreaks" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Locale-LocaleUtil.html#method_ensureLineBreaks" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\ModelUtil", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Model\\ModelUtil", "name": "ModelUtil", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-ModelUtil.html" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Model-ModelUtil.html" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\ModelUtil\u003A\u003A__construct\u0028\u0029", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Model\\ModelUtil\u003A\u003A__construct\u0028\u0029", "name": "__construct", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-ModelUtil.html#method___construct" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Model-ModelUtil.html#method___construct" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\ModelUtil\u003A\u003AaddPublishedCheckToModelArrays\u0028\u0029", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Model\\ModelUtil\u003A\u003AaddPublishedCheckToModelArrays\u0028\u0029", "name": "addPublishedCheckToModelArrays", "summary": "Adds\u0020an\u0020published\u0020check\u0020to\u0020your\u0020model\u0020query.", - "url": "classes/HeimrichHannot-UtilsBundle-Util-ModelUtil.html#method_addPublishedCheckToModelArrays" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Model-ModelUtil.html#method_addPublishedCheckToModelArrays" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\ModelUtil\u003A\u003AfindModelInstancesBy\u0028\u0029", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Model\\ModelUtil\u003A\u003AfindModelInstancesBy\u0028\u0029", "name": "findModelInstancesBy", "summary": "Returns\u0020model\u0020instances\u0020by\u0020given\u0020table\u0020and\u0020search\u0020criteria.", - "url": "classes/HeimrichHannot-UtilsBundle-Util-ModelUtil.html#method_findModelInstancesBy" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Model-ModelUtil.html#method_findModelInstancesBy" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\ModelUtil\u003A\u003AfindModelInstanceByPk\u0028\u0029", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Model\\ModelUtil\u003A\u003AfindModelInstanceByPk\u0028\u0029", "name": "findModelInstanceByPk", "summary": "Find\u0020a\u0020single\u0020model\u0020instance\u0020for\u0020given\u0020table\u0020by\u0020its\u0020primary\u0020key\u0020\u0028id\u0029.", - "url": "classes/HeimrichHannot-UtilsBundle-Util-ModelUtil.html#method_findModelInstanceByPk" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Model-ModelUtil.html#method_findModelInstanceByPk" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\ModelUtil\u003A\u003AfindOneModelInstanceBy\u0028\u0029", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Model\\ModelUtil\u003A\u003AfindOneModelInstanceBy\u0028\u0029", "name": "findOneModelInstanceBy", "summary": "Return\u0020a\u0020single\u0020model\u0020instance\u0020by\u0020table\u0020and\u0020search\u0020criteria.", - "url": "classes/HeimrichHannot-UtilsBundle-Util-ModelUtil.html#method_findOneModelInstanceBy" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Model-ModelUtil.html#method_findOneModelInstanceBy" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\ModelUtil\u003A\u003AfindMultipleModelInstancesByIds\u0028\u0029", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Model\\ModelUtil\u003A\u003AfindMultipleModelInstancesByIds\u0028\u0029", "name": "findMultipleModelInstancesByIds", "summary": "Returns\u0020multiple\u0020model\u0020instances\u0020by\u0020given\u0020table\u0020and\u0020ids.", - "url": "classes/HeimrichHannot-UtilsBundle-Util-ModelUtil.html#method_findMultipleModelInstancesByIds" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Model-ModelUtil.html#method_findMultipleModelInstancesByIds" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\ModelUtil\u003A\u003AfindModelInstanceByIdOrAlias\u0028\u0029", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Model\\ModelUtil\u003A\u003AfindModelInstanceByIdOrAlias\u0028\u0029", "name": "findModelInstanceByIdOrAlias", - "summary": "Returns\u0020model\u0020instance\u0020by\u0020given\u0020table\u0020and\u0020id\u0020or\u0020alias.", - "url": "classes/HeimrichHannot-UtilsBundle-Util-ModelUtil.html#method_findModelInstanceByIdOrAlias" + "summary": "Returns\u0020multiple\u0020model\u0020instances\u0020by\u0020given\u0020table\u0020and\u0020id\u0020or\u0020alias.", + "url": "classes/HeimrichHannot-UtilsBundle-Util-Model-ModelUtil.html#method_findModelInstanceByIdOrAlias" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\ModelUtil\u003A\u003AfindParentsRecursively\u0028\u0029", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Model\\ModelUtil\u003A\u003AfindParentsRecursively\u0028\u0029", "name": "findParentsRecursively", "summary": "Returns\u0020an\u0020array\u0020of\u0020a\u0020model\u0020instance\u0027s\u0020parents\u0020in\u0020ascending\u0020order,\u0020i.e.\u0020the\u0020root\u0020parent\u0020comes\u0020first.", - "url": "classes/HeimrichHannot-UtilsBundle-Util-ModelUtil.html#method_findParentsRecursively" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Model-ModelUtil.html#method_findParentsRecursively" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\ModelUtil\u003A\u003A\u0024framework", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Model\\ModelUtil\u003A\u003A\u0024framework", "name": "framework", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-ModelUtil.html#property_framework" - }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\ModelUtil\u003A\u003A\u0024insertTagParser", - "name": "insertTagParser", - "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-ModelUtil.html#property_insertTagParser" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Model-ModelUtil.html#property_framework" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\RequestUtil", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Request\\RequestUtil", "name": "RequestUtil", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-RequestUtil.html" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Request-RequestUtil.html" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\RequestUtil\u003A\u003A__construct\u0028\u0029", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Request\\RequestUtil\u003A\u003A__construct\u0028\u0029", "name": "__construct", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-RequestUtil.html#method___construct" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Request-RequestUtil.html#method___construct" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\RequestUtil\u003A\u003AgetCurrentPageModel\u0028\u0029", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Request\\RequestUtil\u003A\u003AgetCurrentPageModel\u0028\u0029", "name": "getCurrentPageModel", "summary": "Return\u0020the\u0020current\u0020page\u0020model.", - "url": "classes/HeimrichHannot-UtilsBundle-Util-RequestUtil.html#method_getCurrentPageModel" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Request-RequestUtil.html#method_getCurrentPageModel" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\RequestUtil\u003A\u003AgetCurrentRootPageModel\u0028\u0029", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Request\\RequestUtil\u003A\u003AgetCurrentRootPageModel\u0028\u0029", "name": "getCurrentRootPageModel", "summary": "Return\u0020the\u0020root\u0020page\u0020of\u0020the\u0020current\u0020page.", - "url": "classes/HeimrichHannot-UtilsBundle-Util-RequestUtil.html#method_getCurrentRootPageModel" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Request-RequestUtil.html#method_getCurrentRootPageModel" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\RequestUtil\u003A\u003AgetBaseUrl\u0028\u0029", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Request\\RequestUtil\u003A\u003AgetBaseUrl\u0028\u0029", "name": "getBaseUrl", "summary": "Get\u0020the\u0020website\u0020base\u0020url\u0020\u0028scheme\u0020and\u0020host\u0029\u0020considering\u0020additional\u0020context.", - "url": "classes/HeimrichHannot-UtilsBundle-Util-RequestUtil.html#method_getBaseUrl" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Request-RequestUtil.html#method_getBaseUrl" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\RequestUtil\u003A\u003AisIndexPage\u0028\u0029", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Request\\RequestUtil\u003A\u003AisIndexPage\u0028\u0029", "name": "isIndexPage", "summary": "Return\u0020true\u0020if\u0020the\u0020current\u0020page\u0020\u0028or\u0020the\u0020passed\u0020page\u0029\u0020is\u0020the\u0020index\/\u0020start\u0020page\nof\u0020the\u0020current\u0020page\u0020tree.", - "url": "classes/HeimrichHannot-UtilsBundle-Util-RequestUtil.html#method_isIndexPage" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Request-RequestUtil.html#method_isIndexPage" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\RequestUtil\u003A\u003AisNewVisitor\u0028\u0029", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Request\\RequestUtil\u003A\u003AisNewVisitor\u0028\u0029", "name": "isNewVisitor", "summary": "Detect\u0020if\u0020user\u0020already\u0020visited\u0020our\u0020domain\u0020before.", - "url": "classes/HeimrichHannot-UtilsBundle-Util-RequestUtil.html#method_isNewVisitor" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Request-RequestUtil.html#method_isNewVisitor" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\RequestUtil\u003A\u003A\u0024requestStack", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Request\\RequestUtil\u003A\u003A\u0024modelUtil", + "name": "modelUtil", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Util-Request-RequestUtil.html#property_modelUtil" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Request\\RequestUtil\u003A\u003A\u0024requestStack", "name": "requestStack", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-RequestUtil.html#property_requestStack" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Request-RequestUtil.html#property_requestStack" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Request\\RequestUtil\u003A\u003A\u0024kernelPackages", + "name": "kernelPackages", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Util-Request-RequestUtil.html#property_kernelPackages" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\RequestUtil\u003A\u003A\u0024contaoFramework", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Request\\RequestUtil\u003A\u003A\u0024contaoFramework", "name": "contaoFramework", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-RequestUtil.html#property_contaoFramework" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Request-RequestUtil.html#property_contaoFramework" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Request\\UrlUtil", + "name": "UrlUtil", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Util-Request-UrlUtil.html" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\RoutingUtil", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Request\\UrlUtil\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Util-Request-UrlUtil.html#method___construct" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Request\\UrlUtil\u003A\u003AremoveQueryStringParameterFromUrl\u0028\u0029", + "name": "removeQueryStringParameterFromUrl", + "summary": "Remove\u0020a\u0020query\u0020parameter\u0020\u0028GET\u0020parameter\u0029\u0020from\u0020an\u0020url.", + "url": "classes/HeimrichHannot-UtilsBundle-Util-Request-UrlUtil.html#method_removeQueryStringParameterFromUrl" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Request\\UrlUtil\u003A\u003AremoveQueryStringParameterToUrl\u0028\u0029", + "name": "removeQueryStringParameterToUrl", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Util-Request-UrlUtil.html#method_removeQueryStringParameterToUrl" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Request\\UrlUtil\u003A\u003AaddQueryStringParameterToUrl\u0028\u0029", + "name": "addQueryStringParameterToUrl", + "summary": "Add\u0020a\u0020query\u0020string\u0020parameter\u0020to\u0020an\u0020url.", + "url": "classes/HeimrichHannot-UtilsBundle-Util-Request-UrlUtil.html#method_addQueryStringParameterToUrl" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Request\\UrlUtil\u003A\u003AmakeUrlRelative\u0028\u0029", + "name": "makeUrlRelative", + "summary": "Convert\u0020an\u0020absolute\u0020url\u0020to\u0020a\u0020relative\u0020url.", + "url": "classes/HeimrichHannot-UtilsBundle-Util-Request-UrlUtil.html#method_makeUrlRelative" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Request\\UrlUtil\u003A\u003AbuildUrlString\u0028\u0029", + "name": "buildUrlString", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Util-Request-UrlUtil.html#method_buildUrlString" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Request\\UrlUtil\u003A\u003A\u0024requestStack", + "name": "requestStack", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Util-Request-UrlUtil.html#property_requestStack" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Routing\\RoutingUtil", "name": "RoutingUtil", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-RoutingUtil.html" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Routing-RoutingUtil.html" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\RoutingUtil\u003A\u003A__construct\u0028\u0029", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Routing\\RoutingUtil\u003A\u003A__construct\u0028\u0029", "name": "__construct", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-RoutingUtil.html#method___construct" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Routing-RoutingUtil.html#method___construct" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\RoutingUtil\u003A\u003AgenerateBackendRoute\u0028\u0029", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Routing\\RoutingUtil\u003A\u003AgenerateBackendRoute\u0028\u0029", "name": "generateBackendRoute", "summary": "Generate\u0020a\u0020backend\u0020route\u0020with\u0020token\u0020and\u0020referer.", - "url": "classes/HeimrichHannot-UtilsBundle-Util-RoutingUtil.html#method_generateBackendRoute" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Routing-RoutingUtil.html#method_generateBackendRoute" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\RoutingUtil\u003A\u003A\u0024tokenManager", - "name": "tokenManager", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Routing\\RoutingUtil\u003A\u003AgetSubscribedServices\u0028\u0029", + "name": "getSubscribedServices", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-RoutingUtil.html#property_tokenManager" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Routing-RoutingUtil.html#method_getSubscribedServices" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\RoutingUtil\u003A\u003A\u0024router", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Routing\\RoutingUtil\u003A\u003A\u0024router", "name": "router", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-RoutingUtil.html#property_router" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Routing-RoutingUtil.html#property_router" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Routing\\RoutingUtil\u003A\u003A\u0024container", + "name": "container", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Util-Routing-RoutingUtil.html#property_container" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\RoutingUtil\u003A\u003A\u0024csrfTokenName", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Routing\\RoutingUtil\u003A\u003A\u0024csrfTokenName", "name": "csrfTokenName", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-RoutingUtil.html#property_csrfTokenName" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Routing-RoutingUtil.html#property_csrfTokenName" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\RoutingUtil\u003A\u003A\u0024requestStack", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Routing\\RoutingUtil\u003A\u003A\u0024requestStack", "name": "requestStack", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-RoutingUtil.html#property_requestStack" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Routing-RoutingUtil.html#property_requestStack" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Type\\ArrayUtil", + "name": "ArrayUtil", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Util-Type-ArrayUtil.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Type\\ArrayUtil\u003A\u003AinsertBeforeKey\u0028\u0029", + "name": "insertBeforeKey", + "summary": "Insert\u0020a\u0020new\u0020entry\u0020before\u0020a\u0020specific\u0020or\u0020multiple\u0020keys\u0020in\u0020array.", + "url": "classes/HeimrichHannot-UtilsBundle-Util-Type-ArrayUtil.html#method_insertBeforeKey" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Type\\ArrayUtil\u003A\u003AinsertAfterKey\u0028\u0029", + "name": "insertAfterKey", + "summary": "Insert\u0020a\u0020value\u0020into\u0020an\u0020existing\u0020array\u0020by\u0020key\u0020name.", + "url": "classes/HeimrichHannot-UtilsBundle-Util-Type-ArrayUtil.html#method_insertAfterKey" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Type\\ArrayUtil\u003A\u003AremoveValue\u0028\u0029", + "name": "removeValue", + "summary": "Removes\u0020a\u0020value\u0020in\u0020an\u0020array.", + "url": "classes/HeimrichHannot-UtilsBundle-Util-Type-ArrayUtil.html#method_removeValue" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\StringUtil", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Type\\StringUtil", "name": "StringUtil", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-StringUtil.html" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Type-StringUtil.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Type\\StringUtil\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Util-Type-StringUtil.html#method___construct" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\StringUtil\u003A\u003AcamelCaseToDashed\u0028\u0029", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Type\\StringUtil\u003A\u003AstartsWith\u0028\u0029", + "name": "startsWith", + "summary": "Check\u0020for\u0020the\u0020occurrence\u0020at\u0020the\u0020start\u0020of\u0020the\u0020string.", + "url": "classes/HeimrichHannot-UtilsBundle-Util-Type-StringUtil.html#method_startsWith" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Type\\StringUtil\u003A\u003AendsWith\u0028\u0029", + "name": "endsWith", + "summary": "Check\u0020for\u0020the\u0020occurrence\u0020at\u0020the\u0020end\u0020of\u0020the\u0020string.", + "url": "classes/HeimrichHannot-UtilsBundle-Util-Type-StringUtil.html#method_endsWith" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Type\\StringUtil\u003A\u003AcamelCaseToDashed\u0028\u0029", "name": "camelCaseToDashed", "summary": "Convert\u0020a\u0020camel\u0020case\u0020string\u0020to\u0020a\u0020dashed\u0020string.", - "url": "classes/HeimrichHannot-UtilsBundle-Util-StringUtil.html#method_camelCaseToDashed" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Type-StringUtil.html#method_camelCaseToDashed" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\StringUtil\u003A\u003AcamelCaseToSnake\u0028\u0029", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Type\\StringUtil\u003A\u003AcamelCaseToSnake\u0028\u0029", "name": "camelCaseToSnake", "summary": "Convert\u0020a\u0020camel\u0020case\u0020string\u0020to\u0020a\u0020snake\u0020cased\u0020string.", - "url": "classes/HeimrichHannot-UtilsBundle-Util-StringUtil.html#method_camelCaseToSnake" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Type-StringUtil.html#method_camelCaseToSnake" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\StringUtil\u003A\u003ArandomChar\u0028\u0029", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Type\\StringUtil\u003A\u003ArandomChar\u0028\u0029", "name": "randomChar", "summary": "Return\u0020a\u0020random\u0020char.\u0020Can\u0020be\u0020a\u0020letter\u0020or\u0020a\u0020number.", - "url": "classes/HeimrichHannot-UtilsBundle-Util-StringUtil.html#method_randomChar" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Type-StringUtil.html#method_randomChar" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\StringUtil\u003A\u003ArandomLetter\u0028\u0029", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Type\\StringUtil\u003A\u003ArandomLetter\u0028\u0029", "name": "randomLetter", "summary": "Return\u0020a\u0020random\u0020letter\u0020char.", - "url": "classes/HeimrichHannot-UtilsBundle-Util-StringUtil.html#method_randomLetter" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Type-StringUtil.html#method_randomLetter" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\StringUtil\u003A\u003ArandomNumber\u0028\u0029", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Type\\StringUtil\u003A\u003ArandomNumber\u0028\u0029", "name": "randomNumber", "summary": "Return\u0020a\u0020random\u0020number\u0020char.", - "url": "classes/HeimrichHannot-UtilsBundle-Util-StringUtil.html#method_randomNumber" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Type-StringUtil.html#method_randomNumber" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\StringUtil\u003A\u003Arandom\u0028\u0029", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Type\\StringUtil\u003A\u003Arandom\u0028\u0029", "name": "random", "summary": "Return\u0020a\u0020random\u0020char\u0020of\u0020a\u0020given\u0020string.", - "url": "classes/HeimrichHannot-UtilsBundle-Util-StringUtil.html#method_random" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Type-StringUtil.html#method_random" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\StringUtil\u003A\u003AtruncateHtml\u0028\u0029", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Type\\StringUtil\u003A\u003AtruncateHtml\u0028\u0029", "name": "truncateHtml", - "summary": "Truncates\u0020the\u0020text\u0020of\u0020an\u0020HTML\u0020string.\u0020By\u0020default,\u0020the\u0020last\u0020word\u0020is\u0020kept\u0020complete.", - "url": "classes/HeimrichHannot-UtilsBundle-Util-StringUtil.html#method_truncateHtml" + "summary": "Truncates\u0020the\u0020text\u0020of\u0020a\u0020html\u0020string.\u0020By\u0020default,\u0020the\u0020last\u0020word\u0020is\u0020kept\u0020complete.", + "url": "classes/HeimrichHannot-UtilsBundle-Util-Type-StringUtil.html#method_truncateHtml" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\StringUtil\u003A\u003ApregReplaceLast\u0028\u0029", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Type\\StringUtil\u003A\u003ApregReplaceLast\u0028\u0029", "name": "pregReplaceLast", "summary": "Replace\u0020the\u0020last\u0020match\u0020of\u0020string\u0020with\u0020preg_replace.", - "url": "classes/HeimrichHannot-UtilsBundle-Util-StringUtil.html#method_pregReplaceLast" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Type-StringUtil.html#method_pregReplaceLast" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\StringUtil\u003A\u003AconvertXmlToArray\u0028\u0029", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Type\\StringUtil\u003A\u003AconvertXmlToArray\u0028\u0029", "name": "convertXmlToArray", "summary": "Convert\u0020an\u0020xml\u0020string\u0020to\u0020array.", - "url": "classes/HeimrichHannot-UtilsBundle-Util-StringUtil.html#method_convertXmlToArray" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Type-StringUtil.html#method_convertXmlToArray" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\StringUtil\u003A\u003AremoveLeadingString\u0028\u0029", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Type\\StringUtil\u003A\u003AremoveLeadingString\u0028\u0029", "name": "removeLeadingString", "summary": "Remove\u0020a\u0020string\u0020from\u0020the\u0020beginning\u0020of\u0020\u0024subject.", - "url": "classes/HeimrichHannot-UtilsBundle-Util-StringUtil.html#method_removeLeadingString" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Type-StringUtil.html#method_removeLeadingString" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\StringUtil\u003A\u003AremoveTrailingString\u0028\u0029", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Type\\StringUtil\u003A\u003AremoveTrailingString\u0028\u0029", "name": "removeTrailingString", "summary": "Remove\u0020a\u0020string\u0020from\u0020the\u0020end\u0020of\u0020\u0024subject.", - "url": "classes/HeimrichHannot-UtilsBundle-Util-StringUtil.html#method_removeTrailingString" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Type-StringUtil.html#method_removeTrailingString" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\StringUtil\u003A\u003ACAPITAL_LETTERS", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Type\\StringUtil\u003A\u003ACAPITAL_LETTERS", "name": "CAPITAL_LETTERS", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-StringUtil.html#constant_CAPITAL_LETTERS" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Type-StringUtil.html#constant_CAPITAL_LETTERS" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\StringUtil\u003A\u003ACAPITAL_LETTERS_NONAMBIGUOUS", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Type\\StringUtil\u003A\u003ACAPITAL_LETTERS_NONAMBIGUOUS", "name": "CAPITAL_LETTERS_NONAMBIGUOUS", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-StringUtil.html#constant_CAPITAL_LETTERS_NONAMBIGUOUS" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Type-StringUtil.html#constant_CAPITAL_LETTERS_NONAMBIGUOUS" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\StringUtil\u003A\u003ASMALL_LETTERS", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Type\\StringUtil\u003A\u003ASMALL_LETTERS", "name": "SMALL_LETTERS", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-StringUtil.html#constant_SMALL_LETTERS" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Type-StringUtil.html#constant_SMALL_LETTERS" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\StringUtil\u003A\u003ASMALL_LETTERS_NONAMBIGUOUS", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Type\\StringUtil\u003A\u003ASMALL_LETTERS_NONAMBIGUOUS", "name": "SMALL_LETTERS_NONAMBIGUOUS", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-StringUtil.html#constant_SMALL_LETTERS_NONAMBIGUOUS" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Type-StringUtil.html#constant_SMALL_LETTERS_NONAMBIGUOUS" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\StringUtil\u003A\u003ANUMBERS", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Type\\StringUtil\u003A\u003ANUMBERS", "name": "NUMBERS", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-StringUtil.html#constant_NUMBERS" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Type-StringUtil.html#constant_NUMBERS" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\StringUtil\u003A\u003ANUMBERS_NONAMBIGUOUS", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Type\\StringUtil\u003A\u003ANUMBERS_NONAMBIGUOUS", "name": "NUMBERS_NONAMBIGUOUS", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-StringUtil.html#constant_NUMBERS_NONAMBIGUOUS" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Type-StringUtil.html#constant_NUMBERS_NONAMBIGUOUS" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\UrlUtil", - "name": "UrlUtil", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Type\\StringUtil\u003A\u003A\u0024framework", + "name": "framework", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-UrlUtil.html" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Type-StringUtil.html#property_framework" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\UrlUtil\u003A\u003A__construct\u0028\u0029", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Ui\\AccordionUtil", + "name": "AccordionUtil", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Util-Ui-AccordionUtil.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Ui\\AccordionUtil\u003A\u003A__construct\u0028\u0029", "name": "__construct", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-UrlUtil.html#method___construct" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Ui-AccordionUtil.html#method___construct" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\UrlUtil\u003A\u003AremoveQueryStringParameterFromUrl\u0028\u0029", - "name": "removeQueryStringParameterFromUrl", - "summary": "Remove\u0020query\u0020parameters\u0020\u0028GET\u0020parameter\u0029\u0020from\u0020a\u0020URL.", - "url": "classes/HeimrichHannot-UtilsBundle-Util-UrlUtil.html#method_removeQueryStringParameterFromUrl" + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Ui\\AccordionUtil\u003A\u003AstructureAccordionStartStop\u0028\u0029", + "name": "structureAccordionStartStop", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Util-Ui-AccordionUtil.html#method_structureAccordionStartStop" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\UrlUtil\u003A\u003AaddQueryStringParameterToUrl\u0028\u0029", - "name": "addQueryStringParameterToUrl", - "summary": "Add\u0020a\u0020query\u0020string\u0020parameter\u0020to\u0020a\u0020URL.", - "url": "classes/HeimrichHannot-UtilsBundle-Util-UrlUtil.html#method_addQueryStringParameterToUrl" + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Ui\\AccordionUtil\u003A\u003AstructureAccordionSingle\u0028\u0029", + "name": "structureAccordionSingle", + "summary": "Adds\u0020the\u0020following\u0020flags\u0020to\u0020the\u0020template\u0020data\u003A\n\u002D\u0020first\n\u002D\u0020last\n\u002D\u0020parentId.", + "url": "classes/HeimrichHannot-UtilsBundle-Util-Ui-AccordionUtil.html#method_structureAccordionSingle" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\UrlUtil\u003A\u003AmakeUrlRelative\u0028\u0029", - "name": "makeUrlRelative", - "summary": "Convert\u0020an\u0020absolute\u0020url\u0020to\u0020a\u0020relative\u0020url.", - "url": "classes/HeimrichHannot-UtilsBundle-Util-UrlUtil.html#method_makeUrlRelative" + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Ui\\AccordionUtil\u003A\u003AgenerateAccordionLevel\u0028\u0029", + "name": "generateAccordionLevel", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Util-Ui-AccordionUtil.html#method_generateAccordionLevel" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\UrlUtil\u003A\u003AbuildUrlString\u0028\u0029", - "name": "buildUrlString", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Ui\\AccordionUtil\u003A\u003A\u0024contaoFramework", + "name": "contaoFramework", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-UrlUtil.html#method_buildUrlString" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Ui-AccordionUtil.html#property_contaoFramework" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\UrlUtil\u003A\u003A\u0024requestStack", - "name": "requestStack", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Ui\\AccordionUtil\u003A\u003A\u0024accordionStartStopCache", + "name": "accordionStartStopCache", + "summary": "", + "url": "classes/HeimrichHannot-UtilsBundle-Util-Ui-AccordionUtil.html#property_accordionStartStopCache" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Ui\\AccordionUtil\u003A\u003A\u0024accordionSingleCache", + "name": "accordionSingleCache", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-UrlUtil.html#property_requestStack" + "url": "classes/HeimrichHannot-UtilsBundle-Util-Ui-AccordionUtil.html#property_accordionSingleCache" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\UserUtil", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\User\\UserUtil", "name": "UserUtil", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-UserUtil.html" + "url": "classes/HeimrichHannot-UtilsBundle-Util-User-UserUtil.html" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\UserUtil\u003A\u003A__construct\u0028\u0029", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\User\\UserUtil\u003A\u003A__construct\u0028\u0029", "name": "__construct", "summary": "UserUtil\u0020constructor.", - "url": "classes/HeimrichHannot-UtilsBundle-Util-UserUtil.html#method___construct" + "url": "classes/HeimrichHannot-UtilsBundle-Util-User-UserUtil.html#method___construct" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\UserUtil\u003A\u003AfindActiveUsersByGroup\u0028\u0029", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\User\\UserUtil\u003A\u003AfindActiveUsersByGroup\u0028\u0029", "name": "findActiveUsersByGroup", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-UserUtil.html#method_findActiveUsersByGroup" - }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\UserUtil\u003A\u003AgetActiveGroups\u0028\u0029", - "name": "getActiveGroups", - "summary": "Returns\u0020all\u0020active\u0020users\u0020userGroups\u0020as\u0020a\u0020Collection\u0020of\u0020Models\u0020or\u0020null\u0020if\u0020user\u0020do\u0020not\u0020belong\u0020to\u0020any\u0020active\u0020userGroups", - "url": "classes/HeimrichHannot-UtilsBundle-Util-UserUtil.html#method_getActiveGroups" - }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\UserUtil\u003A\u003AhasActiveGroup\u0028\u0029", - "name": "hasActiveGroup", - "summary": "Returns\u0020true\u0020if\u0020the\u0020user\u0020or\u0020member\u0020\u0028frontend\u0020user\u0029\u0020is\u0020member\u0020of\u0020given\u0020group,\u0020false\u0020otherwise.", - "url": "classes/HeimrichHannot-UtilsBundle-Util-UserUtil.html#method_hasActiveGroup" - }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\UserUtil\u003A\u003ATYPE_USER", - "name": "TYPE_USER", - "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-UserUtil.html#constant_TYPE_USER" + "url": "classes/HeimrichHannot-UtilsBundle-Util-User-UserUtil.html#method_findActiveUsersByGroup" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\UserUtil\u003A\u003ATYPE_MEMBER", - "name": "TYPE_MEMBER", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\User\\UserUtil\u003A\u003ATABLE", + "name": "TABLE", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-UserUtil.html#constant_TYPE_MEMBER" + "url": "classes/HeimrichHannot-UtilsBundle-Util-User-UserUtil.html#constant_TABLE" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\UserUtil\u003A\u003A\u0024modelUtil", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\User\\UserUtil\u003A\u003A\u0024modelUtil", "name": "modelUtil", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-UserUtil.html#property_modelUtil" + "url": "classes/HeimrichHannot-UtilsBundle-Util-User-UserUtil.html#property_modelUtil" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\UserUtil\u003A\u003A\u0024databaseUtil", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\User\\UserUtil\u003A\u003A\u0024databaseUtil", "name": "databaseUtil", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-UserUtil.html#property_databaseUtil" + "url": "classes/HeimrichHannot-UtilsBundle-Util-User-UserUtil.html#property_databaseUtil" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\UserUtil\u003A\u003A\u0024contaoFramework", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\User\\UserUtil\u003A\u003A\u0024contaoFramework", "name": "contaoFramework", "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-UserUtil.html#property_contaoFramework" + "url": "classes/HeimrichHannot-UtilsBundle-Util-User-UserUtil.html#property_contaoFramework" }, { "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Utils", "name": "Utils", @@ -1540,11 +5490,6 @@ Search.appendIndex( "name": "accordion", "summary": "", "url": "classes/HeimrichHannot-UtilsBundle-Util-Utils.html#method_accordion" - }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Utils\u003A\u003Aanonymize\u0028\u0029", - "name": "anonymize", - "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-Utils.html#method_anonymize" }, { "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Utils\u003A\u003Aarray\u0028\u0029", "name": "array", @@ -1575,11 +5520,6 @@ Search.appendIndex( "name": "file", "summary": "", "url": "classes/HeimrichHannot-UtilsBundle-Util-Utils.html#method_file" - }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Utils\u003A\u003Aformatter\u0028\u0029", - "name": "formatter", - "summary": "", - "url": "classes/HeimrichHannot-UtilsBundle-Util-Utils.html#method_formatter" }, { "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Utils\u003A\u003Ahtml\u0028\u0029", "name": "html", @@ -1635,26 +5575,86 @@ Search.appendIndex( "name": "\\", "summary": "", "url": "namespaces/default.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Accordion", + "name": "Accordion", + "summary": "", + "url": "namespaces/heimrichhannot-utilsbundle-accordion.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Arrays", + "name": "Arrays", + "summary": "", + "url": "namespaces/heimrichhannot-utilsbundle-arrays.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Cache", + "name": "Cache", + "summary": "", + "url": "namespaces/heimrichhannot-utilsbundle-cache.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Choice", + "name": "Choice", + "summary": "", + "url": "namespaces/heimrichhannot-utilsbundle-choice.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Classes", + "name": "Classes", + "summary": "", + "url": "namespaces/heimrichhannot-utilsbundle-classes.html" }, { "fqsen": "\\HeimrichHannot\\UtilsBundle\\Command", "name": "Command", "summary": "", "url": "namespaces/heimrichhannot-utilsbundle-command.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Comparison", + "name": "Comparison", + "summary": "", + "url": "namespaces/heimrichhannot-utilsbundle-comparison.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Container", + "name": "Container", + "summary": "", + "url": "namespaces/heimrichhannot-utilsbundle-container.html" }, { "fqsen": "\\HeimrichHannot\\UtilsBundle\\ContaoManager", "name": "ContaoManager", "summary": "", "url": "namespaces/heimrichhannot-utilsbundle-contaomanager.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Content", + "name": "Content", + "summary": "", + "url": "namespaces/heimrichhannot-utilsbundle-content.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Database", + "name": "Database", + "summary": "", + "url": "namespaces/heimrichhannot-utilsbundle-database.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Date", + "name": "Date", + "summary": "", + "url": "namespaces/heimrichhannot-utilsbundle-date.html" }, { "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dca", "name": "Dca", "summary": "", "url": "namespaces/heimrichhannot-utilsbundle-dca.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\DependencyInjection", + "name": "DependencyInjection", + "summary": "", + "url": "namespaces/heimrichhannot-utilsbundle-dependencyinjection.html" }, { "fqsen": "\\HeimrichHannot\\UtilsBundle\\Dom", "name": "Dom", "summary": "", "url": "namespaces/heimrichhannot-utilsbundle-dom.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Driver", + "name": "Driver", + "summary": "", + "url": "namespaces/heimrichhannot-utilsbundle-driver.html" }, { "fqsen": "\\HeimrichHannot\\UtilsBundle\\EntityFinder", "name": "EntityFinder", @@ -1680,6 +5680,16 @@ Search.appendIndex( "name": "Exception", "summary": "", "url": "namespaces/heimrichhannot-utilsbundle-exception.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\File", + "name": "File", + "summary": "", + "url": "namespaces/heimrichhannot-utilsbundle-file.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Form", + "name": "Form", + "summary": "", + "url": "namespaces/heimrichhannot-utilsbundle-form.html" }, { "fqsen": "\\HeimrichHannot\\UtilsBundle", "name": "UtilsBundle", @@ -1691,39 +5701,179 @@ Search.appendIndex( "summary": "", "url": "namespaces/heimrichhannot.html" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\StaticUtil", - "name": "StaticUtil", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Ics", + "name": "Ics", + "summary": "", + "url": "namespaces/heimrichhannot-utilsbundle-ics.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Image", + "name": "Image", + "summary": "", + "url": "namespaces/heimrichhannot-utilsbundle-image.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Location", + "name": "Location", + "summary": "", + "url": "namespaces/heimrichhannot-utilsbundle-location.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Member", + "name": "Member", + "summary": "", + "url": "namespaces/heimrichhannot-utilsbundle-member.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Model", + "name": "Model", + "summary": "", + "url": "namespaces/heimrichhannot-utilsbundle-model.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Module", + "name": "Module", + "summary": "", + "url": "namespaces/heimrichhannot-utilsbundle-module.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Page", + "name": "Page", + "summary": "", + "url": "namespaces/heimrichhannot-utilsbundle-page.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pagination", + "name": "Pagination", + "summary": "", + "url": "namespaces/heimrichhannot-utilsbundle-pagination.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Pdf", + "name": "Pdf", + "summary": "", + "url": "namespaces/heimrichhannot-utilsbundle-pdf.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator", + "name": "PdfCreator", + "summary": "", + "url": "namespaces/heimrichhannot-utilsbundle-pdfcreator.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\PdfCreator\\Concrete", + "name": "Concrete", + "summary": "", + "url": "namespaces/heimrichhannot-utilsbundle-pdfcreator-concrete.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Request", + "name": "Request", + "summary": "", + "url": "namespaces/heimrichhannot-utilsbundle-request.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Routing", + "name": "Routing", + "summary": "", + "url": "namespaces/heimrichhannot-utilsbundle-routing.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Rsce", + "name": "Rsce", + "summary": "", + "url": "namespaces/heimrichhannot-utilsbundle-rsce.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Salutation", + "name": "Salutation", + "summary": "", + "url": "namespaces/heimrichhannot-utilsbundle-salutation.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Security", + "name": "Security", "summary": "", - "url": "namespaces/heimrichhannot-utilsbundle-staticutil.html" + "url": "namespaces/heimrichhannot-utilsbundle-security.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\String", + "name": "String", + "summary": "", + "url": "namespaces/heimrichhannot-utilsbundle-string.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Template", + "name": "Template", + "summary": "", + "url": "namespaces/heimrichhannot-utilsbundle-template.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Traits", + "name": "Traits", + "summary": "", + "url": "namespaces/heimrichhannot-utilsbundle-traits.html" }, { "fqsen": "\\HeimrichHannot\\UtilsBundle\\Twig", "name": "Twig", "summary": "", "url": "namespaces/heimrichhannot-utilsbundle-twig.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Url", + "name": "Url", + "summary": "", + "url": "namespaces/heimrichhannot-utilsbundle-url.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\User", + "name": "User", + "summary": "", + "url": "namespaces/heimrichhannot-utilsbundle-user.html" }, { "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util", "name": "Util", "summary": "", "url": "namespaces/heimrichhannot-utilsbundle-util.html" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\DcaUtil", - "name": "DcaUtil", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Container", + "name": "Container", "summary": "", - "url": "namespaces/heimrichhannot-utilsbundle-util-dcautil.html" + "url": "namespaces/heimrichhannot-utilsbundle-util-container.html" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\FormatterUtil", - "name": "FormatterUtil", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\DatabaseUtil", + "name": "DatabaseUtil", "summary": "", - "url": "namespaces/heimrichhannot-utilsbundle-util-formatterutil.html" + "url": "namespaces/heimrichhannot-utilsbundle-util-databaseutil.html" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\HtmlUtil", - "name": "HtmlUtil", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Dca", + "name": "Dca", "summary": "", - "url": "namespaces/heimrichhannot-utilsbundle-util-htmlutil.html" + "url": "namespaces/heimrichhannot-utilsbundle-util-dca.html" }, { - "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\UserUtil", - "name": "UserUtil", + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\File", + "name": "File", + "summary": "", + "url": "namespaces/heimrichhannot-utilsbundle-util-file.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Html", + "name": "Html", + "summary": "", + "url": "namespaces/heimrichhannot-utilsbundle-util-html.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Locale", + "name": "Locale", + "summary": "", + "url": "namespaces/heimrichhannot-utilsbundle-util-locale.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Model", + "name": "Model", + "summary": "", + "url": "namespaces/heimrichhannot-utilsbundle-util-model.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Request", + "name": "Request", + "summary": "", + "url": "namespaces/heimrichhannot-utilsbundle-util-request.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Routing", + "name": "Routing", + "summary": "", + "url": "namespaces/heimrichhannot-utilsbundle-util-routing.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Type", + "name": "Type", + "summary": "", + "url": "namespaces/heimrichhannot-utilsbundle-util-type.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\Ui", + "name": "Ui", + "summary": "", + "url": "namespaces/heimrichhannot-utilsbundle-util-ui.html" + }, { + "fqsen": "\\HeimrichHannot\\UtilsBundle\\Util\\User", + "name": "User", "summary": "", - "url": "namespaces/heimrichhannot-utilsbundle-util-userutil.html" + "url": "namespaces/heimrichhannot-utilsbundle-util-user.html" } ] ); diff --git a/namespaces/heimrichhannot-utilsbundle-accordion.html b/namespaces/heimrichhannot-utilsbundle-accordion.html new file mode 100644 index 00000000..d54f069c --- /dev/null +++ b/namespaces/heimrichhannot-utilsbundle-accordion.html @@ -0,0 +1,139 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                      Contao Utils Bundle

                                                                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                      Accordion

                                                                                                                                                                                                                                                                                                                                      + + + +

                                                                                                                                                                                                                                                                                                                                      + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                      AccordionUtil
                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                      Search results

                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                                                                                        + + + + + + + + diff --git a/namespaces/heimrichhannot-utilsbundle-arrays.html b/namespaces/heimrichhannot-utilsbundle-arrays.html new file mode 100644 index 00000000..ed2b2a8c --- /dev/null +++ b/namespaces/heimrichhannot-utilsbundle-arrays.html @@ -0,0 +1,139 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                        Contao Utils Bundle

                                                                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                        Arrays

                                                                                                                                                                                                                                                                                                                                        + + + +

                                                                                                                                                                                                                                                                                                                                        + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                        ArrayUtil
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                        + + + + + + +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                                                                                                          + + + + + + + + diff --git a/namespaces/heimrichhannot-utilsbundle-cache.html b/namespaces/heimrichhannot-utilsbundle-cache.html new file mode 100644 index 00000000..132982b3 --- /dev/null +++ b/namespaces/heimrichhannot-utilsbundle-cache.html @@ -0,0 +1,147 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                          Contao Utils Bundle

                                                                                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                          Search results

                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                                                                                                            + + + + + + + + diff --git a/namespaces/heimrichhannot-utilsbundle-choice.html b/namespaces/heimrichhannot-utilsbundle-choice.html new file mode 100644 index 00000000..2445a0ef --- /dev/null +++ b/namespaces/heimrichhannot-utilsbundle-choice.html @@ -0,0 +1,149 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                            Contao Utils Bundle

                                                                                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                            Search results

                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                                                                                                              + + + + + + + + diff --git a/namespaces/heimrichhannot-utilsbundle-classes.html b/namespaces/heimrichhannot-utilsbundle-classes.html new file mode 100644 index 00000000..f1fad37f --- /dev/null +++ b/namespaces/heimrichhannot-utilsbundle-classes.html @@ -0,0 +1,139 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                              Contao Utils Bundle

                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                              Classes

                                                                                                                                                                                                                                                                                                                                              + + + +

                                                                                                                                                                                                                                                                                                                                              + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                              ClassUtil
                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                              + + + + + + +
                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                              Search results

                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                                                                + + + + + + + + diff --git a/namespaces/heimrichhannot-utilsbundle-command.html b/namespaces/heimrichhannot-utilsbundle-command.html index bb0be6d2..932ca73c 100644 --- a/namespaces/heimrichhannot-utilsbundle-command.html +++ b/namespaces/heimrichhannot-utilsbundle-command.html @@ -100,6 +100,8 @@

                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                CreateImageSizeItemsCommand
                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                EntityFinderCommand
                                                                                                                                                                                                                                                                                                                                                diff --git a/namespaces/heimrichhannot-utilsbundle-comparison.html b/namespaces/heimrichhannot-utilsbundle-comparison.html new file mode 100644 index 00000000..03bb0ee8 --- /dev/null +++ b/namespaces/heimrichhannot-utilsbundle-comparison.html @@ -0,0 +1,139 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                Contao Utils Bundle

                                                                                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                Comparison

                                                                                                                                                                                                                                                                                                                                                + + + +

                                                                                                                                                                                                                                                                                                                                                + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                CompareUtil
                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                + + + + + + +
                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                Search results

                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + diff --git a/namespaces/heimrichhannot-utilsbundle-container.html b/namespaces/heimrichhannot-utilsbundle-container.html new file mode 100644 index 00000000..637079ec --- /dev/null +++ b/namespaces/heimrichhannot-utilsbundle-container.html @@ -0,0 +1,139 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                  Contao Utils Bundle

                                                                                                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                  Container

                                                                                                                                                                                                                                                                                                                                                  + + + +

                                                                                                                                                                                                                                                                                                                                                  + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                  ContainerUtil
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  Class ContainerUtil.
                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                  + + + + + + +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + diff --git a/namespaces/heimrichhannot-utilsbundle-content.html b/namespaces/heimrichhannot-utilsbundle-content.html new file mode 100644 index 00000000..58d2cfec --- /dev/null +++ b/namespaces/heimrichhannot-utilsbundle-content.html @@ -0,0 +1,139 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                    Contao Utils Bundle

                                                                                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                    Content

                                                                                                                                                                                                                                                                                                                                                    + + + +

                                                                                                                                                                                                                                                                                                                                                    + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                    ContentUtil
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                    + + + + + + +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + diff --git a/namespaces/heimrichhannot-utilsbundle-database.html b/namespaces/heimrichhannot-utilsbundle-database.html new file mode 100644 index 00000000..e89b2662 --- /dev/null +++ b/namespaces/heimrichhannot-utilsbundle-database.html @@ -0,0 +1,139 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                      Contao Utils Bundle

                                                                                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                      Database

                                                                                                                                                                                                                                                                                                                                                      + + + +

                                                                                                                                                                                                                                                                                                                                                      + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                      DatabaseUtil
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                      Search results

                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + diff --git a/namespaces/heimrichhannot-utilsbundle-date.html b/namespaces/heimrichhannot-utilsbundle-date.html new file mode 100644 index 00000000..d62b011a --- /dev/null +++ b/namespaces/heimrichhannot-utilsbundle-date.html @@ -0,0 +1,139 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                        Contao Utils Bundle

                                                                                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                        Date

                                                                                                                                                                                                                                                                                                                                                        + + + +

                                                                                                                                                                                                                                                                                                                                                        + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                        DateUtil
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                        + + + + + + +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + diff --git a/namespaces/heimrichhannot-utilsbundle-dca.html b/namespaces/heimrichhannot-utilsbundle-dca.html index f9fde037..79f6738b 100644 --- a/namespaces/heimrichhannot-utilsbundle-dca.html +++ b/namespaces/heimrichhannot-utilsbundle-dca.html @@ -110,6 +110,8 @@

                                                                                                                                                                                                                                                                                                                                                          DcaFieldConfiguration
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          DcaUtil
                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                          diff --git a/namespaces/heimrichhannot-utilsbundle-dependencyinjection.html b/namespaces/heimrichhannot-utilsbundle-dependencyinjection.html new file mode 100644 index 00000000..d33de1fe --- /dev/null +++ b/namespaces/heimrichhannot-utilsbundle-dependencyinjection.html @@ -0,0 +1,143 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                          Contao Utils Bundle

                                                                                                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                          Search results

                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + diff --git a/namespaces/heimrichhannot-utilsbundle-dom.html b/namespaces/heimrichhannot-utilsbundle-dom.html index dbef5328..82cd8d77 100644 --- a/namespaces/heimrichhannot-utilsbundle-dom.html +++ b/namespaces/heimrichhannot-utilsbundle-dom.html @@ -93,6 +93,18 @@

                                                                                                                                                                                                                                                                                                                                                            Dom

                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                            + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                            DOMLettersIterator
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            Iterates individual characters (Unicode codepoints) of DOM text and CDATA nodes +while keeping track of their position in the document.
                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                            diff --git a/namespaces/heimrichhannot-utilsbundle-driver.html b/namespaces/heimrichhannot-utilsbundle-driver.html new file mode 100644 index 00000000..2fb3c0b8 --- /dev/null +++ b/namespaces/heimrichhannot-utilsbundle-driver.html @@ -0,0 +1,139 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                            Contao Utils Bundle

                                                                                                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                            Driver

                                                                                                                                                                                                                                                                                                                                                            + + + +

                                                                                                                                                                                                                                                                                                                                                            + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                            DC_Table_Utils
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                            + + + + + + +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                            Search results

                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + diff --git a/namespaces/heimrichhannot-utilsbundle-event.html b/namespaces/heimrichhannot-utilsbundle-event.html index a598c250..005db6c0 100644 --- a/namespaces/heimrichhannot-utilsbundle-event.html +++ b/namespaces/heimrichhannot-utilsbundle-event.html @@ -100,8 +100,12 @@

                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              AbstractEvent
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              ExtendEntityFinderEvent
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              RenderTwigTemplateEvent
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              diff --git a/namespaces/heimrichhannot-utilsbundle-eventlistener.html b/namespaces/heimrichhannot-utilsbundle-eventlistener.html index fddbdcb3..b6a267cd 100644 --- a/namespaces/heimrichhannot-utilsbundle-eventlistener.html +++ b/namespaces/heimrichhannot-utilsbundle-eventlistener.html @@ -110,6 +110,10 @@

                                                                                                                                                                                                                                                                                                                                                              ExtendEntityFinderSubscriber
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              InitializeSystemListener
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              Hook("initializeSystem").
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              InsertTagsListener
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              diff --git a/namespaces/heimrichhannot-utilsbundle-file.html b/namespaces/heimrichhannot-utilsbundle-file.html new file mode 100644 index 00000000..2c86526c --- /dev/null +++ b/namespaces/heimrichhannot-utilsbundle-file.html @@ -0,0 +1,149 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                              Contao Utils Bundle

                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                              Search results

                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + diff --git a/namespaces/heimrichhannot-utilsbundle-form.html b/namespaces/heimrichhannot-utilsbundle-form.html new file mode 100644 index 00000000..d8405b9f --- /dev/null +++ b/namespaces/heimrichhannot-utilsbundle-form.html @@ -0,0 +1,139 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                Contao Utils Bundle

                                                                                                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                Form

                                                                                                                                                                                                                                                                                                                                                                + + + +

                                                                                                                                                                                                                                                                                                                                                                + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                FormUtil
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                Class FormUtil.
                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                Search results

                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + diff --git a/namespaces/heimrichhannot-utilsbundle-ics.html b/namespaces/heimrichhannot-utilsbundle-ics.html new file mode 100644 index 00000000..d6d7dfd0 --- /dev/null +++ b/namespaces/heimrichhannot-utilsbundle-ics.html @@ -0,0 +1,139 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                  Contao Utils Bundle

                                                                                                                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                  Ics

                                                                                                                                                                                                                                                                                                                                                                  + + + +

                                                                                                                                                                                                                                                                                                                                                                  + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                  IcsUtil
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                  + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + diff --git a/namespaces/heimrichhannot-utilsbundle-image.html b/namespaces/heimrichhannot-utilsbundle-image.html new file mode 100644 index 00000000..d3d01296 --- /dev/null +++ b/namespaces/heimrichhannot-utilsbundle-image.html @@ -0,0 +1,139 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                    Contao Utils Bundle

                                                                                                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                    Image

                                                                                                                                                                                                                                                                                                                                                                    + + + +

                                                                                                                                                                                                                                                                                                                                                                    + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                    ImageUtil
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                    + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + diff --git a/namespaces/heimrichhannot-utilsbundle-location.html b/namespaces/heimrichhannot-utilsbundle-location.html new file mode 100644 index 00000000..0f1ad5bc --- /dev/null +++ b/namespaces/heimrichhannot-utilsbundle-location.html @@ -0,0 +1,139 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                      Contao Utils Bundle

                                                                                                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                      Location

                                                                                                                                                                                                                                                                                                                                                                      + + + +

                                                                                                                                                                                                                                                                                                                                                                      + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                      LocationUtil
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                      Search results

                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + diff --git a/namespaces/heimrichhannot-utilsbundle-member.html b/namespaces/heimrichhannot-utilsbundle-member.html new file mode 100644 index 00000000..d8e58207 --- /dev/null +++ b/namespaces/heimrichhannot-utilsbundle-member.html @@ -0,0 +1,139 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                        Contao Utils Bundle

                                                                                                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                        Member

                                                                                                                                                                                                                                                                                                                                                                        + + + +

                                                                                                                                                                                                                                                                                                                                                                        + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                        MemberUtil
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                        + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + diff --git a/namespaces/heimrichhannot-utilsbundle-staticutil.html b/namespaces/heimrichhannot-utilsbundle-model.html similarity index 90% rename from namespaces/heimrichhannot-utilsbundle-staticutil.html rename to namespaces/heimrichhannot-utilsbundle-model.html index fbb1c4e2..4aabb835 100644 --- a/namespaces/heimrichhannot-utilsbundle-staticutil.html +++ b/namespaces/heimrichhannot-utilsbundle-model.html @@ -89,7 +89,7 @@

                                                                                                                                                                                                                                                                                                                                                                          Fil

                                                                                                                                                                                                                                                                                                                                                                          - + diff --git a/namespaces/heimrichhannot-utilsbundle-module.html b/namespaces/heimrichhannot-utilsbundle-module.html new file mode 100644 index 00000000..90cb92ae --- /dev/null +++ b/namespaces/heimrichhannot-utilsbundle-module.html @@ -0,0 +1,139 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                          Contao Utils Bundle

                                                                                                                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                          Module

                                                                                                                                                                                                                                                                                                                                                                          + + + +

                                                                                                                                                                                                                                                                                                                                                                          + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                          ModuleUtil
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                          + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                          Search results

                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + diff --git a/namespaces/heimrichhannot-utilsbundle-page.html b/namespaces/heimrichhannot-utilsbundle-page.html new file mode 100644 index 00000000..30d38ed7 --- /dev/null +++ b/namespaces/heimrichhannot-utilsbundle-page.html @@ -0,0 +1,139 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                            Contao Utils Bundle

                                                                                                                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                            Page

                                                                                                                                                                                                                                                                                                                                                                            + + + +

                                                                                                                                                                                                                                                                                                                                                                            + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                            PageUtil
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                            + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                            Search results

                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + diff --git a/namespaces/heimrichhannot-utilsbundle-pagination.html b/namespaces/heimrichhannot-utilsbundle-pagination.html new file mode 100644 index 00000000..26878efa --- /dev/null +++ b/namespaces/heimrichhannot-utilsbundle-pagination.html @@ -0,0 +1,139 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                              Contao Utils Bundle

                                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                              Pagination

                                                                                                                                                                                                                                                                                                                                                                              + + + +

                                                                                                                                                                                                                                                                                                                                                                              + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                              TextualPagination
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                              + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                              Search results

                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + diff --git a/namespaces/heimrichhannot-utilsbundle-pdf.html b/namespaces/heimrichhannot-utilsbundle-pdf.html new file mode 100644 index 00000000..4a223bd6 --- /dev/null +++ b/namespaces/heimrichhannot-utilsbundle-pdf.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                Contao Utils Bundle

                                                                                                                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                Search results

                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + diff --git a/namespaces/heimrichhannot-utilsbundle-pdfcreator-concrete.html b/namespaces/heimrichhannot-utilsbundle-pdfcreator-concrete.html new file mode 100644 index 00000000..1293724b --- /dev/null +++ b/namespaces/heimrichhannot-utilsbundle-pdfcreator-concrete.html @@ -0,0 +1,140 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                  Contao Utils Bundle

                                                                                                                                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                  Concrete

                                                                                                                                                                                                                                                                                                                                                                                  + + + +

                                                                                                                                                                                                                                                                                                                                                                                  + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                  MpdfCreator
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  Class MpdfCreator.
                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + diff --git a/namespaces/heimrichhannot-utilsbundle-pdfcreator.html b/namespaces/heimrichhannot-utilsbundle-pdfcreator.html new file mode 100644 index 00000000..1bd182d8 --- /dev/null +++ b/namespaces/heimrichhannot-utilsbundle-pdfcreator.html @@ -0,0 +1,153 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                    Contao Utils Bundle

                                                                                                                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + diff --git a/namespaces/heimrichhannot-utilsbundle-request.html b/namespaces/heimrichhannot-utilsbundle-request.html new file mode 100644 index 00000000..83126093 --- /dev/null +++ b/namespaces/heimrichhannot-utilsbundle-request.html @@ -0,0 +1,145 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                      Contao Utils Bundle

                                                                                                                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                      Search results

                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + diff --git a/namespaces/heimrichhannot-utilsbundle-routing.html b/namespaces/heimrichhannot-utilsbundle-routing.html new file mode 100644 index 00000000..f89663a2 --- /dev/null +++ b/namespaces/heimrichhannot-utilsbundle-routing.html @@ -0,0 +1,139 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                        Contao Utils Bundle

                                                                                                                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                        Routing

                                                                                                                                                                                                                                                                                                                                                                                        + + + +

                                                                                                                                                                                                                                                                                                                                                                                        + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                        RoutingUtil
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + diff --git a/namespaces/heimrichhannot-utilsbundle-rsce.html b/namespaces/heimrichhannot-utilsbundle-rsce.html new file mode 100644 index 00000000..14df3018 --- /dev/null +++ b/namespaces/heimrichhannot-utilsbundle-rsce.html @@ -0,0 +1,139 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                          Contao Utils Bundle

                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                          Rsce

                                                                                                                                                                                                                                                                                                                                                                                          + + + +

                                                                                                                                                                                                                                                                                                                                                                                          + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                          RsceUtil
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                          Search results

                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + diff --git a/namespaces/heimrichhannot-utilsbundle-salutation.html b/namespaces/heimrichhannot-utilsbundle-salutation.html new file mode 100644 index 00000000..28606642 --- /dev/null +++ b/namespaces/heimrichhannot-utilsbundle-salutation.html @@ -0,0 +1,139 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                            Contao Utils Bundle

                                                                                                                                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                            Salutation

                                                                                                                                                                                                                                                                                                                                                                                            + + + +

                                                                                                                                                                                                                                                                                                                                                                                            + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                            SalutationUtil
                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                            Search results

                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + diff --git a/namespaces/heimrichhannot-utilsbundle-security.html b/namespaces/heimrichhannot-utilsbundle-security.html new file mode 100644 index 00000000..d14fef35 --- /dev/null +++ b/namespaces/heimrichhannot-utilsbundle-security.html @@ -0,0 +1,141 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                              Contao Utils Bundle

                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                              Security

                                                                                                                                                                                                                                                                                                                                                                                              + + + +

                                                                                                                                                                                                                                                                                                                                                                                              + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                              CodeUtil
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              EncryptionUtil
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                              Search results

                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + diff --git a/namespaces/heimrichhannot-utilsbundle-string.html b/namespaces/heimrichhannot-utilsbundle-string.html new file mode 100644 index 00000000..3d50ee1c --- /dev/null +++ b/namespaces/heimrichhannot-utilsbundle-string.html @@ -0,0 +1,141 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                Contao Utils Bundle

                                                                                                                                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                String

                                                                                                                                                                                                                                                                                                                                                                                                + + + +

                                                                                                                                                                                                                                                                                                                                                                                                + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                AnonymizerUtil
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                Class AnonymizerUtil.
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                StringUtil
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                Class StringUtil.
                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                Search results

                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + diff --git a/namespaces/heimrichhannot-utilsbundle-template.html b/namespaces/heimrichhannot-utilsbundle-template.html new file mode 100644 index 00000000..846caf8e --- /dev/null +++ b/namespaces/heimrichhannot-utilsbundle-template.html @@ -0,0 +1,139 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                  Contao Utils Bundle

                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                  Template

                                                                                                                                                                                                                                                                                                                                                                                                  + + + +

                                                                                                                                                                                                                                                                                                                                                                                                  + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                  TemplateUtil
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + diff --git a/namespaces/heimrichhannot-utilsbundle-util-userutil.html b/namespaces/heimrichhannot-utilsbundle-traits.html similarity index 94% rename from namespaces/heimrichhannot-utilsbundle-util-userutil.html rename to namespaces/heimrichhannot-utilsbundle-traits.html index 67864da2..4d86069b 100644 --- a/namespaces/heimrichhannot-utilsbundle-util-userutil.html +++ b/namespaces/heimrichhannot-utilsbundle-traits.html @@ -86,11 +86,10 @@

                                                                                                                                                                                                                                                                                                                                                                                                    Fil
                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                    UserUtil

                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                    Traits

                                                                                                                                                                                                                                                                                                                                                                                                    @@ -114,7 +113,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                                                                                                                                                                                                    - + diff --git a/namespaces/heimrichhannot-utilsbundle-twig.html b/namespaces/heimrichhannot-utilsbundle-twig.html index 169efb6c..e81756a3 100644 --- a/namespaces/heimrichhannot-utilsbundle-twig.html +++ b/namespaces/heimrichhannot-utilsbundle-twig.html @@ -100,8 +100,22 @@

                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    ArrayExtension
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    DateExtension
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    DcaExtension
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    DownloadExtension
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    FileExtension
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    ImageExtension
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    StringExtension
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    TestExtension
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/namespaces/heimrichhannot-utilsbundle-url.html b/namespaces/heimrichhannot-utilsbundle-url.html new file mode 100644 index 00000000..0898931b --- /dev/null +++ b/namespaces/heimrichhannot-utilsbundle-url.html @@ -0,0 +1,139 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                    Contao Utils Bundle

                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                    Url

                                                                                                                                                                                                                                                                                                                                                                                                    + + + +

                                                                                                                                                                                                                                                                                                                                                                                                    + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                    UrlUtil
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + diff --git a/namespaces/heimrichhannot-utilsbundle-user.html b/namespaces/heimrichhannot-utilsbundle-user.html new file mode 100644 index 00000000..69ff5e47 --- /dev/null +++ b/namespaces/heimrichhannot-utilsbundle-user.html @@ -0,0 +1,139 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                      Contao Utils Bundle

                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                      User

                                                                                                                                                                                                                                                                                                                                                                                                      + + + +

                                                                                                                                                                                                                                                                                                                                                                                                      + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                      UserUtil
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      Class UserUtil.
                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                      Search results

                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + diff --git a/namespaces/heimrichhannot-utilsbundle-util-formatterutil.html b/namespaces/heimrichhannot-utilsbundle-util-container.html similarity index 93% rename from namespaces/heimrichhannot-utilsbundle-util-formatterutil.html rename to namespaces/heimrichhannot-utilsbundle-util-container.html index 7088636a..10950b4d 100644 --- a/namespaces/heimrichhannot-utilsbundle-util-formatterutil.html +++ b/namespaces/heimrichhannot-utilsbundle-util-container.html @@ -90,7 +90,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                        Fil
                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                        FormatterUtil

                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                        Container

                                                                                                                                                                                                                                                                                                                                                                                                        @@ -101,7 +101,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                        FormatDcaFieldValueOptions
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        ContainerUtil
                                                                                                                                                                                                                                                                                                                                                                                                        @@ -125,7 +125,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                                                                                                                                                                                                        - + diff --git a/namespaces/heimrichhannot-utilsbundle-util-databaseutil.html b/namespaces/heimrichhannot-utilsbundle-util-databaseutil.html new file mode 100644 index 00000000..a727b8ea --- /dev/null +++ b/namespaces/heimrichhannot-utilsbundle-util-databaseutil.html @@ -0,0 +1,140 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                        Contao Utils Bundle

                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + diff --git a/namespaces/heimrichhannot-utilsbundle-util-dca.html b/namespaces/heimrichhannot-utilsbundle-util-dca.html new file mode 100644 index 00000000..e0839e52 --- /dev/null +++ b/namespaces/heimrichhannot-utilsbundle-util-dca.html @@ -0,0 +1,140 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                          Contao Utils Bundle

                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                          Dca

                                                                                                                                                                                                                                                                                                                                                                                                          + + + +

                                                                                                                                                                                                                                                                                                                                                                                                          + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                          DcaUtil
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                          Search results

                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + diff --git a/namespaces/heimrichhannot-utilsbundle-util-file.html b/namespaces/heimrichhannot-utilsbundle-util-file.html new file mode 100644 index 00000000..96d22434 --- /dev/null +++ b/namespaces/heimrichhannot-utilsbundle-util-file.html @@ -0,0 +1,140 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                            Contao Utils Bundle

                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                            File

                                                                                                                                                                                                                                                                                                                                                                                                            + + + +

                                                                                                                                                                                                                                                                                                                                                                                                            + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                            FileUtil
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                            Search results

                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + diff --git a/namespaces/heimrichhannot-utilsbundle-util-htmlutil.html b/namespaces/heimrichhannot-utilsbundle-util-html.html similarity index 94% rename from namespaces/heimrichhannot-utilsbundle-util-htmlutil.html rename to namespaces/heimrichhannot-utilsbundle-util-html.html index 26a17aed..0355164d 100644 --- a/namespaces/heimrichhannot-utilsbundle-util-htmlutil.html +++ b/namespaces/heimrichhannot-utilsbundle-util-html.html @@ -90,7 +90,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                              Fil
                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                              HtmlUtil

                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                              Html

                                                                                                                                                                                                                                                                                                                                                                                                              @@ -101,7 +101,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                              GenerateDataAttributesStringOptions
                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              HtmlUtil
                                                                                                                                                                                                                                                                                                                                                                                                              @@ -125,7 +125,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                              Search results

                                                                                                                                                                                                                                                                                                                                                                                                              - + diff --git a/namespaces/heimrichhannot-utilsbundle-util-locale.html b/namespaces/heimrichhannot-utilsbundle-util-locale.html new file mode 100644 index 00000000..d27f7540 --- /dev/null +++ b/namespaces/heimrichhannot-utilsbundle-util-locale.html @@ -0,0 +1,140 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                              Contao Utils Bundle

                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                              Locale

                                                                                                                                                                                                                                                                                                                                                                                                              + + + +

                                                                                                                                                                                                                                                                                                                                                                                                              + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                              LocaleUtil
                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                              Search results

                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + diff --git a/namespaces/heimrichhannot-utilsbundle-util-model.html b/namespaces/heimrichhannot-utilsbundle-util-model.html new file mode 100644 index 00000000..02e3fff5 --- /dev/null +++ b/namespaces/heimrichhannot-utilsbundle-util-model.html @@ -0,0 +1,140 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                Contao Utils Bundle

                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                Model

                                                                                                                                                                                                                                                                                                                                                                                                                + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                ModelUtil
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                Search results

                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + diff --git a/namespaces/heimrichhannot-utilsbundle-util-request.html b/namespaces/heimrichhannot-utilsbundle-util-request.html new file mode 100644 index 00000000..c8cd5298 --- /dev/null +++ b/namespaces/heimrichhannot-utilsbundle-util-request.html @@ -0,0 +1,142 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                  Contao Utils Bundle

                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                  Request

                                                                                                                                                                                                                                                                                                                                                                                                                  + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                  + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                  RequestUtil
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  UrlUtil
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + diff --git a/namespaces/heimrichhannot-utilsbundle-util-dcautil.html b/namespaces/heimrichhannot-utilsbundle-util-routing.html similarity index 94% rename from namespaces/heimrichhannot-utilsbundle-util-dcautil.html rename to namespaces/heimrichhannot-utilsbundle-util-routing.html index 67cf58f5..d94bd844 100644 --- a/namespaces/heimrichhannot-utilsbundle-util-dcautil.html +++ b/namespaces/heimrichhannot-utilsbundle-util-routing.html @@ -90,7 +90,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                    Fil
                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                    DcaUtil

                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                    Routing

                                                                                                                                                                                                                                                                                                                                                                                                                    @@ -101,7 +101,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                    GetDcaFieldsOptions
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    RoutingUtil
                                                                                                                                                                                                                                                                                                                                                                                                                    @@ -125,7 +125,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                                                                                                                                                                                                                    - + diff --git a/namespaces/heimrichhannot-utilsbundle-util-type.html b/namespaces/heimrichhannot-utilsbundle-util-type.html new file mode 100644 index 00000000..3197b155 --- /dev/null +++ b/namespaces/heimrichhannot-utilsbundle-util-type.html @@ -0,0 +1,142 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                    Contao Utils Bundle

                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                    Type

                                                                                                                                                                                                                                                                                                                                                                                                                    + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                    + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                    ArrayUtil
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    StringUtil
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + diff --git a/namespaces/heimrichhannot-utilsbundle-util-ui.html b/namespaces/heimrichhannot-utilsbundle-util-ui.html new file mode 100644 index 00000000..34ab309e --- /dev/null +++ b/namespaces/heimrichhannot-utilsbundle-util-ui.html @@ -0,0 +1,140 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                      Contao Utils Bundle

                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                      Ui

                                                                                                                                                                                                                                                                                                                                                                                                                      + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                      + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                      AccordionUtil
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                      Search results

                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + diff --git a/namespaces/heimrichhannot-utilsbundle-util-user.html b/namespaces/heimrichhannot-utilsbundle-util-user.html new file mode 100644 index 00000000..91d449fd --- /dev/null +++ b/namespaces/heimrichhannot-utilsbundle-util-user.html @@ -0,0 +1,140 @@ + + + + + Contao Utils Bundle + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                        Contao Utils Bundle

                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                        User

                                                                                                                                                                                                                                                                                                                                                                                                                        + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                        + Interfaces, Classes and Traits + +

                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                        UserUtil
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + diff --git a/namespaces/heimrichhannot-utilsbundle-util.html b/namespaces/heimrichhannot-utilsbundle-util.html index 231d6f60..56a6cec7 100644 --- a/namespaces/heimrichhannot-utilsbundle-util.html +++ b/namespaces/heimrichhannot-utilsbundle-util.html @@ -98,10 +98,18 @@

                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          DcaUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          FormatterUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          HtmlUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          UserUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          Container
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          DatabaseUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          Dca
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          File
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          Html
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          Locale
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          Model
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          Request
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          Routing
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          Type
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          Ui
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          User

                                                                                                                                                                                                                                                                                                                                                                                                                          @@ -111,39 +119,11 @@

                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          AccordionUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          AnonymizeUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          ArrayUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          AbstractServiceSubscriber
                                                                                                                                                                                                                                                                                                                                                                                                                          ClassUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          ContainerUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          DatabaseUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          DcaUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          FileUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          FormatterUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          HtmlUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          LocaleUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          ModelUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          RequestUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          RoutingUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          StringUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          UrlUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          UserUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          Utils
                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/namespaces/heimrichhannot-utilsbundle.html b/namespaces/heimrichhannot-utilsbundle.html index 2f29b9ce..06985978 100644 --- a/namespaces/heimrichhannot-utilsbundle.html +++ b/namespaces/heimrichhannot-utilsbundle.html @@ -97,16 +97,49 @@

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          Accordion
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          Arrays
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          Cache
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          Choice
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          Classes
                                                                                                                                                                                                                                                                                                                                                                                                                          Command
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          Comparison
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          Container
                                                                                                                                                                                                                                                                                                                                                                                                                          ContaoManager
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          Content
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          Database
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          Date
                                                                                                                                                                                                                                                                                                                                                                                                                          Dca
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          DependencyInjection
                                                                                                                                                                                                                                                                                                                                                                                                                          Dom
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          Driver
                                                                                                                                                                                                                                                                                                                                                                                                                          EntityFinder
                                                                                                                                                                                                                                                                                                                                                                                                                          Event
                                                                                                                                                                                                                                                                                                                                                                                                                          EventListener
                                                                                                                                                                                                                                                                                                                                                                                                                          Exception
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          StaticUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          File
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          Form
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          Ics
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          Image
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          Location
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          Member
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          Model
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          Module
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          Page
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          Pagination
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          Pdf
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          PdfCreator
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          Request
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          Routing
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          Rsce
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          Salutation
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          Security
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          String
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          Template
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          Traits
                                                                                                                                                                                                                                                                                                                                                                                                                          Twig
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          Url
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          User
                                                                                                                                                                                                                                                                                                                                                                                                                          Util
                                                                                                                                                                                                                                                                                                                                                                                                                          @@ -117,6 +150,8 @@

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          HeimrichHannotContaoUtilsBundle
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          HeimrichHannotUtilsBundle
                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/packages/Application.html b/packages/Application.html index a243d73c..50bb05f1 100644 --- a/packages/Application.html +++ b/packages/Application.html @@ -97,10 +97,52 @@

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          HttpRequestInterface
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          AccordionUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          ArrayUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          DatabaseCacheUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          DatabaseTreeCache
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          FileCache
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          Class FileCache.
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          RemoteImageCache
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          UtilCacheWarmer
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          AbstractChoice
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          DataContainerChoice
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          FieldChoice
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          MessageChoice
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          ModelInstanceChoice
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          TwigTemplateChoice
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          ClassUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          CreateImageSizeItemsCommand
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          EntityFinderCommand
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          CompareUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          ContainerUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          Class ContainerUtil.
                                                                                                                                                                                                                                                                                                                                                                                                                          Plugin
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          ContentUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          DatabaseUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          DateUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          AbstractDcaField
                                                                                                                                                                                                                                                                                                                                                                                                                          @@ -111,10 +153,27 @@

                                                                                                                                                                                                                                                                                                                                                                                                                          DateAddedField
                                                                                                                                                                                                                                                                                                                                                                                                                          DcaFieldConfiguration
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          DcaUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          Configuration
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          HeimrichHannotUtilsExtension
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          UtilsBundleExtension
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          DOMLettersIterator
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          Iterates individual characters (Unicode codepoints) of DOM text and CDATA nodes +while keeping track of their position in the document.
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          DC_Table_Utils
                                                                                                                                                                                                                                                                                                                                                                                                                          EntityFinderHelper
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          AbstractEvent
                                                                                                                                                                                                                                                                                                                                                                                                                          ExtendEntityFinderEvent
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          RenderTwigTemplateEvent
                                                                                                                                                                                                                                                                                                                                                                                                                          AbstractDcaFieldListener
                                                                                                                                                                                                                                                                                                                                                                                                                          @@ -123,58 +182,144 @@

                                                                                                                                                                                                                                                                                                                                                                                                                          DcaAuthorListener
                                                                                                                                                                                                                                                                                                                                                                                                                          ExtendEntityFinderSubscriber
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          InitializeSystemListener
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          Hook("initializeSystem").
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          InsertTagsListener
                                                                                                                                                                                                                                                                                                                                                                                                                          InvalidUrlException
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          FileArchiveUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          FileStorage
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          FileStorageCallback
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          FileStorageUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          FileUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          FolderUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          FormUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          Class FormUtil.
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          HeimrichHannotContaoUtilsBundle
                                                                                                                                                                                                                                                                                                                                                                                                                          HeimrichHannotUtilsBundle
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          StaticArrayUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          IcsUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          ImageUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          LocationUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          MemberUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          TagModelBase
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          CfgTagModel
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          ModelUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          ModuleUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          PageUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          TextualPagination
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          AbstractPdfWriter
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          Class AbstractPdfWriter.
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          FPDIWriter
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          Class AbstractPdfWriter.
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          PdfPreview
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          PdfWriter
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          Class PdfWriter.
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          AbstractPdfCreator
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          Class AbstractPdfCreator.
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          BeforeCreateLibraryInstanceCallback
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          Class BeforeCreateLibraryInstanceCallback.
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          BeforeOutputPdfCallback
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          Class BeforeOutputPdfCallback.
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          MpdfCreator
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          Class MpdfCreator.
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          PdfCreatorFactory
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          Class PdfCreatorFactory.
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          CurlRequest
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          StaticClassUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          CurlRequestUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          SUtils
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          RequestUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          RoutingUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          RsceUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          SalutationUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          CodeUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          EncryptionUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          AnonymizerUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          Class AnonymizerUtil.
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          StringUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          Class StringUtil.
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          TemplateUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          ArrayExtension
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          DateExtension
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          DcaExtension
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          DownloadExtension
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          FileExtension
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          ImageExtension
                                                                                                                                                                                                                                                                                                                                                                                                                          StringExtension
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          AccordionUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          TestExtension
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          AnonymizeUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          UrlUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          ArrayUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          UserUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          Class UserUtil.
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          AbstractServiceSubscriber
                                                                                                                                                                                                                                                                                                                                                                                                                          ClassUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          ContainerUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          ContainerUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          DatabaseUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          GetDcaFieldsOptions
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          CreateWhereForSerializedBlobResult
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          DcaUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          DatabaseUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          FileUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          DcaUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          FormatDcaFieldValueOptions
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          FileUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          FormatterUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          HtmlUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          GenerateDataAttributesStringOptions
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          LocaleUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          HtmlUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          ModelUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          LocaleUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          RequestUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          ModelUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          UrlUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          RequestUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          RoutingUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          RoutingUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          ArrayUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          StringUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          StringUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          UrlUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          AccordionUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          UserUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          UserUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          Utils
                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/reports/deprecated.html b/reports/deprecated.html index 4dec5998..694cc6ff 100644 --- a/reports/deprecated.html +++ b/reports/deprecated.html @@ -94,18 +94,122 @@

                                                                                                                                                                                                                                                                                                                                                                                                                          Deprecated

                                                                                                                                                                                                                                                                                                                                                                                                                          Table of Contents

                                                                                                                                                                                                                                                                                                                                                                                                                          - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                          src/Util/ArrayUtil.phpsrc/Accordion/AccordionUtil.php
                                                                                                                                                                                                                                                                                                                                                                                                                          src/Util/ClassUtil.phpsrc/Arrays/ArrayUtil.php
                                                                                                                                                                                                                                                                                                                                                                                                                          src/Util/StringUtil.phpsrc/Cache/FileCache.php
                                                                                                                                                                                                                                                                                                                                                                                                                          src/Container/ContainerUtil.php
                                                                                                                                                                                                                                                                                                                                                                                                                          src/Database/DatabaseUtil.php
                                                                                                                                                                                                                                                                                                                                                                                                                          src/Dca/DcaUtil.php
                                                                                                                                                                                                                                                                                                                                                                                                                          src/File/FileUtil.php
                                                                                                                                                                                                                                                                                                                                                                                                                          src/Model/ModelUtil.php
                                                                                                                                                                                                                                                                                                                                                                                                                          src/Pdf/AbstractPdfWriter.php
                                                                                                                                                                                                                                                                                                                                                                                                                          src/Pdf/PdfWriter.php
                                                                                                                                                                                                                                                                                                                                                                                                                          src/PdfCreator/AbstractPdfCreator.php
                                                                                                                                                                                                                                                                                                                                                                                                                          src/PdfCreator/BeforeCreateLibraryInstanceCallback.php
                                                                                                                                                                                                                                                                                                                                                                                                                          src/PdfCreator/BeforeOutputPdfCallback.php
                                                                                                                                                                                                                                                                                                                                                                                                                          src/PdfCreator/Concrete/MpdfCreator.php
                                                                                                                                                                                                                                                                                                                                                                                                                          src/PdfCreator/PdfCreatorFactory.php
                                                                                                                                                                                                                                                                                                                                                                                                                          src/Request/RequestUtil.php
                                                                                                                                                                                                                                                                                                                                                                                                                          src/Routing/RoutingUtil.php
                                                                                                                                                                                                                                                                                                                                                                                                                          src/String/StringUtil.php
                                                                                                                                                                                                                                                                                                                                                                                                                          src/Url/UrlUtil.php
                                                                                                                                                                                                                                                                                                                                                                                                                          src/User/UserUtil.php
                                                                                                                                                                                                                                                                                                                                                                                                                          src/Util/Request/UrlUtil.php
                                                                                                                                                                                                                                                                                                                                                                                                                          src/Util/Type/StringUtil.php
                                                                                                                                                                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                                                                                                                                                                          ArrayUtil.php

                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                          AccordionUtil.php

                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                          LineElementReason
                                                                                                                                                                                                                                                                                                                                                                                                                          18AccordionUtil
                                                                                                                                                                                                                                                                                                                                                                                                                          145AccordionUtil::structureAccordionStartStop()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use Utils service instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                          ArrayUtil.php

                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                          LineElementReason
                                                                                                                                                                                                                                                                                                                                                                                                                          91ArrayUtil::removeValue()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use Utils service instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          125ArrayUtil::insertInArrayByName()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use utils service instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          215ArrayUtil::insertBeforeKey()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use Utils::insertBeforeKey() instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                          FileCache.php

                                                                                                                                                                                                                                                                                                                                                                                                                          @@ -114,26 +218,190 @@

                                                                                                                                                                                                                                                                                                                                                                                                                          ArrayUtil.php

                                                                                                                                                                                                                                                                                                                                                                                                                          - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                          Line
                                                                                                                                                                                                                                                                                                                                                                                                                          27ArrayUtil::insertBeforeKey()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use StaticArrayUtil::insertBeforeKey() instead.

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          FileCache

                                                                                                                                                                                                                                                                                                                                                                                                                          Will be removed in version 3.0. Use FileStorageUtil instead.

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          84FileCache::exist()

                                                                                                                                                                                                                                                                                                                                                                                                                          Will be removed in 3.0. Use FileStorageUtil instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          112FileCache::get()

                                                                                                                                                                                                                                                                                                                                                                                                                          Will be removed in 3.0. Use FileStorageUtil instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          151FileCache::generateCacheName()

                                                                                                                                                                                                                                                                                                                                                                                                                          Will be removed in 3.0. Use FileStorageUtil instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          175FileCache::getCacheFileName()

                                                                                                                                                                                                                                                                                                                                                                                                                          Will be removed in 3.0. Use FileStorageUtil instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          193FileCache::getCacheFilePath()

                                                                                                                                                                                                                                                                                                                                                                                                                          Will be removed in 3.0. Use FileStorageUtil instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          205FileCache::getAbsoluteCachePath()

                                                                                                                                                                                                                                                                                                                                                                                                                          Will be removed in 3.0. Use FileStorageUtil instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          213FileCache::getNamespace()

                                                                                                                                                                                                                                                                                                                                                                                                                          Will be removed in 3.0. Use FileStorageUtil instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          221FileCache::setNamespace()

                                                                                                                                                                                                                                                                                                                                                                                                                          Will be removed in 3.0. Use FileStorageUtil instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          232FileCache::getCacheFolder()

                                                                                                                                                                                                                                                                                                                                                                                                                          Will be removed in 3.0. Use FileStorageUtil instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          242FileCache::setCacheFolder()

                                                                                                                                                                                                                                                                                                                                                                                                                          Will be removed in 3.0. Use FileStorageUtil instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          253FileCache::getCacheFolderWithNamespace()

                                                                                                                                                                                                                                                                                                                                                                                                                          Will be removed in 3.0. Use FileStorageUtil instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                          ContainerUtil.php

                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - + + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                          LineElementReason
                                                                                                                                                                                                                                                                                                                                                                                                                          21ContainerUtil

                                                                                                                                                                                                                                                                                                                                                                                                                          use utils service instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          45ContainerUtil::getActiveBundles()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use kernel.bundles parameter or KernelInterface::getBundles()

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          59ContainerUtil::isBundleActive()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use utils service instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          71ContainerUtil::isBackend()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use utils service instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          83ContainerUtil::isFrontend()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use utils service instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          95ContainerUtil::isFrontendCron()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use utils service instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          107ContainerUtil::isInstall()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use utils service instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          119ContainerUtil::isDev()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use utils service instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          131ContainerUtil::getCurrentRequest()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use RequestStack::getCurrentRequest() instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          143ContainerUtil::log()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use utils service instead

                                                                                                                                                                                                                                                                                                                                                                                                                          52ArrayUtil::insertAfterKey()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use StaticArrayUtil::insertAfterKey() instead. -Beware: The option keys have changed!

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          157ContainerUtil::getProjectDir()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use KernelInterface::getProjectDir or kernel.project_dir parameter

                                                                                                                                                                                                                                                                                                                                                                                                                          66ArrayUtil::removeValue()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use StaticArrayUtil::removeValue() instead.

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          171ContainerUtil::getWebDir()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use contao.web_dir parameter

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          188ContainerUtil::getBundlePath()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use utils service instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          213ContainerUtil::getBundleResourcePath()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use utils service instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          234ContainerUtil::mergeConfigFile()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use ConfigPluginInterface with class_exist instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          256ContainerUtil::isMaintenanceModeActive()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use utils service instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          268ContainerUtil::isPreviewMode()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use utils service instead

                                                                                                                                                                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                                                                                                                                                                          ClassUtil.php

                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                          DatabaseUtil.php

                                                                                                                                                                                                                                                                                                                                                                                                                          @@ -141,14 +409,14 @@

                                                                                                                                                                                                                                                                                                                                                                                                                          ClassUtil.php

                                                                                                                                                                                                                                                                                                                                                                                                                          - - - + +
                                                                                                                                                                                                                                                                                                                                                                                                                          Line Reason
                                                                                                                                                                                                                                                                                                                                                                                                                          14ClassUtil::classImplementsTrait()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use StaticClassUtil::hasTrait() instead.

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          329DatabaseUtil::createWhereForSerializedBlob()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use Utils service instead

                                                                                                                                                                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                                                                                                                                                                          StringUtil.php

                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                          DcaUtil.php

                                                                                                                                                                                                                                                                                                                                                                                                                          @@ -156,15 +424,500 @@

                                                                                                                                                                                                                                                                                                                                                                                                                          StringUtil.php

                                                                                                                                                                                                                                                                                                                                                                                                                          - - - + + - - - + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                          Line Reason
                                                                                                                                                                                                                                                                                                                                                                                                                          220StringUtil::removeLeadingString()

                                                                                                                                                                                                                                                                                                                                                                                                                          Replace with userland code. Will be removed in the next major version.

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          114DcaUtil::getModalEditLink()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use DcaUtil::getPopupWizardLink() instead

                                                                                                                                                                                                                                                                                                                                                                                                                          242StringUtil::removeTrailingString()

                                                                                                                                                                                                                                                                                                                                                                                                                          Replace with userland code. Will be removed in the next major version.

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          153DcaUtil::getArchiveModalEditLink()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use DcaUtil::getPopupWizardLink() instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          423DcaUtil::setDateAdded()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use DateAddedField instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          441DcaUtil::setDateAddedOnCopy()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use DateAddedField instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          464DcaUtil::getFields()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use Utils service instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          768DcaUtil::addAuthorFieldAndCallback()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use AuthorField::register() instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                          FileUtil.php

                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                          LineElementReason
                                                                                                                                                                                                                                                                                                                                                                                                                          198FileUtil::getPathFromUuid()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use Utils::file instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          399FileUtil::getPreviewFromPdf()

                                                                                                                                                                                                                                                                                                                                                                                                                          Dublicate to PdfPreview util

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                          ModelUtil.php

                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                          LineElementReason
                                                                                                                                                                                                                                                                                                                                                                                                                          73ModelUtil::setDefaultsFromDca()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use DcaUtil::setDefaultsFromDca instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          89ModelUtil::findModelInstanceByPk()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use Utils service instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          114ModelUtil::findModelInstancesBy()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use Utils service instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          146ModelUtil::findOneModelInstanceBy()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use Utils service instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          178ModelUtil::findMultipleModelInstancesByIds()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use Utils service instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          206ModelUtil::findModelInstanceByIdOrAlias()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use Utils service instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          380ModelUtil::findParentsRecursively()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use Utils service instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          560ModelUtil::addPublishedCheckToModelArrays()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use Utils service instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                          AbstractPdfWriter.php

                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                          LineElementReason
                                                                                                                                                                                                                                                                                                                                                                                                                          18AbstractPdfWriter

                                                                                                                                                                                                                                                                                                                                                                                                                          Use PdfCreator instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                          PdfWriter.php

                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                          LineElementReason
                                                                                                                                                                                                                                                                                                                                                                                                                          20PdfWriter

                                                                                                                                                                                                                                                                                                                                                                                                                          Use PdfCreatorFactory::createInstance(MpdfCreator::getType()) instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                          AbstractPdfCreator.php

                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                          LineElementReason
                                                                                                                                                                                                                                                                                                                                                                                                                          16AbstractPdfCreator

                                                                                                                                                                                                                                                                                                                                                                                                                          PdfCreator was moved into it's own bundle (heimrichhannot/pdf-creator)

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                          BeforeCreateLibraryInstanceCallback.php

                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                          LineElementReason
                                                                                                                                                                                                                                                                                                                                                                                                                          16BeforeCreateLibraryInstanceCallback

                                                                                                                                                                                                                                                                                                                                                                                                                          PdfCreator was moved into it's own bundle (heimrichhannot/pdf-creator)

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                          BeforeOutputPdfCallback.php

                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                          LineElementReason
                                                                                                                                                                                                                                                                                                                                                                                                                          16BeforeOutputPdfCallback

                                                                                                                                                                                                                                                                                                                                                                                                                          PdfCreator was moved into it's own bundle (heimrichhannot/pdf-creator)

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                          MpdfCreator.php

                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                          LineElementReason
                                                                                                                                                                                                                                                                                                                                                                                                                          24MpdfCreator

                                                                                                                                                                                                                                                                                                                                                                                                                          PdfCreator was moved into it's own bundle (heimrichhannot/pdf-creator)

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          144MpdfCreator::addFontDirectories()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use addFont instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                          PdfCreatorFactory.php

                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                          LineElementReason
                                                                                                                                                                                                                                                                                                                                                                                                                          18PdfCreatorFactory

                                                                                                                                                                                                                                                                                                                                                                                                                          PdfCreator was moved into it's own bundle (heimrichhannot/pdf-creator)

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                          RequestUtil.php

                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                          LineElementReason
                                                                                                                                                                                                                                                                                                                                                                                                                          18RequestUtil

                                                                                                                                                                                                                                                                                                                                                                                                                          Use Utils service instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          38RequestUtil::isNewVisitor()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use Utils service instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                          RoutingUtil.php

                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                          LineElementReason
                                                                                                                                                                                                                                                                                                                                                                                                                          17RoutingUtil

                                                                                                                                                                                                                                                                                                                                                                                                                          Use Utils service instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          39RoutingUtil::generateBackendRoute()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use utils service instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                          StringUtil.php

                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                          LineElementReason
                                                                                                                                                                                                                                                                                                                                                                                                                          22StringUtil

                                                                                                                                                                                                                                                                                                                                                                                                                          Use Utils service instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          57StringUtil::startsWith()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use utils service instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          73StringUtil::endsWith()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use utils service instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          90StringUtil::camelCaseToDashed()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use utils service instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          105StringUtil::camelCaseToSnake()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use utils service instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          117StringUtil::randomChar()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use utils service instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          129StringUtil::randomLetter()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use utils service instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          141StringUtil::randomNumber()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use utils service instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          153StringUtil::random()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use utils service instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          167StringUtil::truncateHtml()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use utils service instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          284StringUtil::pregReplaceLast()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use utils service instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          294StringUtil::removeLeadingAndTrailingSlash()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use trim($string, "/") instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          304StringUtil::removeLeadingString()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use utils service instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          314StringUtil::removeTrailingString()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use utils service instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          330StringUtil::restoreBasicEntities()

                                                                                                                                                                                                                                                                                                                                                                                                                          use \Contao\StringUtil::restoreBasicEntities() instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          346StringUtil::convertToInlineCss()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use CssInliner-Library directly in your code. We recommend tijsverkoyen/css-to-inline-styles (https://github.com/tijsverkoyen/CssToInlineStyles)

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          365StringUtil::html2Text()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use html2text-library direct in your code, we recommend html2text/html2text (https://github.com/mtibben/html2text)

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          385StringUtil::lowerCase()

                                                                                                                                                                                                                                                                                                                                                                                                                          Deprecated in favor of custom callback that could be used with contao service callbacks

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          395StringUtil::ensureLineBreaks()

                                                                                                                                                                                                                                                                                                                                                                                                                          use locale util of utils service instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          413StringUtil::convertXmlToArray()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use utils service instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          432StringUtil::replaceUnicodeEmojisByHtml()

                                                                                                                                                                                                                                                                                                                                                                                                                          Will be removed in version 3.0. Use elvanto/litemoji (https://github.com/elvanto/litemoji) instead.

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          475StringUtil::replaceInsertTags()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use Controller::replaceInsertTags as adapter

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                          UrlUtil.php

                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                          LineElementReason
                                                                                                                                                                                                                                                                                                                                                                                                                          49UrlUtil::isNewVisitor()

                                                                                                                                                                                                                                                                                                                                                                                                                          please use RequestUtil::isNewVisitor() instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          91UrlUtil::addQueryString()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use Utils service instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          136UrlUtil::removeQueryString()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use utils service instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          304UrlUtil::prepareUrl()
                                                                                                                                                                                                                                                                                                                                                                                                                          379UrlUtil::getBaseUrl()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use Utils::request() instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                          UserUtil.php

                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                          LineElementReason
                                                                                                                                                                                                                                                                                                                                                                                                                          49UserUtil::findActiveByGroups()

                                                                                                                                                                                                                                                                                                                                                                                                                          use Utils service instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                          UrlUtil.php

                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                          LineElementReason
                                                                                                                                                                                                                                                                                                                                                                                                                          59UrlUtil::removeQueryStringParameterToUrl()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use removeQueryStringParameterFromUrl() instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                          StringUtil.php

                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                          LineElementReason
                                                                                                                                                                                                                                                                                                                                                                                                                          44StringUtil::startsWith()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use str_starts_with instead

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          57StringUtil::endsWith()

                                                                                                                                                                                                                                                                                                                                                                                                                          Use str_ends_with instead

                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/reports/errors.html b/reports/errors.html index be4e9e0f..52d9aba7 100644 --- a/reports/errors.html +++ b/reports/errors.html @@ -94,279 +94,14 @@

                                                                                                                                                                                                                                                                                                                                                                                                                          Errors

                                                                                                                                                                                                                                                                                                                                                                                                                          Table of Contents

                                                                                                                                                                                                                                                                                                                                                                                                                          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +
                                                                                                                                                                                                                                                                                                                                                                                                                          src/StaticUtil/StaticArrayUtil.php1
                                                                                                                                                                                                                                                                                                                                                                                                                          src/Util/ArrayUtil.php1
                                                                                                                                                                                                                                                                                                                                                                                                                          src/Util/DcaUtil.php1
                                                                                                                                                                                                                                                                                                                                                                                                                          src/Util/FileUtil.php1
                                                                                                                                                                                                                                                                                                                                                                                                                          src/Util/FormatterUtil.php2
                                                                                                                                                                                                                                                                                                                                                                                                                          src/Util/HtmlUtil.php1
                                                                                                                                                                                                                                                                                                                                                                                                                          src/Util/ModelUtil.php3
                                                                                                                                                                                                                                                                                                                                                                                                                          src/Util/RequestUtil.php2
                                                                                                                                                                                                                                                                                                                                                                                                                          src/Util/RoutingUtil.php1
                                                                                                                                                                                                                                                                                                                                                                                                                          src/Util/UrlUtil.phpsrc/Pdf/FPDIWriter.php 1
                                                                                                                                                                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                                                                                                                                                                          StaticArrayUtil.php

                                                                                                                                                                                                                                                                                                                                                                                                                          - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                          TypeLineDescription
                                                                                                                                                                                                                                                                                                                                                                                                                          ERROR0Tag "param" with body "@param array{ - strict?: bool, - attachMissingKey?: bool, - offset?: int -} $options Additional options" has error "\HeimrichHannot\UtilsBundle\StaticUtil\array{ - strict" is not a valid Fqsen.
                                                                                                                                                                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                                                                                                                                                                          ArrayUtil.php

                                                                                                                                                                                                                                                                                                                                                                                                                          - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                          TypeLineDescription
                                                                                                                                                                                                                                                                                                                                                                                                                          ERROR0Tag "param" with body "@param array{ - strict?: bool, - attachIfKeyNotExist?: bool, - offset?: int -} $options Additional options" has error "\HeimrichHannot\UtilsBundle\Util\array{ - strict" is not a valid Fqsen.
                                                                                                                                                                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                                                                                                                                                                          DcaUtil.php

                                                                                                                                                                                                                                                                                                                                                                                                                          - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                          TypeLineDescription
                                                                                                                                                                                                                                                                                                                                                                                                                          ERROR0Tag "param" with body "@param array{ - skip_subpalettes?: bool -} $options" has error "\HeimrichHannot\UtilsBundle\Util\array{ - skip_subpalettes" is not a valid Fqsen.
                                                                                                                                                                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                                                                                                                                                                          FileUtil.php

                                                                                                                                                                                                                                                                                                                                                                                                                          - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                          TypeLineDescription
                                                                                                                                                                                                                                                                                                                                                                                                                          ERROR0Tag "param" with body "@param array{ - checkIfExist?: bool, - absolutePath?: bool -} $options Pass additional options." has error "\HeimrichHannot\UtilsBundle\Util\array{ - checkIfExist" is not a valid Fqsen.
                                                                                                                                                                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                                                                                                                                                                          FormatterUtil.php

                                                                                                                                                                                                                                                                                                                                                                                                                          - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                          TypeLineDescription
                                                                                                                                                                                                                                                                                                                                                                                                                          ERROR0Tag "param" with body "@param callable(array|string|null $value): string $callback The callback to format each value, possibly - recursively." has error "\HeimrichHannot\UtilsBundle\Util\null $value" is not a valid Fqsen.
                                                                                                                                                                                                                                                                                                                                                                                                                          ERROR0Tag "param" with body "@param ?callable(int|string $field, array|string|null $value): string $callback - Callback used to format each field value, possibly recursively." has error "\HeimrichHannot\UtilsBundle\Util\string $field" is not a valid Fqsen.
                                                                                                                                                                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                                                                                                                                                                          HtmlUtil.php

                                                                                                                                                                                                                                                                                                                                                                                                                          - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                          TypeLineDescription
                                                                                                                                                                                                                                                                                                                                                                                                                          ERROR0Tag "param" with body "@param array{ - xhtml?: bool -} $options" has error "\HeimrichHannot\UtilsBundle\Util\array{ - xhtml" is not a valid Fqsen.
                                                                                                                                                                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                                                                                                                                                                          ModelUtil.php

                                                                                                                                                                                                                                                                                                                                                                                                                          - - - - - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                          TypeLineDescription
                                                                                                                                                                                                                                                                                                                                                                                                                          ERROR0Tag "param" with body "@param array{ - publishedField?: string, - startField?: string, - stopField?: string, - invertPublishedField?: bool, - invertStartStopFields?: bool, - ignoreFePreview?: bool -} $options pass additional options" has error "\HeimrichHannot\UtilsBundle\Util\array{ - publishedField" is not a valid Fqsen.
                                                                                                                                                                                                                                                                                                                                                                                                                          ERROR0Tag "param" with body "@param array{ - skipReplaceInsertTags?: bool -} $options" has error "\HeimrichHannot\UtilsBundle\Util\array{ - skipReplaceInsertTags" is not a valid Fqsen.
                                                                                                                                                                                                                                                                                                                                                                                                                          ERROR0Tag "param" with body "@param array{ - skipReplaceInsertTags?: bool -} $options" has error "\HeimrichHannot\UtilsBundle\Util\array{ - skipReplaceInsertTags" is not a valid Fqsen.
                                                                                                                                                                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                                                                                                                                                                          RequestUtil.php

                                                                                                                                                                                                                                                                                                                                                                                                                          - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                          TypeLineDescription
                                                                                                                                                                                                                                                                                                                                                                                                                          ERROR0Tag "param" with body "@param array{ - pageModel?: PageModel, - fallback?: string -} $context Pass additional context. Available content: pageModel, fallback" has error "\HeimrichHannot\UtilsBundle\Util\array{ - pageModel" is not a valid Fqsen.
                                                                                                                                                                                                                                                                                                                                                                                                                          ERROR0Tag "param" with body "@param array{ - throwException?: bool -} $options Pass addition options: Available options: throwException" has error "\HeimrichHannot\UtilsBundle\Util\array{ - throwException" is not a valid Fqsen.
                                                                                                                                                                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                                                                                                                                                                          RoutingUtil.php

                                                                                                                                                                                                                                                                                                                                                                                                                          - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                          TypeLineDescription
                                                                                                                                                                                                                                                                                                                                                                                                                          ERROR0Tag "param" with body "@param array{ - absoluteUrl?: bool, - route?: string -} $options Options" has error "\HeimrichHannot\UtilsBundle\Util\array{ - absoluteUrl" is not a valid Fqsen.
                                                                                                                                                                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                                                                                                                                                                          UrlUtil.php

                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                          FPDIWriter.php

                                                                                                                                                                                                                                                                                                                                                                                                                          @@ -379,10 +114,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                          UrlUtil.php

                                                                                                                                                                                                                                                                                                                                                                                                                          - +
                                                                                                                                                                                                                                                                                                                                                                                                                          ERROR 0Tag "param" with body "@param array{ - removeLeadingSlash?: bool -} $options Pass additional options" has error "\HeimrichHannot\UtilsBundle\Util\array{ - removeLeadingSlash" is not a valid Fqsen.Tag "return" with body "@return" has error Attempted to resolve "" but it appears to be empty
                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/reports/markers.html b/reports/markers.html index d6dbf3f7..6b26e3f5 100644 --- a/reports/markers.html +++ b/reports/markers.html @@ -91,10 +91,76 @@

                                                                                                                                                                                                                                                                                                                                                                                                                          Fil

                                                                                                                                                                                                                                                                                                                                                                                                                          Markers

                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          - No markers have been found in this project. -
                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                          Table of Contents

                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                          src/Choice/AbstractChoice.php1
                                                                                                                                                                                                                                                                                                                                                                                                                          src/Database/DatabaseUtil.php1
                                                                                                                                                                                                                                                                                                                                                                                                                          src/Dca/DcaUtil.php1
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                          AbstractChoice.php

                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                          TypeLineDescription
                                                                                                                                                                                                                                                                                                                                                                                                                          TODO123clear cache on delegated field save_callback
                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                          DatabaseUtil.php

                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                          TypeLineDescription
                                                                                                                                                                                                                                                                                                                                                                                                                          TODO710this makes no sense, yet
                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                          DcaUtil.php

                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                          TypeLineDescription
                                                                                                                                                                                                                                                                                                                                                                                                                          TODO1264dispatch event for custom