You are here

protected property ZfExtensionManagerSfContainer::$canonicalNamesReplacements in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Component/Bridge/ZfExtensionManagerSfContainer.php \Drupal\Component\Bridge\ZfExtensionManagerSfContainer::canonicalNamesReplacements

This property was based from Zend Framework (http://framework.zend.com/)

@link http://github.com/zendframework/zf2 for the canonical source repository @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com) @license http://framework.zend.com/license/new-bsd New BSD License

A map of characters to be replaced through strtr.

Type: array

See also

\Drupal\Component\Bridge\ZfExtensionManagerSfContainer::canonicalizeName().

File

core/lib/Drupal/Component/Bridge/ZfExtensionManagerSfContainer.php, line 32
Contains \Drupal\Component\Bridge\ZfExtensionManagerSfContainer.

Class

ZfExtensionManagerSfContainer
Defines a bridge between the ZF2 service manager to Symfony container.

Namespace

Drupal\Component\Bridge

Code

protected $canonicalNamesReplacements = array(
  '-' => '',
  '_' => '',
  ' ' => '',
  '\\' => '',
  '/' => '',
);