Prefixes used from attribute
[core.git] / inc / classes / main / resolver / command / image / class_ImageCommandResolver.php
index 71c7a1b4b83b2b7dda4c2eff657e203a2f5f8181..fa23fda148506b781856fe0e89cc7495bb5424f2 100644 (file)
@@ -37,7 +37,7 @@ class ImageCommandResolver extends BaseCommandResolver implements CommandResolve
                parent::__construct(__CLASS__);
 
                // Set prefix to "Image"
                parent::__construct(__CLASS__);
 
                // Set prefix to "Image"
-               $this->setCommandPrefix("Image");
+               $this->setCommandPrefix('Image');
        }
 
        /**
        }
 
        /**
@@ -153,7 +153,7 @@ class ImageCommandResolver extends BaseCommandResolver implements CommandResolve
                $commandInstance = null;
 
                // Create class name
                $commandInstance = null;
 
                // Create class name
-               $className = 'Image' . $this->convertToClassName($commandName) . 'Command';
+               $className = $this->getCommandPrefix() . $this->convertToClassName($commandName) . 'Command';
 
                // Is this class loaded?
                if (!class_exists($this->getClassName())) {
 
                // Is this class loaded?
                if (!class_exists($this->getClassName())) {