deconstructIniKey() публичный статический Метод

Deconstructs an authentication ini section key into a named array with authentication parts.
public static deconstructIniKey ( string $key ) : array
$key string INI section key as found in authentication.ini
Результат array Array with named keys for controller, plugin and prefix
Пример #1
0
 /**
  * Deconstructs an ACL INI section key into a named array with ACL parts.
  *
  * @param string $key INI section key as found in acl.ini
  * @return array Array with named keys for controller, plugin and prefix
  */
 protected function _deconstructIniKey($key)
 {
     return Utility::deconstructIniKey($key);
 }