* @license GNU General Public License version 2 or later; see LICENSE.txt */ namespace Joomla\Component\Finder\Administrator\Controller; use Joomla\CMS\Language\Text; use Joomla\CMS\MVC\Controller\BaseController; use Joomla\CMS\Session\Session; // phpcs:disable PSR1.Files.SideEffects \defined('_JEXEC') or die; // phpcs:enable PSR1.Files.SideEffects /** * Methods supporting a list of search terms. * * @since 4.0.0 */ class SearchesController extends BaseController { /** * Method to reset the search log table. * * @return void */ public function reset() { // Check for request forgeries. Session::checkToken() or jexit(Text::_('JINVALID_TOKEN')); $model = $this->getModel('Searches'); if (!$model->reset()) { $this->app->enqueueMessage($model->getError(), 'error'); } $this->setRedirect('index.php?option=com_finder&view=searches'); } }