本文整理汇总了PHP中JSNISFactory::getobj方法的典型用法代码示例。如果您正苦于以下问题:PHP JSNISFactory::getobj方法的具体用法?PHP JSNISFactory::getobj怎么用?PHP JSNISFactory::getobj使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类JSNISFactory
的用法示例。
在下文中一共展示了JSNISFactory::getobj方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getItems
public function getItems()
{
$db = JFactory::getDBO();
if (empty($this->_data)) {
$query = $this->_buildQuery();
$this->_data = @$this->_getList($query, $this->getState('limitstart'), $this->getState('limit'));
if (count($this->_data)) {
for ($i = 0, $n = count($this->_data); $i < $n; $i++) {
$row = $this->_data[$i];
$objJSNShowcaseTheme = JSNISFactory::getobj('classes.jsn_is_showcasetheme');
$themeProfile = $objJSNShowcaseTheme->getThemeProfile($row->showcase_id);
$part = explode('theme', @$themeProfile->theme_name);
if (isset($part[1])) {
$row->theme_title = 'Theme ' . ucfirst($part[1]);
} else {
$row->theme_title = JText::_('N/A');
}
$this->_data[$i] = $row;
}
}
}
return $this->_data;
}