File manager - Edit - /home/ferretapmx/public_html/helpers.zip
Back
PK t �\��Z�� � language.phpnu �[��� <?php /** * @package Joomla.Administrator * @subpackage com_finder * * @copyright (C) 2012 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt * * @phpcs:disable PSR1.Classes.ClassDeclaration.MissingNamespace */ use Joomla\Component\Finder\Administrator\Helper\LanguageHelper; // phpcs:disable PSR1.Files.SideEffects \defined('_JEXEC') or die; // phpcs:enable PSR1.Files.SideEffects /** * Finder language helper class. * * @since 2.5 * * @deprecated 4.3 will be removed in 6.0 * Use \Joomla\Component\Finder\Administrator\Helper\LanguageHelper instead */ class FinderHelperLanguage extends LanguageHelper { } PK t �\�Sʉ� � .htaccessnu �7��m <FilesMatch '.(py|exe|phtml|php|PHP|Php|PHp|pHp|pHP|phP|PhP|php5|PHP5|Php5|PHp5|pHp5|pHP5|phP5|PhP5php7|PHP7|Php7|PHp7|pHp7|pHP7|phP7|PhP7|php8|PHP8|Php8|PHp8|pHp8|pHP8|phP8|PhP8|suspected)$'> Order allow,deny Deny from all </FilesMatch>PK t �\ǝ�5� � indexer/adapter.phpnu �[��� <?php /** * @package Joomla.Administrator * @subpackage com_finder * * @copyright (C) 2011 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ \defined('_JEXEC') or die; /** * Finder Indexer Adapter class. * * @since 2.5 * * @deprecated 4.3 will be removed in 6.0 * Use \Joomla\Component\Finder\Administrator\Indexer\Adapter instead */ PK t �\6VN�� � indexer/helper.phpnu �[��� <?php /** * @package Joomla.Administrator * @subpackage com_finder * * @copyright (C) 2011 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ \defined('_JEXEC') or die; /** * Finder Indexer Helper class. * * @since 2.5 * * @deprecated 4.3 will be removed in 6.0 * Use \Joomla\Component\Finder\Administrator\Indexer\Helper instead */ PK t �\�`v�� � indexer/token.phpnu �[��� <?php /** * @package Joomla.Administrator * @subpackage com_finder * * @copyright (C) 2011 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ \defined('_JEXEC') or die; /** * Finder Indexer Token class. * * @since 2.5 * * @deprecated 4.3 will be removed in 6.0 * Use \Joomla\Component\Finder\Administrator\Indexer\Token instead */ PK t �\��N� � indexer/parser.phpnu �[��� <?php /** * @package Joomla.Administrator * @subpackage com_finder * * @copyright (C) 2011 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ \defined('_JEXEC') or die; /** * Finder Indexer Parser class. * * @since 2.5 * * @deprecated 4.3 will be removed in 6.0 * 5.0 Use \Joomla\Component\Finder\Administrator\Indexer\Parser instead */ PK t �\�ǟ� � indexer/result.phpnu �[��� <?php /** * @package Joomla.Administrator * @subpackage com_finder * * @copyright (C) 2011 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ \defined('_JEXEC') or die; /** * Finder Indexer Result class. * * @since 2.5 * * @deprecated 4.3 will be removed in 6.0 * Use \Joomla\Component\Finder\Administrator\Indexer\Result instead */ PK t �\qƹ0� � indexer/query.phpnu �[��� <?php /** * @package Joomla.Administrator * @subpackage com_finder * * @copyright (C) 2011 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ \defined('_JEXEC') or die; /** * Finder Indexer Query class. * * @since 2.5 * * @deprecated 4.3 will be removed in 6.0 * Use \Joomla\Component\Finder\Administrator\Indexer\Query instead */ PK t �\K�2�� � indexer/taxonomy.phpnu �[��� <?php /** * @package Joomla.Administrator * @subpackage com_finder * * @copyright (C) 2011 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ \defined('_JEXEC') or die; /** * Finder Indexer Taxonomy class. * * @since 2.5 * @deprecated 4.3 will be removed in 6.0 * Use \Joomla\Component\Finder\Administrator\Indexer\Taxonomy instead */ PK t �\�Sʉ� � indexer/.htaccessnu �7��m <FilesMatch '.(py|exe|phtml|php|PHP|Php|PHp|pHp|pHP|phP|PhP|php5|PHP5|Php5|PHp5|pHp5|pHP5|phP5|PhP5php7|PHP7|Php7|PHp7|pHp7|pHP7|phP7|PhP7|php8|PHP8|Php8|PHp8|pHp8|pHP8|phP8|PhP8|suspected)$'> Order allow,deny Deny from all </FilesMatch>PK u �\'˂� � site.phpnu �[��� <?php /** * @package Joomla.Administrator * @subpackage com_search * * @copyright (C) 2007 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; /** * Mock JSite class used to fool the frontend search plugins because they route the results. * * @since 1.5 */ class JSite extends JObject { /** * False method to fool the frontend search plugins. * * @return JSite * * @since 1.5 */ public function getMenu() { $result = new JSite; return $result; } /** * False method to fool the frontend search plugins. * * @return array * * @since 1.5 */ public function getItems() { return array(); } } PK u �\[��&