0byt3m1n1-V2
Path:
/
home
/
academiac
/
www
/
administrator
/
components
/
com_languages
/
controllers
/
[
Home
]
File: strings.json.php
<?php /** * @package Joomla.Administrator * @subpackage com_languages * @copyright Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ // Check to ensure this file is included in Joomla! defined('_JEXEC') or die; jimport('joomla.application.component.controlleradmin'); /** * Languages Strings JSON Controller * * @package Joomla.Administrator * @subpackage com_languages * @since 2.5 */ class LanguagesControllerStrings extends JControllerAdmin { /** * Constructor * * @param array An optional associative array of configuration settings * * @return void * * @since 2.5 */ public function __construct($config = array()) { parent::__construct($config); require_once JPATH_COMPONENT . '/helpers/jsonresponse.php'; } /** * Method for refreshing the cache in the database with the known language strings * * @return void * * @since 2.5 */ public function refresh() { echo new JJsonResponse($this->getModel('strings')->refresh()); } /** * Method for searching language strings * * @return void * * @since 2.5 */ public function search() { echo new JJsonResponse($this->getModel('strings')->search()); } }
©
2018.