Файловый менеджер - Редактировать - /home/wuectly/www/03cbe/tag.zip
Назад
PK ��!]'1&-� � view.html.phpnu &1i� <?php /** * @package AcyMailing for Joomla! * @version 5.9.6 * @author acyba.com * @copyright (C) 2009-2018 ACYBA S.A.R.L. All rights reserved. * @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html */ defined('_JEXEC') or die('Restricted access'); ?><?php class TagViewTag extends acymailingView{ function display($tpl = null){ $function = $this->getLayout(); if(method_exists($this, $function)) $this->$function(); parent::display($tpl); } function tag(){ acymailing_addStyle(false, ACYMAILING_CSS.'frontendedition.css?v='.filemtime(ACYMAILING_MEDIA.'css'.DS.'frontendedition.css')); acymailing_importPlugin('acymailing'); $tagsfamilies = acymailing_trigger('acymailing_getPluginType'); $defaultFamily = reset($tagsfamilies); if(!is_object($defaultFamily)) $defaultFamily = end($tagsfamilies); $fctplug = acymailing_getUserVar(ACYMAILING_COMPONENT.".tag", 'fctplug', $defaultFamily->function, 'cmd'); ob_start(); $defaultContents = acymailing_trigger($fctplug); $defaultContent = ob_get_clean(); $js = 'function insertTag(){if(window.parent.insertTag(window.document.getElementById(\'tagstring\').value)) {acymailing.closeBox(true);}}'; $js .= 'function setTag(tagvalue){window.document.getElementById(\'tagstring\').value = tagvalue;}'; $js .= 'function showTagButton(){window.document.getElementById(\'insertButton\').style.display = \'inline\'; window.document.getElementById(\'tagstring\').style.display=\'inline\';}'; $js .= 'function hideTagButton(){}'; $js .= 'try{window.parent.previousSelection = window.parent.getPreviousSelection(); }catch(err){window.parent.previousSelection=false; }'; acymailing_addScript(true, $js); $this->fctplug = $fctplug; $type = acymailing_getVar('string', 'type', 'news'); $this->type = $type; $this->defaultContent = $defaultContent; $this->tagsfamilies = $tagsfamilies; $ctrl = acymailing_getVar('string', 'ctrl'); $this->ctrl = $ctrl; } function form(){ $plugin = acymailing_getVar('string', 'plugin'); $plugin = preg_replace('#[^a-zA-Z0-9_]#Uis', '', $plugin); $templatePath = ACYMAILING_MEDIA.'plugins'.DS.$plugin.'.php'; $body = ''; if(file_exists($templatePath)) $body = file_get_contents($templatePath); $help = acymailing_getVar('string', 'help'); $help = preg_replace('#[^a-zA-Z0-9]#Uis', '', $help); $help = empty($help) ? $plugin : $help; $this->help = $help; $this->plugin = $plugin; $this->body = $body; } } PK ��!]�b�% view.feed.phpnu &1i� <?php /** * @package Joomla.Site * @subpackage com_tags * * @copyright (C) 2013 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; /** * HTML View class for the Tags component * * @since 3.1 */ class TagsViewTag extends JViewLegacy { /** * Execute and display a template script. * * @param string $tpl The name of the template file to parse; automatically searches through the template paths. * * @return mixed A string if successful, otherwise an Error object. */ public function display($tpl = null) { $app = JFactory::getApplication(); $document = JFactory::getDocument(); $ids = (array) $app->input->get('id', array(), 'int'); $i = 0; $tagIds = ''; // Remove zero values resulting from input filter $ids = array_filter($ids); foreach ($ids as $id) { if ($i !== 0) { $tagIds .= '&'; } $tagIds .= 'id[' . $i . ']=' . $id; $i++; } $document->link = JRoute::_('index.php?option=com_tags&view=tag&' . $tagIds); $app->input->set('limit', $app->get('feed_limit')); $siteEmail = $app->get('mailfrom'); $fromName = $app->get('fromname'); $feedEmail = $app->get('feed_email', 'none'); $document->editor = $fromName; if ($feedEmail !== 'none') { $document->editorEmail = $siteEmail; } // Get some data from the model $items = $this->get('Items'); if ($items !== false) { foreach ($items as $item) { // Strip HTML from feed item title $title = $this->escape($item->core_title); $title = html_entity_decode($title, ENT_COMPAT, 'UTF-8'); // Strip HTML from feed item description text $description = $item->core_body; $author = $item->core_created_by_alias ?: $item->author; $date = ($item->displayDate ? date('r', strtotime($item->displayDate)) : ''); // Load individual item creator class $feeditem = new JFeedItem; $feeditem->title = $title; $feeditem->link = JRoute::_($item->link); $feeditem->description = $description; $feeditem->date = $date; $feeditem->category = $title; $feeditem->author = $author; if ($feedEmail === 'site') { $item->authorEmail = $siteEmail; } elseif ($feedEmail === 'author') { $item->authorEmail = $item->author_email; } // Loads item info into RSS array $document->addItem($feeditem); } } } } PK ��!]I��s tmpl/default.xmlnu &1i� <?xml version="1.0" encoding="utf-8"?> <metadata> <layout title="COM_TAGS_TAG_VIEW_DEFAULT_TITLE" option="COM_TAGS_TAG_VIEW_DEFAULT_OPTION"> <help key="JHELP_MENUS_MENU_ITEM_TAGS_ITEMS_LIST" /> <message> <![CDATA[COM_TAGS_TAG_VIEW_DEFAULT_DESC]]> </message> </layout> <!-- Add fields to the request variables for the layout. --> <fields name="request"> <fieldset name="request"> <field name="id" type="tag" label="COM_TAGS_FIELD_TAG_LABEL" description="COM_TAGS_FIELD_SELECT_TAG_DESC" mode="nested" required="true" multiple="true" /> <field name="types" type="contenttype" label="COM_TAGS_FIELD_TYPE_LABEL" description="COM_TAGS_FIELD_TYPE_DESC" multiple="true" /> <field name="tag_list_language_filter" type="contentlanguage" label="COM_TAGS_FIELD_LANGUAGE_FILTER_LABEL" description="COM_TAGS_FIELD_LANGUAGE_FILTER_DESC" default="" useglobal="true" > <option value="all">JALL</option> <option value="current_language">JCURRENT</option> </field> </fieldset> </fields> <!-- Add fields to the parameters object for the layout. --> <fields name="params"> <fieldset name="basic" label="COM_TAGS_OPTIONS"> <field name="show_tag_title" type="list" label="COM_TAGS_SHOW_TAG_TITLE_LABEL" description="COM_TAGS_SHOW_TAG_TITLE_DESC" useglobal="true" class="chzn-color" > <option value="0">JHIDE</option> <option value="1">JSHOW</option> </field> <field name="tag_list_show_tag_image" type="list" label="COM_TAGS_SHOW_TAG_IMAGE_LABEL" description="COM_TAGS_SHOW_TAG_IMAGE_DESC" useglobal="true" class="chzn-color" > <option value="0">JHIDE</option> <option value="1">JSHOW</option> </field> <field name="tag_list_show_tag_description" type="list" label="COM_TAGS_SHOW_TAG_DESCRIPTION_LABEL" description="COM_TAGS_SHOW_TAG_DESCRIPTION_DESC" useglobal="true" class="chzn-color" > <option value="0">JHIDE</option> <option value="1">JSHOW</option> </field> <field name="tag_list_image" type="media" label="COM_TAGS_TAG_LIST_MEDIA_LABEL" description="COM_TAGS_TAG_LIST_MEDIA_DESC" /> <field name="tag_list_description" type="textarea" class="inputbox" label="COM_TAGS_SHOW_TAG_LIST_DESCRIPTION_LABEL" description="COM_TAGS_TAG_LIST_DESCRIPTION_DESC" rows="3" cols="30" filter="safehtml" /> <field name="tag_list_orderby" type="list" label="JGLOBAL_FIELD_FIELD_ORDERING_LABEL" description="JGLOBAL_FIELD_FIELD_ORDERING_DESC" default="" useglobal="true" > <option value="c.core_title">JGLOBAL_TITLE</option> <option value="match_count">COM_TAGS_MATCH_COUNT</option> <option value="c.core_created_time">JGLOBAL_CREATED_DATE</option> <option value="c.core_modified_time">JGLOBAL_MODIFIED_DATE</option> <option value="c.core_publish_up">JGLOBAL_PUBLISHED_DATE</option> </field> <field name="tag_list_orderby_direction" type="list" label="JGLOBAL_ORDER_DIRECTION_LABEL" description="JGLOBAL_ORDER_DIRECTION_DESC" useglobal="true" > <option value="ASC">JGLOBAL_ORDER_ASCENDING</option> <option value="DESC">JGLOBAL_ORDER_DESCENDING</option> </field> </fieldset> <fieldset name="advanced" label="COM_TAGS_ITEM_OPTIONS"> <field name="spacer2" type="spacer" label="COM_TAGS_SUBSLIDER_DRILL_TAG_LIST_LABEL" class="text" /> <field name="tag_list_show_item_image" type="list" label="COM_TAGS_TAG_LIST_SHOW_ITEM_IMAGE_LABEL" description="COM_TAGS_TAG_LIST_SHOW_ITEM_IMAGE_DESC" useglobal="true" class="chzn-color" > <option value="0">JHIDE</option> <option value="1">JSHOW</option> </field> <field name="tag_list_show_item_description" type="list" label="COM_TAGS_TAG_LIST_SHOW_ITEM_DESCRIPTION_LABEL" description="COM_TAGS_TAG_LIST_SHOW_ITEM_DESCRIPTION_DESC" useglobal="true" class="chzn-color" > <option value="0">JHIDE</option> <option value="1">JSHOW</option> </field> <field name="tag_list_item_maximum_characters" type="number" label="COM_TAGS_LIST_MAX_CHARACTERS_LABEL" description="COM_TAGS_LIST_MAX_CHARACTERS_DESC" filter="integer" useglobal="true" /> <field name="filter_field" type="list" label="JGLOBAL_FILTER_FIELD_LABEL" description="JGLOBAL_FILTER_FIELD_DESC" default="" useglobal="true" class="chzn-color" > <option value="0">JHIDE</option> <option value="1">JSHOW</option> </field> </fieldset> <fieldset name="pagination" label="COM_TAGS_PAGINATION_OPTIONS"> <field name="show_pagination_limit" type="list" label="JGLOBAL_DISPLAY_SELECT_LABEL" description="JGLOBAL_DISPLAY_SELECT_DESC" useglobal="true" class="chzn-color" > <option value="0">JHIDE</option> <option value="1">JSHOW</option> </field> <field name="show_pagination" type="list" label="JGLOBAL_PAGINATION_LABEL" description="JGLOBAL_PAGINATION_DESC" useglobal="true" class="chzn-color" > <option value="0">JHIDE</option> <option value="1">JSHOW</option> <option value="2">JGLOBAL_AUTO</option> </field> <field name="show_pagination_results" type="list" label="JGLOBAL_PAGINATION_RESULTS_LABEL" description="JGLOBAL_PAGINATION_RESULTS_DESC" useglobal="true" class="chzn-color" > <option value="0">JHIDE</option> <option value="1">JSHOW</option> </field> </fieldset> <fieldset name="selection" label="COM_TAGS_LIST_SELECTION_OPTIONS"> <field name="return_any_or_all" type="list" label="COM_TAGS_SEARCH_TYPE_LABEL" description="COM_TAGS_SEARCH_TYPE_DESC" useglobal="true" > <option value="0">COM_TAGS_ALL</option> <option value="1">COM_TAGS_ANY</option> </field> <field name="include_children" type="list" label="COM_TAGS_INCLUDE_CHILDREN_LABEL" description="COM_TAGS_INCLUDE_CHILDREN_DESC" default="" useglobal="true" > <option value="0">COM_TAGS_EXCLUDE</option> <option value="1">COM_TAGS_INCLUDE</option> </field> </fieldset> <fieldset name="integration"> <field name="show_feed_link" type="list" label="JGLOBAL_SHOW_FEED_LINK_LABEL" description="JGLOBAL_SHOW_FEED_LINK_DESC" useglobal="true" class="chzn-color" > <option value="0">JHIDE</option> <option value="1">JSHOW</option> </field> </fieldset> </fields> </metadata> PK ��!]�?�_ _ tmpl/default.phpnu &1i� <?php /** * @package Joomla.Site * @subpackage com_tags * * @copyright (C) 2013 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; // Note that there are certain parts of this layout used only when there is exactly one tag. JHtml::addIncludePath(JPATH_COMPONENT . '/helpers'); $isSingleTag = count($this->item) === 1; ?> <div class="tag-category<?php echo $this->pageclass_sfx; ?>"> <?php if ($this->params->get('show_page_heading')) : ?> <h1> <?php echo $this->escape($this->params->get('page_heading')); ?> </h1> <?php endif; ?> <?php if ($this->params->get('show_tag_title', 1)) : ?> <h2> <?php echo JHtml::_('content.prepare', $this->tags_title, '', 'com_tag.tag'); ?> </h2> <?php endif; ?> <?php // We only show a tag description if there is a single tag. ?> <?php if (count($this->item) === 1 && ($this->params->get('tag_list_show_tag_image', 1) || $this->params->get('tag_list_show_tag_description', 1))) : ?> <div class="category-desc"> <?php $images = json_decode($this->item[0]->images); ?> <?php if ($this->params->get('tag_list_show_tag_image', 1) == 1 && !empty($images->image_fulltext)) : ?> <img src="<?php echo htmlspecialchars($images->image_fulltext, ENT_QUOTES, 'UTF-8'); ?>" alt="<?php echo htmlspecialchars($images->image_fulltext_alt, ENT_QUOTES, 'UTF-8'); ?>" /> <?php endif; ?> <?php if ($this->params->get('tag_list_show_tag_description') == 1 && $this->item[0]->description) : ?> <?php echo JHtml::_('content.prepare', $this->item[0]->description, '', 'com_tags.tag'); ?> <?php endif; ?> <div class="clr"></div> </div> <?php endif; ?> <?php // If there are multiple tags and a description or image has been supplied use that. ?> <?php if ($this->params->get('tag_list_show_tag_description', 1) || $this->params->get('show_description_image', 1)) : ?> <?php if ($this->params->get('show_description_image', 1) == 1 && $this->params->get('tag_list_image')) : ?> <img src="<?php echo htmlspecialchars($this->params->get('tag_list_image'), ENT_QUOTES, 'UTF-8'); ?>" /> <?php endif; ?> <?php if ($this->params->get('tag_list_description', '') > '') : ?> <?php echo JHtml::_('content.prepare', $this->params->get('tag_list_description'), '', 'com_tags.tag'); ?> <?php endif; ?> <?php endif; ?> <?php echo $this->loadTemplate('items'); ?> <?php if (($this->params->def('show_pagination', 1) == 1 || ($this->params->get('show_pagination') == 2)) && ($this->pagination->get('pages.total') > 1)) : ?> <div class="pagination"> <?php if ($this->params->def('show_pagination_results', 1)) : ?> <p class="counter pull-right"> <?php echo $this->pagination->getPagesCounter(); ?> </p> <?php endif; ?> <?php echo $this->pagination->getPagesLinks(); ?> </div> <?php endif; ?> </div> PK ��!]�& & tmpl/list.xmlnu &1i� <?xml version="1.0" encoding="utf-8"?> <metadata> <layout title="COM_TAGS_TAG_VIEW_LIST_COMPACT_TITLE" option="COM_TAGS_TAG_VIEW_LIST_COMPACT_OPTION"> <help key="JHELP_MENUS_MENU_ITEM_TAGS_ITEMS_COMPACT_LIST" /> <message> <![CDATA[COM_TAGS_TAG_VIEW_LIST_DESC]]> </message> </layout> <!-- Add fields to the request variables for the layout. --> <fields name="request"> <fieldset name="request"> <field name="id" type="tag" label="COM_TAGS_FIELD_TAG_LABEL" description="COM_TAGS_FIELD_SELECT_TAG_DESC" mode="nested" required="true" multiple="true" /> <field name="types" type="contenttype" label="COM_TAGS_FIELD_TYPE_LABEL" description="COM_TAGS_FIELD_TYPE_DESC" multiple="true" /> <field name="tag_list_language_filter" type="contentlanguage" label="COM_TAGS_FIELD_LANGUAGE_FILTER_LABEL" description="COM_TAGS_FIELD_LANGUAGE_FILTER_DESC" default="" useglobal="true" > <option value="all">JALL</option> <option value="current_language">JCURRENT</option> </field> </fieldset> </fields> <!-- Add fields to the parameters object for the layout. --> <fields name="params"> <fieldset name="basic" label="COM_TAGS_OPTIONS"> <field name="show_tag_title" type="list" label="COM_TAGS_SHOW_TAG_TITLE_LABEL" description="COM_TAGS_SHOW_TAG_TITLE_DESC" useglobal="true" class="chzn-color" > <option value="0">JHIDE</option> <option value="1">JSHOW</option> </field> <field name="tag_list_show_tag_image" type="list" label="COM_TAGS_SHOW_TAG_IMAGE_LABEL" description="COM_TAGS_SHOW_TAG_IMAGE_DESC" useglobal="true" class="chzn-color" > <option value="0">JHIDE</option> <option value="1">JSHOW</option> </field> <field name="tag_list_show_tag_description" type="list" label="COM_TAGS_SHOW_TAG_DESCRIPTION_LABEL" description="COM_TAGS_SHOW_TAG_DESCRIPTION_DESC" useglobal="true" class="chzn-color" > <option value="0">JHIDE</option> <option value="1">JSHOW</option> </field> <field name="tag_list_image" type="media" label="COM_TAGS_TAG_LIST_MEDIA_LABEL" description="COM_TAGS_TAG_LIST_MEDIA_DESC" /> <field name="tag_list_description" type="textarea" label="COM_TAGS_SHOW_TAG_LIST_DESCRIPTION_LABEL" description="COM_TAGS_TAG_LIST_DESCRIPTION_DESC" class="inputbox" rows="3" cols="30" filter="safehtml" /> <field name="tag_list_orderby" type="list" label="JGLOBAL_FIELD_FIELD_ORDERING_LABEL" description="JGLOBAL_FIELD_FIELD_ORDERING_DESC" default="" useglobal="true" > <option value="c.core_title">JGLOBAL_TITLE</option> <option value="match_count">COM_TAGS_MATCH_COUNT</option> <option value="c.core_created_time">JGLOBAL_CREATED_DATE</option> <option value="c.core_modified_time">JGLOBAL_MODIFIED_DATE</option> <option value="c.core_publish_up">JGLOBAL_PUBLISHED_DATE</option> </field> <field name="tag_list_orderby_direction" type="list" label="JGLOBAL_ORDER_DIRECTION_LABEL" description="JGLOBAL_ORDER_DIRECTION_DESC" useglobal="true" > <option value="ASC">JGLOBAL_ORDER_ASCENDING</option> <option value="DESC">JGLOBAL_ORDER_DESCENDING</option> </field> </fieldset> <fieldset name="advanced" label="JGLOBAL_LIST_LAYOUT_OPTIONS"> <field name="spacer2" type="spacer" label="COM_TAGS_SUBSLIDER_DRILL_TAG_LIST_LABEL" class="text" /> <field name="tag_list_show_item_image" type="list" label="COM_TAGS_TAG_LIST_SHOW_ITEM_IMAGE_LABEL" description="COM_TAGS_TAG_LIST_SHOW_ITEM_IMAGE_DESC" useglobal="true" class="chzn-color" > <option value="0">JHIDE</option> <option value="1">JSHOW</option> </field> <field name="tag_list_show_item_description" type="list" label="COM_TAGS_TAG_LIST_SHOW_ITEM_DESCRIPTION_LABEL" description="COM_TAGS_TAG_LIST_SHOW_ITEM_DESCRIPTION_DESC" useglobal="true" class="chzn-color" > <option value="0">JHIDE</option> <option value="1">JSHOW</option> </field> <field name="tag_list_item_maximum_characters" type="number" label="COM_TAGS_LIST_MAX_CHARACTERS_LABEL" description="COM_TAGS_LIST_MAX_CHARACTERS_DESC" filter="integer" useglobal="true" /> <field name="filter_field" type="list" label="JGLOBAL_FILTER_FIELD_LABEL" description="JGLOBAL_FILTER_FIELD_DESC" default="" useglobal="true" class="chzn-color" > <option value="0">JHIDE</option> <option value="1">JSHOW</option> </field> <field name="show_pagination_limit" type="list" label="JGLOBAL_DISPLAY_SELECT_LABEL" description="JGLOBAL_DISPLAY_SELECT_DESC" useglobal="true" class="chzn-color" > <option value="0">JHIDE</option> <option value="1">JSHOW</option> </field> <field name="display_num" type="list" label="COM_TAGS_FIELD_NUMBER_ITEMS_LIST_LABEL" description="COM_TAGS_FIELD_NUMBER_ITEMS_LIST_DESC" class="chzn-color" > <option value="">JGLOBAL_USE_GLOBAL</option> <option value="5">J5</option> <option value="10">J10</option> <option value="15">J15</option> <option value="20">J20</option> <option value="25">J25</option> <option value="30">J30</option> <option value="50">J50</option> <option value="100">J100</option> <option value="0">JALL</option> </field> <field name="show_pagination" type="list" label="JGLOBAL_PAGINATION_LABEL" description="JGLOBAL_PAGINATION_DESC" useglobal="true" class="chzn-color" > <option value="0">JHIDE</option> <option value="1">JSHOW</option> <option value="2">JGLOBAL_AUTO</option> </field> <field name="show_pagination_results" type="list" label="JGLOBAL_PAGINATION_RESULTS_LABEL" description="JGLOBAL_PAGINATION_RESULTS_DESC" useglobal="true" class="chzn-color" > <option value="0">JHIDE</option> <option value="1">JSHOW</option> </field> <field name="tag_list_show_date" type="list" label="JGLOBAL_SHOW_DATE_LABEL" description="JGLOBAL_SHOW_DATE_DESC" useglobal="true" class="chzn-color" > <option value="0">JHIDE</option> <option value="created">JGLOBAL_CREATED</option> <option value="modified">JGLOBAL_MODIFIED</option> <option value="published">JPUBLISHED</option> </field> <field name="date_format" type="text" label="JGLOBAL_DATE_FORMAT_LABEL" description="JGLOBAL_DATE_FORMAT_DESC" size="15" /> </fieldset> <fieldset name="selection" label="COM_TAGS_LIST_SELECTION_OPTIONS"> <field name="return_any_or_all" type="list" label="COM_TAGS_SEARCH_TYPE_LABEL" description="COM_TAGS_SEARCH_TYPE_DESC" useglobal="true" > <option value="0">COM_TAGS_ALL</option> <option value="1">COM_TAGS_ANY</option> </field> <field name="include_children" type="list" label="COM_TAGS_INCLUDE_CHILDREN_LABEL" description="COM_TAGS_INCLUDE_CHILDREN_DESC" default="" useglobal="true" > <option value="0">COM_TAGS_EXCLUDE</option> <option value="1">COM_TAGS_INCLUDE</option> </field> </fieldset> <fieldset name="integration"> <field name="show_feed_link" type="list" label="JGLOBAL_SHOW_FEED_LINK_LABEL" description="JGLOBAL_SHOW_FEED_LINK_DESC" useglobal="true" class="chzn-color" > <option value="0">JHIDE</option> <option value="1">JSHOW</option> </field> </fieldset> </fields> </metadata> PK ��!]\�5�/ / tmpl/list.phpnu &1i� <?php /** * @package Joomla.Site * @subpackage com_tags * * @copyright (C) 2013 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; // Note that there are certain parts of this layout used only when there is exactly one tag. JHtml::addIncludePath(JPATH_COMPONENT . '/helpers'); $n = count($this->items); ?> <div class="tag-category<?php echo $this->pageclass_sfx; ?>"> <?php if ($this->params->get('show_page_heading')) : ?> <h1> <?php echo $this->escape($this->params->get('page_heading')); ?> </h1> <?php endif; ?> <?php if ($this->params->get('show_tag_title', 1)) : ?> <h2> <?php echo JHtml::_('content.prepare', $this->tags_title, '', 'com_tag.tag'); ?> </h2> <?php endif; ?> <?php // We only show a tag description if there is a single tag. ?> <?php if (count($this->item) === 1 && ($this->params->get('tag_list_show_tag_image', 1) || $this->params->get('tag_list_show_tag_description', 1))) : ?> <div class="category-desc"> <?php $images = json_decode($this->item[0]->images); ?> <?php if ($this->params->get('tag_list_show_tag_image', 1) == 1 && !empty($images->image_fulltext)) : ?> <img src="<?php echo htmlspecialchars($images->image_fulltext, ENT_QUOTES, 'UTF-8'); ?>"> <?php endif; ?> <?php if ($this->params->get('tag_list_show_tag_description') == 1 && $this->item[0]->description) : ?> <?php echo JHtml::_('content.prepare', $this->item[0]->description, '', 'com_tags.tag'); ?> <?php endif; ?> <div class="clr"></div> </div> <?php endif; ?> <?php // If there are multiple tags and a description or image has been supplied use that. ?> <?php if ($this->params->get('tag_list_show_tag_description', 1) || $this->params->get('show_description_image', 1)) : ?> <?php if ($this->params->get('show_description_image', 1) == 1 && $this->params->get('tag_list_image')) : ?> <img src="<?php echo htmlspecialchars($this->params->get('tag_list_image'), ENT_QUOTES, 'UTF-8'); ?>"> <?php endif; ?> <?php if ($this->params->get('tag_list_description', '') > '') : ?> <?php echo JHtml::_('content.prepare', $this->params->get('tag_list_description'), '', 'com_tags.tag'); ?> <?php endif; ?> <?php endif; ?> <?php echo $this->loadTemplate('items'); ?> </div> PK ��!]/�� � tmpl/list_items.phpnu &1i� <?php /** * @package Joomla.Site * @subpackage com_tags * * @copyright (C) 2013 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; JHtml::_('behavior.core'); JHtml::_('formbehavior.chosen', 'select'); $listOrder = $this->escape($this->state->get('list.ordering')); $listDirn = $this->escape($this->state->get('list.direction')); JFactory::getDocument()->addScriptDeclaration(" var resetFilter = function() { document.getElementById('filter-search').value = ''; } "); ?> <form action="<?php echo htmlspecialchars(JUri::getInstance()->toString()); ?>" method="post" name="adminForm" id="adminForm"> <?php if ($this->params->get('filter_field') || $this->params->get('show_pagination_limit')) : ?> <fieldset class="filters btn-toolbar"> <?php if ($this->params->get('filter_field')) : ?> <div class="btn-group"> <label class="filter-search-lbl element-invisible" for="filter-search"> <?php echo JText::_('COM_TAGS_TITLE_FILTER_LABEL') . ' '; ?> </label> <input type="text" name="filter-search" id="filter-search" value="<?php echo $this->escape($this->state->get('list.filter')); ?>" class="inputbox" onchange="document.adminForm.submit();" title="<?php echo JText::_('COM_TAGS_FILTER_SEARCH_DESC'); ?>" placeholder="<?php echo JText::_('COM_TAGS_TITLE_FILTER_LABEL'); ?>" /> <button type="button" name="filter-search-button" title="<?php echo JText::_('JSEARCH_FILTER_SUBMIT'); ?>" onclick="document.adminForm.submit();" class="btn"> <span class="icon-search"></span> </button> <button type="reset" name="filter-clear-button" title="<?php echo JText::_('JSEARCH_FILTER_CLEAR'); ?>" class="btn" onclick="resetFilter(); document.adminForm.submit();"> <span class="icon-remove"></span> </button> </div> <?php endif; ?> <?php if ($this->params->get('show_pagination_limit')) : ?> <div class="btn-group pull-right"> <label for="limit" class="element-invisible"> <?php echo JText::_('JGLOBAL_DISPLAY_NUM'); ?> </label> <?php echo $this->pagination->getLimitBox(); ?> </div> <?php endif; ?> <input type="hidden" name="filter_order" value="" /> <input type="hidden" name="filter_order_Dir" value="" /> <input type="hidden" name="limitstart" value="" /> <input type="hidden" name="task" value="" /> <div class="clearfix"></div> </fieldset> <?php endif; ?> <?php if (empty($this->items)) : ?> <p><?php echo JText::_('COM_TAGS_NO_ITEMS'); ?></p> <?php else : ?> <table class="category table table-striped table-bordered table-hover"> <?php if ($this->params->get('show_headings')) : ?> <thead> <tr> <th id="categorylist_header_title"> <?php echo JHtml::_('grid.sort', 'JGLOBAL_TITLE', 'c.core_title', $listDirn, $listOrder); ?> </th> <?php if ($date = $this->params->get('tag_list_show_date')) : ?> <th id="categorylist_header_date"> <?php if ($date === 'created') : ?> <?php echo JHtml::_('grid.sort', 'COM_TAGS_' . $date . '_DATE', 'c.core_created_time', $listDirn, $listOrder); ?> <?php elseif ($date === 'modified') : ?> <?php echo JHtml::_('grid.sort', 'COM_TAGS_' . $date . '_DATE', 'c.core_modified_time', $listDirn, $listOrder); ?> <?php elseif ($date === 'published') : ?> <?php echo JHtml::_('grid.sort', 'COM_TAGS_' . $date . '_DATE', 'c.core_publish_up', $listDirn, $listOrder); ?> <?php endif; ?> </th> <?php endif; ?> </tr> </thead> <?php endif; ?> <tbody> <?php foreach ($this->items as $i => $item) : ?> <?php if ($item->core_state == 0) : ?> <tr class="system-unpublished cat-list-row<?php echo $i % 2; ?>"> <?php else : ?> <tr class="cat-list-row<?php echo $i % 2; ?>"> <?php endif; ?> <td <?php if ($this->params->get('show_headings')) echo "headers=\"categorylist_header_title\""; ?> class="list-title"> <a href="<?php echo JRoute::_($item->link); ?>"> <?php echo $this->escape($item->core_title); ?> </a> <?php if ($item->core_state == 0) : ?> <span class="list-published label label-warning"> <?php echo JText::_('JUNPUBLISHED'); ?> </span> <?php endif; ?> </td> <?php if ($this->params->get('tag_list_show_date')) : ?> <td headers="categorylist_header_date" class="list-date small"> <?php echo JHtml::_( 'date', $item->displayDate, $this->escape($this->params->get('date_format', JText::_('DATE_FORMAT_LC3'))) ); ?> </td> <?php endif; ?> </tr> <?php endforeach; ?> </tbody> </table> <?php // Add pagination links ?> <?php if (($this->params->def('show_pagination', 2) == 1 || ($this->params->get('show_pagination') == 2)) && ($this->pagination->pagesTotal > 1)) : ?> <div class="pagination"> <?php if ($this->params->def('show_pagination_results', 1)) : ?> <p class="counter pull-right"> <?php echo $this->pagination->getPagesCounter(); ?> </p> <?php endif; ?> <?php echo $this->pagination->getPagesLinks(); ?> </div> <?php endif; ?> <?php endif; ?> </form> PK ��!]��6�q q tmpl/default_items.phpnu &1i� <?php /** * @package Joomla.Site * @subpackage com_tags * * @copyright (C) 2013 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; JHtml::_('behavior.core'); JHtml::_('formbehavior.chosen', 'select'); // Get the user object. $user = JFactory::getUser(); // Check if user is allowed to add/edit based on tags permissions. // Do we really have to make it so people can see unpublished tags??? $canEdit = $user->authorise('core.edit', 'com_tags'); $canCreate = $user->authorise('core.create', 'com_tags'); $canEditState = $user->authorise('core.edit.state', 'com_tags'); JFactory::getDocument()->addScriptDeclaration(" var resetFilter = function() { document.getElementById('filter-search').value = ''; } "); ?> <form action="<?php echo htmlspecialchars(JUri::getInstance()->toString()); ?>" method="post" name="adminForm" id="adminForm" class="form-inline"> <?php if ($this->params->get('show_headings') || $this->params->get('filter_field') || $this->params->get('show_pagination_limit')) : ?> <fieldset class="filters btn-toolbar"> <?php if ($this->params->get('filter_field')) : ?> <div class="btn-group"> <label class="filter-search-lbl element-invisible" for="filter-search"> <?php echo JText::_('COM_TAGS_TITLE_FILTER_LABEL') . ' '; ?> </label> <input type="text" name="filter-search" id="filter-search" value="<?php echo $this->escape($this->state->get('list.filter')); ?>" class="inputbox" onchange="document.adminForm.submit();" title="<?php echo JText::_('COM_TAGS_FILTER_SEARCH_DESC'); ?>" placeholder="<?php echo JText::_('COM_TAGS_TITLE_FILTER_LABEL'); ?>" /> <button type="button" name="filter-search-button" title="<?php echo JText::_('JSEARCH_FILTER_SUBMIT'); ?>" onclick="document.adminForm.submit();" class="btn"> <span class="icon-search"></span> </button> <button type="reset" name="filter-clear-button" title="<?php echo JText::_('JSEARCH_FILTER_CLEAR'); ?>" class="btn" onclick="resetFilter(); document.adminForm.submit();"> <span class="icon-remove"></span> </button> </div> <?php endif; ?> <?php if ($this->params->get('show_pagination_limit')) : ?> <div class="btn-group pull-right"> <label for="limit" class="element-invisible"> <?php echo JText::_('JGLOBAL_DISPLAY_NUM'); ?> </label> <?php echo $this->pagination->getLimitBox(); ?> </div> <?php endif; ?> <input type="hidden" name="filter_order" value="" /> <input type="hidden" name="filter_order_Dir" value="" /> <input type="hidden" name="limitstart" value="" /> <input type="hidden" name="task" value="" /> <div class="clearfix"></div> </fieldset> <?php endif; ?> <?php if (empty($this->items)) : ?> <p><?php echo JText::_('COM_TAGS_NO_ITEMS'); ?></p> <?php else : ?> <ul class="category list-striped"> <?php foreach ($this->items as $i => $item) : ?> <?php if ($item->core_state == 0) : ?> <li class="system-unpublished cat-list-row<?php echo $i % 2; ?>"> <?php else : ?> <li class="cat-list-row<?php echo $i % 2; ?> clearfix"> <?php endif; ?> <?php if (($item->type_alias === 'com_users.category') || ($item->type_alias === 'com_banners.category')) : ?> <h3> <?php echo $this->escape($item->core_title); ?> </h3> <?php else : ?> <h3> <a href="<?php echo JRoute::_($item->link); ?>"> <?php echo $this->escape($item->core_title); ?> </a> </h3> <?php endif; ?> <?php // Content is generated by content plugin event "onContentAfterTitle" ?> <?php echo $item->event->afterDisplayTitle; ?> <?php $images = json_decode($item->core_images); ?> <?php if ($this->params->get('tag_list_show_item_image', 1) == 1 && !empty($images->image_intro)) : ?> <a href="<?php echo JRoute::_($item->link); ?>"> <img src="<?php echo htmlspecialchars($images->image_intro); ?>" alt="<?php echo htmlspecialchars($images->image_intro_alt); ?>"> </a> <?php endif; ?> <?php if ($this->params->get('tag_list_show_item_description', 1)) : ?> <?php // Content is generated by content plugin event "onContentBeforeDisplay" ?> <?php echo $item->event->beforeDisplayContent; ?> <span class="tag-body"> <?php echo JHtml::_('string.truncate', $item->core_body, $this->params->get('tag_list_item_maximum_characters')); ?> </span> <?php // Content is generated by content plugin event "onContentAfterDisplay" ?> <?php echo $item->event->afterDisplayContent; ?> <?php endif; ?> </li> <?php endforeach; ?> </ul> <?php endif; ?> </form> PK 6�!]�#o, , index.htmlnu &1i� <html><body bgcolor="#FFFFFF"></body></html>PK 6�!]5�Mj j tmpl/form.phpnu &1i� <?php /** * @package AcyMailing for Joomla! * @version 5.9.6 * @author acyba.com * @copyright (C) 2009-2018 ACYBA S.A.R.L. All rights reserved. * @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html */ defined('_JEXEC') or die('Restricted access'); ?><div id="acy_content"> <form action="<?php echo acymailing_completeLink(acymailing_getVar('cmd', 'ctrl')); ?>" method="post" name="adminForm" id="adminForm" autocomplete="off"> <?php $toolbar = acymailing_get('helper.toolbar'); $toolbar->help('plugin-'.$this->help); $toolbar->divider(); $toolbar->custom('apply', acymailing_translation('ACY_SAVE', true), 'save', false); $toolbar->topfixed = false; $toolbar->setTitle(acymailing_translation('ACY_CUSTOMTEMPLATE')); $toolbar->display(); ?> <div id="iframedoc" style="clear:both;position:relative;"></div> <div class="onelineblockoptions"> <table class="acymailing_table" width="100%"> <tr> <td class="paramlist_key"> <label for="subject"> <?php echo acymailing_translation('TEMPLATE_NAME'); ?> </label> </td> <td class="paramlist_value"> <?php echo $this->plugin; ?>.php </td> </tr> </table> </div> <fieldset class="adminform" style="width:95%;" id="textfieldset"> <legend><?php echo acymailing_translation('ACY_TEMPLATE'); ?></legend> <textarea style="width:99%;height:250px;" rows="16" name="templatebody" id="templatebody"><?php echo $this->body; ?></textarea> </fieldset> <div class="clr"></div> <input type="hidden" name="plugin" value="<?php echo $this->plugin; ?>"/> <?php acymailing_formOptions(); ?> </form> </div> PK 6�!]�#o, , tmpl/index.htmlnu &1i� <html><body bgcolor="#FFFFFF"></body></html>PK 6�!]ct�m� � tmpl/tag.phpnu &1i� <?php /** * @package AcyMailing for Joomla! * @version 5.9.6 * @author acyba.com * @copyright (C) 2009-2018 ACYBA S.A.R.L. All rights reserved. * @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html */ defined('_JEXEC') or die('Restricted access'); ?><style type="text/css"> body{ height: auto; min-width: 650px !important; } html{ overflow-y: auto; } .rt-container, .rt-block{ width: auto !important; background-color: #f6f7f9 !important; } </style> <div id="acy_content"> <div id="acymailing_edit" class="acytagpopup"> <?php if(empty($this->tagsfamilies)) acymailing_checkPluginsFolders(); ?> <table width="100%"> <tr> <td class="familymenu" valign="top"> <?php foreach($this->tagsfamilies as $id => $oneFamily){ if(empty($oneFamily)) continue; if($oneFamily->function == $this->fctplug){ $help = empty($oneFamily->help) ? '' : $oneFamily->help; $class = ' class="selected" '; }else $class = ''; echo '<a'.$class.' href="'.acymailing_completeLink($this->ctrl.'&task=tag&type='.$this->type.'&fctplug='.$oneFamily->function, true).'" >'.$oneFamily->name.'</a>'; } ?> </td> <?php if(!empty($help) AND acymailing_isAdmin()){ ?> <td valign="top"> <div style="float:right;padding-right:5px;" class="toolbar"> <?php $toolbar = acymailing_get('helper.toolbar'); $toolbar->help($help); ?> <button onclick="displayDoc();return false;" class="toolbar acymailing_button" style="margin-bottom: 5px;"><i class="acyicon-help" style="margin: 0px 5px;" title="<?php echo acymailing_translation('ACY_HELP'); ?>"></i><?php echo acymailing_translation('ACY_HELP'); ?></button> </div> </td> <?php } ?> </tr> </table> <div id="iframedoc" style="clear:both;position:relative;"></div> <div id="inserttagdiv"> <input type="text" class="inputbox" style="width:300px;" id="tagstring" name="tagstring" value="" onclick="this.select();"> <button class="acymailing_button" id="insertButton" onclick="insertTag();"><?php echo acymailing_translation('INSERT_TAG') ?></button> </div> <form action="<?php echo acymailing_completeLink(acymailing_getVar('cmd', 'ctrl')); ?>" method="post" name="adminForm" id="adminForm" autocomplete="off" enctype="multipart/form-data"> <div id="plugarea"> <?php echo $this->defaultContent; ?> </div> <div class="clr"></div> <input type="hidden" id="fctplug" name="fctplug" value="<?php echo $this->fctplug; ?>"/> <input type="hidden" name="type" value="<?php echo $this->type; ?>"/> <input type="hidden" name="defaulttask" value="tag"/> <?php acymailing_formOptions(); ?> </form> </div> </div> PK ��!]'1&-� � view.html.phpnu &1i� PK ��!]�b�% � view.feed.phpnu &1i� PK ��!]I��s tmpl/default.xmlnu &1i� PK ��!]�?�_ _ h. tmpl/default.phpnu &1i� PK ��!]�& & : tmpl/list.xmlnu &1i� PK ��!]\�5�/ / jX tmpl/list.phpnu &1i� PK ��!]/�� � �a tmpl/list_items.phpnu &1i� PK ��!]��6�q q �v tmpl/default_items.phpnu &1i� PK 6�!]�#o, , {� index.htmlnu &1i� PK 6�!]5�Mj j � tmpl/form.phpnu &1i� PK 6�!]�#o, , �� tmpl/index.htmlnu &1i� PK 6�!]ct�m� � � tmpl/tag.phpnu &1i� PK � ͛
| ver. 1.4 |
Github
|
.
| PHP 8.1.34 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка