| Current Path : /home/helpink/www/components/com_jbusinessdirectory/controllers/ |
| Current File : /home/helpink/www/components/com_jbusinessdirectory/controllers/ai.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');
// Require the admin controller
require_once JPATH_COMPONENT_ADMINISTRATOR . '/controllers/ai.php';
// Site controller now extends the admin controller
class JBusinessDirectoryControllerFrontAI extends JBusinessDirectoryControllerAI
{
// Site-specific overrides or additional methods can go here if needed in the future.
// For now, it inherits everything from the admin controller.
public function __construct() {
parent::__construct();
}
}