Pimcore\ExtensionManager::getPathForExtension PHP Метод

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

public static getPathForExtension ( $id, $type ) : string
$id
$type
Результат string
    public static function getPathForExtension($id, $type)
    {
        $extensionDir = "";
        if ($type == "plugin") {
            $extensionDir = PIMCORE_PLUGINS_PATH . "/" . $id;
        } elseif ($type == "brick") {
            $brickDirs = self::getBrickDirectories();
            $extensionDir = $brickDirs[$id];
        }
        return $extensionDir;
    }

Usage Example

Пример #1
0
 /**
  * @see Model\Document\Tag\TagInterface::frontend
  */
 public function frontend()
 {
     $count = 0;
     $options = $this->getOptions();
     // don't show disabled bricks
     if (!ExtensionManager::isEnabled("brick", $options["type"]) && $options['dontCheckEnabled'] != true) {
         return;
     }
     $this->setupStaticEnvironment();
     $suffixes = \Zend_Registry::get("pimcore_tag_block_current");
     $suffixes[] = $this->getName();
     \Zend_Registry::set("pimcore_tag_block_current", $suffixes);
     $this->current = $count;
     // create info object and assign it to the view
     $info = null;
     try {
         $info = new Area\Info();
         $info->setTag($this);
         $info->setId($options["type"]);
         $info->setIndex($count);
         $info->setPath(str_replace(PIMCORE_DOCUMENT_ROOT, "", ExtensionManager::getPathForExtension($options["type"], "brick")));
         $info->setConfig(ExtensionManager::getBrickConfig($options["type"]));
     } catch (\Exception $e) {
         $info = null;
     }
     $suffixes = \Zend_Registry::get("pimcore_tag_block_numeration");
     $suffixes[] = 1;
     \Zend_Registry::set("pimcore_tag_block_numeration", $suffixes);
     if ($this->getView() instanceof \Zend_View) {
         $this->getView()->brick = $info;
         $areas = $this->getAreaDirs();
         $view = $areas[$options["type"]] . "/view.php";
         $action = $areas[$options["type"]] . "/action.php";
         $edit = $areas[$options["type"]] . "/edit.php";
         $options = $this->getOptions();
         $params = array();
         if (is_array($options["params"]) && array_key_exists($options["type"], $options["params"])) {
             if (is_array($options["params"][$options["type"]])) {
                 $params = $options["params"][$options["type"]];
             }
         }
         // assign parameters to view
         foreach ($params as $key => $value) {
             $this->getView()->assign($key, $value);
         }
         // check for action file
         if (is_file($action)) {
             include_once $action;
             $actionClassFound = true;
             $actionClassname = "\\Pimcore\\Model\\Document\\Tag\\Area\\" . ucfirst($options["type"]);
             if (!Tool::classExists($actionClassname, false)) {
                 // also check the legacy prefixed class name, as this is used by some plugins
                 $actionClassname = "\\Document_Tag_Area_" . ucfirst($options["type"]);
                 if (!Tool::classExists($actionClassname, false)) {
                     $actionClassFound = false;
                 }
             }
             if ($actionClassFound) {
                 $actionObject = new $actionClassname();
                 if ($actionObject instanceof Area\AbstractArea) {
                     $actionObject->setView($this->getView());
                     $areaConfig = new \Zend_Config_Xml($areas[$options["type"]] . "/area.xml");
                     $actionObject->setConfig($areaConfig);
                     // params
                     $params = array_merge($this->view->getAllParams(), $params);
                     $actionObject->setParams($params);
                     if ($info) {
                         $actionObject->setBrick($info);
                     }
                     if (method_exists($actionObject, "action")) {
                         $actionObject->action();
                     }
                     $this->getView()->assign('actionObject', $actionObject);
                 }
             }
         }
         if (is_file($view)) {
             $editmode = $this->getView()->editmode;
             if (method_exists($actionObject, "getBrickHtmlTagOpen")) {
                 echo $actionObject->getBrickHtmlTagOpen($this);
             } else {
                 echo '<div class="pimcore_area_' . $options["type"] . ' pimcore_area_content">';
             }
             if (is_file($edit) && $editmode) {
                 echo '<div class="pimcore_area_edit_button"></div>';
                 // forces the editmode in view.php independent if there's an edit.php or not
                 if (!array_key_exists("forceEditInView", $params) || !$params["forceEditInView"]) {
                     $this->getView()->editmode = false;
                 }
             }
             $this->getView()->template($view);
             if (is_file($edit) && $editmode) {
                 $this->getView()->editmode = true;
                 echo '<div class="pimcore_area_editmode pimcore_area_editmode_hidden">';
                 $this->getView()->template($edit);
                 echo '</div>';
             }
             if (method_exists($actionObject, "getBrickHtmlTagClose")) {
                 echo $actionObject->getBrickHtmlTagClose($this);
             } else {
                 echo '</div>';
             }
             if (is_object($actionObject) && method_exists($actionObject, "postRenderAction")) {
                 $actionObject->postRenderAction();
             }
         }
     }
     $suffixes = \Zend_Registry::get("pimcore_tag_block_numeration");
     array_pop($suffixes);
     \Zend_Registry::set("pimcore_tag_block_numeration", $suffixes);
     $suffixes = \Zend_Registry::get("pimcore_tag_block_current");
     array_pop($suffixes);
     \Zend_Registry::set("pimcore_tag_block_current", $suffixes);
 }
All Usage Examples Of Pimcore\ExtensionManager::getPathForExtension