本文整理汇总了PHP中PMA_Theme::checkImgPath方法的典型用法代码示例。如果您正苦于以下问题:PHP PMA_Theme::checkImgPath方法的具体用法?PHP PMA_Theme::checkImgPath怎么用?PHP PMA_Theme::checkImgPath使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PMA_Theme
的用法示例。
在下文中一共展示了PMA_Theme::checkImgPath方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testCheckImgPathGlobalsWrongPath
/**
* @expectedException PHPUnit_Framework_Error
*/
public function testCheckImgPathGlobalsWrongPath()
{
$prevThemePath = $GLOBALS['cfg']['ThemePath'];
$GLOBALS['cfg']['ThemePath'] = 'no_themes';
$this->object->setPath('/this/is/wrong/path');
$this->object->checkImgPath();
$GLOBALS['cfg']['ThemePath'] = $prevThemePath;
}
示例2: load
/**
* returns theme object loaded from given folder
* or false if theme is invalid
*
* @static
* @param string path to theme
* @return object PMA_Theme
*/
function load($folder)
{
$theme = new PMA_Theme();
$theme->setPath($folder);
if (!$theme->loadInfo()) {
return false;
}
$theme->checkImgPath();
return $theme;
}