* @github Joomla Component Builder * @copyright Copyright (C) 2015 - 2018 Vast Development Method. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ // No direct access to this file defined('_JEXEC') or die('Restricted access'); // import Joomla controlleradmin library jimport('joomla.application.component.controlleradmin'); /** * Libraries Controller */ class ComponentbuilderControllerLibraries extends JControllerAdmin { protected $text_prefix = 'COM_COMPONENTBUILDER_LIBRARIES'; /** * Proxy for getModel. * @since 2.5 */ public function getModel($name = 'Library', $prefix = 'ComponentbuilderModel', $config = array()) { $model = parent::getModel($name, $prefix, array('ignore_request' => true)); return $model; } public function getSnippets() { // Check for request forgeries JSession::checkToken() or die(JText::_('JINVALID_TOKEN')); // redirect to the import snippets custom admin view $this->setRedirect(JRoute::_('index.php?option=com_componentbuilder&view=get_snippets', false)); return; } }