首先,我在这里,但这无济于事,因为
$this->getSkinUrl()
不是我想要的,因为它返回URL而不是路径
Mage::getBaseDir('skin');
返回皮肤基础目录,那里可能有很多主题..
我想确定当前的主题基础目录。
首先,我在这里,但这无济于事,因为
$this->getSkinUrl()
不是我想要的,因为它返回URL而不是路径
Mage::getBaseDir('skin');
返回皮肤基础目录,那里可能有很多主题..
我想确定当前的主题基础目录。
尝试这个:
Mage::getSingleton('core/design_package')->getSkinBaseDir()
可能有很多主题,但它将使用您配置的任何内容,并且会一直用到可能在 System > Config > Design 中使用的包/主题
如果您正在寻找目录,
Mage_Core_Model_Design_Package::getSkinBaseDir()
public function getSkinBaseDir(array $params=array())
{
$params['_type'] = 'skin';
$this->updateParamDefaults($params);
$baseDir = (empty($params['_relative']) ? Mage::getBaseDir('skin').DS : '').
$params['_area'].DS.$params['_package'].DS.$params['_theme'];
return $baseDir;
}
public function updateParamDefaults(array &$params)
{
if ($this->getStore()) {
$params['_store'] = $this->getStore();
}
if (empty($params['_area'])) {
$params['_area'] = $this->getArea();
}
if (empty($params['_package'])) {
$params['_package'] = $this->getPackageName();
}
if (empty($params['_theme'])) {
$params['_theme'] = $this->getTheme( (isset($params['_type'])) ? $params['_type'] : '' );
}
if (empty($params['_default'])) {
$params['_default'] = false;
}
return $this;
}
这是获取当前路径的方法
$_SERVER['DOCUMENT_ROOT'].parse_url($this->getSkinUrl(''),PHP_URL_PATH);
有关parse_url的更多详细信息