Your IP : 216.73.216.84


Current Path : /home/h/e/l/helpink/www/administrator/modules/mod_jbusinessdirectory_icons/
Upload File :
Current File : /home/h/e/l/helpink/www/administrator/modules/mod_jbusinessdirectory_icons/helper.php

<?php
/**
 * @package    J-BusinessDirectory
 *
 * @author     CMSJunkie http://www.cmsjunkie.com/
 * @copyright  Copyright (C) 2007 - 2022 CMSJunkie. All rights reserved.
 * @license    https://www.gnu.org/licenses/agpl-3.0.en.html
 */
defined('_JEXEC') or die('Restricted access');

abstract class modJBusinessAdminHelper {


    public static function getListings($state) {
        $db = JFactory::getDBO();
        $query = "select * 
				from #__jbusinessdirectory_companies cp 
                where cp.approved = $state 
                order by cp.id desc
                ";

        $db->setQuery($query, 0, 7);
		$items = $db->loadObjectlist();

        return $items;
    }
    
}