diff --git a/scripts/inflector.php b/scripts/inflector.php deleted file mode 100644 index 57ef6fb4..00000000 --- a/scripts/inflector.php +++ /dev/null @@ -1,57 +0,0 @@ - - * Copyright 2005-2008, Cake Software Foundation, Inc. - * 1785 E. Sahara Avenue, Suite 490-204 - * Las Vegas, Nevada 89104 - * Modified for Postfixadmin by Valkum - * - * Copyright 2010 - * - * Licensed under The MIT License - * Redistributions of files must retain the above copyright notice. - * - * @filesource - * @copyright Copyright 2005-2008, Cake Software Foundation, Inc. - * @link http://postfixadmin.sourceforge.net/ Postfixadmin on Sourceforge - * @package postfixadmin - * @subpackage - - * @since - - * @version $Revision$ - * @modifiedby $LastChangedBy$ - * @lastmodified $Date$ - * @license http://www.opensource.org/licenses/mit-license.php The MIT License - */ -class Inflector { -/** - * Returns given $lower_case_and_underscored_word as a CamelCased word. - * - * @param string $lower_case_and_underscored_word Word to camelize - * @return string Camelized word. LikeThis. - * @access public - * @static - */ - public static function camelize($lowerCaseAndUnderscoredWord) { - $replace = str_replace(" ", "", ucwords(str_replace("_", " ", $lowerCaseAndUnderscoredWord))); - return $replace; - } -/** - * Returns an underscore-syntaxed ($like_this_dear_reader) version of the $camel_cased_word. - * - * @param string $camel_cased_word Camel-cased word to be "underscorized" - * @return string Underscore-syntaxed version of the $camel_cased_word - * @access public - * @static - */ - public static function underscore($camelCasedWord) { - $replace = strtolower(preg_replace('/(?<=\\w)([A-Z])/', '_\\1', $camelCasedWord)); - return $replace; - } -} - diff --git a/scripts/postfixadmin-cli.php b/scripts/postfixadmin-cli.php index 52df767c..3a2e3dab 100644 --- a/scripts/postfixadmin-cli.php +++ b/scripts/postfixadmin-cli.php @@ -146,7 +146,6 @@ class PostfixAdmin { } define('DS', DIRECTORY_SEPARATOR); - define('PHP5', (PHP_VERSION >= 5)); define('CORE_INCLUDE_PATH', dirname(__FILE__)); define('CORE_PATH', dirname(CORE_INCLUDE_PATH) ); # CORE_INCLUDE_PATH/../ @@ -236,7 +235,7 @@ class PostfixAdmin { $this->shell = $this->args[0]; $this->shiftArgs(); - $this->shellName = Inflector::camelize($this->shell); + $this->shellName = ucfirst($this->shell); $this->shellClass = $this->shellName . 'Handler'; @@ -254,7 +253,7 @@ class PostfixAdmin { } $this->shellCommand = $command; - $this->shellClass = 'Cli' . Inflector::camelize($command); + $this->shellClass = 'Cli' . ucfirst($command); if (ucfirst($command) == 'Add' || ucfirst($command) == 'Update') { $this->shellClass = 'CliEdit'; @@ -274,7 +273,7 @@ class PostfixAdmin { return; } - $task = Inflector::camelize($command); + $task = ucfirst($command); $shell->new = 0; if ($task == 'Add') { diff --git a/scripts/shells/shell.php b/scripts/shells/shell.php index dd3a013d..9de37b45 100644 --- a/scripts/shells/shell.php +++ b/scripts/shells/shell.php @@ -128,17 +128,6 @@ class Shell { $this->name = str_replace(array('shell', 'Shell', 'task', 'Task'), '', $this->className); } - $shellKey = Inflector::underscore($this->className); - -# if (!PHP5 && isset($this->args[0])) { -# if(strpos($this->className, strtolower(Inflector::camelize($this->args[0]))) !== false) { -# $dispatch->shiftArgs(); -# } -# if (strtolower($this->command) == strtolower(Inflector::variable($this->args[0])) && method_exists($this, $this->command)) { -# $dispatch->shiftArgs(); -# } -# } - $this->Dispatch =& $dispatch; }