/
home
/
assocoweys
/
cdc93
/
plugins
/
system
/
nrframework
/
NRFramework
/
Conditions
/
Conditions
/
Component
/
Upload File
HOME
<?php /** * @author Tassos.gr * @link https://www.tassos.gr * @copyright Copyright © 2024 Tassos All Rights Reserved * @license GNU GPLv3 <http://www.gnu.org/licenses/gpl.html> or later */ namespace NRFramework\Conditions\Conditions\Component; defined('_JEXEC') or die; class RSBlogBase extends ComponentBase { /** * The component's Single Page view name * * @var string */ protected $viewSingle = 'post'; /** * The component's option name * * @var string */ protected $component_option = 'com_rsblog'; /** * Get single page's assosiated categories * * @param Integer The Single Page id * * @return array */ protected function getSinglePageCategories($id) { $db = $this->db; $query = $db->getQuery(true) ->select('cat_id') ->from('#__rsblog_posts_categories') ->where($db->quoteName('post_id') . '=' . $db->q($id)); $db->setQuery($query); return $db->loadColumn(); } }