mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Adding $dotAppend to pluginSplit()
This commit is contained in:
parent
db0c030557
commit
20a114a1cd
2 changed files with 17 additions and 3 deletions
|
@ -216,14 +216,19 @@ if (!function_exists('array_combine')) {
|
||||||
* Splits a dot syntax plugin name into its plugin and classname.
|
* Splits a dot syntax plugin name into its plugin and classname.
|
||||||
* If $name does not have a dot, then index 0 will be null.
|
* If $name does not have a dot, then index 0 will be null.
|
||||||
*
|
*
|
||||||
* Commonly used like `list($plugin, $name) = pluginSplit($name);
|
* Commonly used like `list($plugin, $name) = pluginSplit($name);`
|
||||||
*
|
*
|
||||||
* @param string $name The name you want to plugin split.
|
* @param string $name The name you want to plugin split.
|
||||||
|
* @param boolean $dotAppend Set to true if you want the plugin to have a '.' appended to it.
|
||||||
* @return array Array with 2 indexes. 0 => plugin name, 1 => classname
|
* @return array Array with 2 indexes. 0 => plugin name, 1 => classname
|
||||||
*/
|
*/
|
||||||
function pluginSplit($name) {
|
function pluginSplit($name, $dotAppend = false) {
|
||||||
if (strpos($name, '.') !== false) {
|
if (strpos($name, '.') !== false) {
|
||||||
return explode('.', $name, 2);
|
$parts = explode('.', $name, 2);
|
||||||
|
if ($dotAppend) {
|
||||||
|
$parts[0] .= '.';
|
||||||
|
}
|
||||||
|
return $parts;
|
||||||
}
|
}
|
||||||
return array(null, $name);
|
return array(null, $name);
|
||||||
}
|
}
|
||||||
|
|
|
@ -773,9 +773,18 @@ class BasicsTest extends CakeTestCase {
|
||||||
function testPluginSplit() {
|
function testPluginSplit() {
|
||||||
$result = pluginSplit('Something.else');
|
$result = pluginSplit('Something.else');
|
||||||
$this->assertEqual($result, array('Something', 'else'));
|
$this->assertEqual($result, array('Something', 'else'));
|
||||||
|
|
||||||
|
$result = pluginSplit('Something.else.more.dots');
|
||||||
|
$this->assertEqual($result, array('Something', 'else.more.dots'));
|
||||||
|
|
||||||
$result = pluginSplit('Somethingelse');
|
$result = pluginSplit('Somethingelse');
|
||||||
$this->assertEqual($result, array(null, 'Somethingelse'));
|
$this->assertEqual($result, array(null, 'Somethingelse'));
|
||||||
|
|
||||||
|
$result = pluginSplit('Something.else', true);
|
||||||
|
$this->assertEqual($result, array('Something.', 'else'));
|
||||||
|
|
||||||
|
$result = pluginSplit('Something.else.more.dots', true);
|
||||||
|
$this->assertEqual($result, array('Something.', 'else.more.dots'));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
?>
|
?>
|
Loading…
Reference in a new issue