Файловый менеджер - Редактировать - /home/wuectly/www/03cbe/tpls.zip
Назад
PK q�!]Ρ��� � profile.phpnu &1i� <?php /** *------------------------------------------------------------------------------ * @package T3 Framework for Joomla! *------------------------------------------------------------------------------ * @copyright Copyright (C) 2004-2013 JoomlArt.com. All Rights Reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt * @authors JoomlArt, JoomlaBamboo, (contribute to this project at github * & Google group to become co-author) * @Google group: https://groups.google.com/forum/#!forum/t3fw * @Link: http://t3-framework.org *------------------------------------------------------------------------------ */ // no direct access defined ( '_JEXEC' ) or die ( 'Restricted access' ); $javersion = new JVersion; ?> <script type="text/javascript"> !function($){ var JAFileConfig = window.JAFileConfig || {}; JAFileConfig.profiles = <?php echo json_encode($jsonData)?>; JAFileConfig.mod_url = '<?php echo JURI::base(true) ?>/modules/<?php echo $module; ?>/helper.php'; JAFileConfig.template = '<?php echo $template ?>'; JAFileConfig.langs = <?php json_encode(array( 'confirmCancel' => JText::_('ARE_YOUR_SURE_TO_CANCEL'), 'enterName' => JText::_('ENTER_PROFILE_NAME'), 'correctName' => JText::_('PROFILE_NAME_NOT_EMPTY'), 'confirmDelete' => JText::_('CONFIRM_DELETE_PROFILE') )); ?>; $(window).on('load', function(){ JAFileConfig.initialize('jformparams<?php echo str_replace('holder', '', $this->fieldname);?>'); JAFileConfig.changeProfile($('jformparams<?php echo str_replace('holder', '', $this->fieldname);?>').val()); }); }(jQuery); </script> <div class="t3-profile"> <label class="hasTip" for="jform_params_<?php echo $this->field_name?>" id="jform_params_<?php echo $this->field_name?>-lbl" title="<?php echo JText::_($this->element['description'])?>"><?php echo JText::_($this->element["label"])?></label> <?php echo $profileHTML; ?> <div class="profile_action"> <span class="clone"> <a href="javascript:void(0)" onclick="JAFileConfig.cloneProfile()" title="<?php echo JText::_('CLONE_DESC')?>"><?php echo JText::_('Clone')?></a> </span> | <span class="delete"> <a href="javascript:void(0)" onclick="JAFileConfig.deleteProfile()" title="<?php echo JText::_('DELETE_DESC')?>"><?php echo JText::_('Delete')?></a> </span> </div> </div> <?php if($javersion->isCompatible('3.0')) : ?> </div> </div> <?php else : ?> </li> <?php endif; ?> <?php $fieldSets = $t3form->getFieldsets('params'); foreach ($fieldSets as $name => $fieldSet) : if (isset($fieldSet->description) && trim($fieldSet->description)){ echo '<p class="tip">'.JText::_($fieldSet->description).'</p>'; } $hidden_fields = ''; foreach ($t3form->getFieldset($name) as $field) : if (!$field->hidden) : if($javersion->isCompatible('3.0')) : ?> <div class="control-group t3-control-group"> <div class="control-label t3-control-label"> <?php else: ?> <li> <?php endif; echo $t3form->getLabel($field->fieldname,$field->group); if($javersion->isCompatible('3.0')) : ?> </div> <div class="controls t3-controls"> <?php endif; echo $t3form->getInput($field->fieldname,$field->group); if($javersion->isCompatible('3.0')) : ?> </div> </div> <?php else: ?> </li> <?php endif; else : $hidden_fields .= $t3form->getInput($field->fieldname,$field->group); endif; endforeach; echo $hidden_fields; endforeach; ?> <?php if($javersion->isCompatible('3.0')) : ?> <div class="control-group t3-control-group hide"> <div class="control-label t3-control-label"></div> <div class="controls t3-controls"> <?php else: ?> <li> <?php endif; ?> <script type="text/javascript"> // <![CDATA[ window.addEvent('load', function(){ Joomla.submitbutton = function(task){ if (task == 'module.cancel' || document.formvalidator.isValid(document.getElementById('module-form'))) { if(task != 'module.cancel' && document.formvalidator.isValid(document.getElementById('module-form'))){ JAFileConfig.saveProfile(task); }else if(task == 'module.cancel' || document.formvalidator.isValid(document.getElementById('module-form'))){ Joomla.submitform(task, document.getElementById('module-form')); } if (self != top) { window.top.setTimeout('window.parent.SqueezeBox.close()', 1000); } } else { alert('Invalid form'); } } }); // ]]> </script> PK t"]�λ� � default_assignment.phpnu &1i� <?php /** *------------------------------------------------------------------------------ * @package T3 Framework for Joomla! *------------------------------------------------------------------------------ * @copyright Copyright (C) 2004-2013 JoomlArt.com. All Rights Reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt * @authors JoomlArt, JoomlaBamboo, (contribute to this project at github * & Google group to become co-author) * @Google group: https://groups.google.com/forum/#!forum/t3fw * @Link: http://t3-framework.org *------------------------------------------------------------------------------ */ defined('_JEXEC') or die; use Joomla\CMS\Language\Text; // Initiasile related data. require_once JPATH_ADMINISTRATOR.'/components/com_menus/helpers/menus.php'; $menuTypes = MenusHelper::getMenuLinks(); $user = JFactory::getUser(); ?> <div class="t3-admin-assignment clearfix"> <div class="t3-admin-fieldset-desc"> <?php echo Text::_('T3_MENUS_ASSIGNMENT_DESC'); ?> </div> <div class="control-group t3-control-group"> <div class="control-label t3-control-label"> <label id="jform_menuselect-lbl" for="jform_menuselect"><?php echo Text::_('JGLOBAL_MENU_SELECTION'); ?></label> </div> <div class="controls t3-controls"> <div class="btn-toolbar"> <button type="button" class="btn" onclick="jQuery('.chk-menulink').each(function(idx,el) { el.checked = !el.checked; });"> <i class="icon-checkbox-partial"></i> <?php echo Text::_('JGLOBAL_SELECTION_INVERT'); ?> </button> </div> <div id="menu-assignment"> <ul class="menu-links thumbnails"> <?php foreach ($menuTypes as &$type) : ?> <li class="span3"> <div class="thumbnail"> <h5><?php echo $type->title ? $type->title : $type->menutype; ?> <a href="javascript://" class="menu-assignment-toggle" title="<?php echo Text::_('JGLOBAL_SELECTION_INVERT'); ?>"> <i class="icon-checkbox-partial"></i> </a> </h5> <?php // foreach ($type->links as $link) :?> <?php for ($i=0; $i<count ($type->links) ; $i++) : $link = $type->links[$i]; $next = $i < count ($type->links) - 1 ? $type->links[$i+1] : null; ?> <label class="checkbox small level<?php echo $link->level ?>" data-level="<?php echo $link->level ?>" for="link<?php echo (int) $link->value;?>" > <input type="checkbox" name="jform[assigned][]" value="<?php echo (int) $link->value;?>" id="link<?php echo (int) $link->value;?>"<?php if ($link->template_style_id == $form->getValue('id')):?> checked="checked"<?php endif;?><?php if ($link->checked_out && $link->checked_out != $user->id):?> disabled="disabled"<?php else:?> class="chk-menulink "<?php endif;?> /> <?php echo $link->text; ?> <?php if ($next && $next->level > $link->level) : ?> <a href="javascript://" class="menu-assignment-toggle" title="<?php echo Text::_('JGLOBAL_SELECTION_INVERT'); ?>"> <i class="icon-checkbox-partial"></i> </a> <a href="javascript://" title="<?php echo Text::_('T3_GLOBAL_TOGGLE_FOLDING'); ?>"> <i class="menu-tree-toggle icon-minus"></i> </a> <?php endif ?> </label> <?php endfor; ?> <?php // endforeach; ?> </div> </li> <?php endforeach; ?> </ul> </div> </div> </div> </div> PK t"]���d default_j4.phpnu &1i� <?php /** *------------------------------------------------------------------------------ * @package T3 Framework for Joomla! *------------------------------------------------------------------------------ * @copyright Copyright (C) 2004-2013 JoomlArt.com. All Rights Reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt * @authors JoomlArt, JoomlaBamboo, (contribute to this project at github * & Google group to become co-author) * @Google group: https://groups.google.com/forum/#!forum/t3fw * @Link: http://t3-framework.org *------------------------------------------------------------------------------ */ use Joomla\CMS\HTML\HTMLHelper; use Joomla\CMS\Language\Text; defined('_JEXEC') or die; JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html'); JHtml::_('behavior.formvalidator'); JHtml::_('behavior.keepalive'); JHtml::_('behavior.tooltip'); $user = JFactory::getUser(); $canDo = method_exists('TemplatesHelper', 'getActions') ? TemplatesHelper::getActions() : JHelperContent::getActions('com_templates'); $iswritable = is_writable('t3test.txt'); ?> <?php if($iswritable): ?> <div id="t3-admin-writable-message" class="alert warning"> <button type="button" class="close" data-dismiss="alert">×</button> <strong><?php echo Text::_('T3_MSG_WARNING'); ?></strong> <?php echo Text::_('T3_MSG_FILE_NOT_WRITABLE'); ?> </div> <?php endif;?> <div class="t3-admin-form clearfix"> <form action="<?php echo JRoute::_('index.php?option=com_templates&layout=edit&id='.$input->getInt('id')); ?>" method="post" name="adminForm" id="style-form" class="form-validate form-horizontal"> <div class="t3-admin-header clearfix"> <div class="controls-row"> <div class="control-group t3-control-group"> <div class="control-label t3-control-label"> <label id="t3-styles-list-lbl" for="t3-styles-list" class="hasTooltip" title="<?php echo Text::_('T3_SELECT_STYLE_DESC'); ?>"><?php echo Text::_('T3_SELECT_STYLE_LABEL'); ?></label> </div> <div class="controls t3-controls"> <?php echo JHTML::_('select.genericlist', $styles, 't3-styles-list', 'autocomplete="off"', 'id', 'title', $input->get('id')); ?> </div> </div> <div class="control-group t3-control-group"> <div class="control-label t3-control-label"> <?php echo $form->getLabel('title'); ?> </div> <div class="controls t3-controls"> <?php echo $form->getInput('title'); ?> </div> </div> <div class="control-group t3-control-group hide"> <div class="control-label t3-control-label"> <?php echo $form->getLabel('template'); ?> </div> <div class="controls t3-controls"> <?php echo $form->getInput('template'); ?> </div> </div> <div class="control-group t3-control-group hide"> <div class="control-label t3-control-label"> <?php echo $form->getLabel('client_id'); ?> </div> <div class="controls t3-controls"> <?php echo $form->getInput('client_id'); ?> <input type="text" size="35" value="<?php echo $form->getValue('client_id') == 0 ? Text::_('JSITE') : Text::_('JADMINISTRATOR'); ?> " class="input readonly" readonly="readonly" /> </div> </div> <div class="control-group t3-control-group"> <div class="control-label t3-control-label"> <?php echo str_replace('<label', '<label data-placement="bottom" ', $form->getLabel('home')); ?> </div> <div class="controls t3-controls"> <?php echo $form->getInput('home'); ?> </div> </div> </div> </div> <fieldset> <div class="t3-admin clearfix"> <div class="t3-admin-nav"> <?php echo HTMLHelper::_('bootstrap.startTabSet', 't3-admin-tabs', array('startOffset' => 0)); ?> <?php echo HTMLHelper::_('bootstrap.addTab', 't3-admin-tabs', 'overview_params', Text::_('T3_OVERVIEW_LABEL')) ?> <?php $default_overview_override = T3_TEMPLATE_PATH . '/admin/default_overview.php'; if(file_exists($default_overview_override)) { include $default_overview_override; } else { include T3_ADMIN_PATH . '/admin/tpls/default_overview.php'; } ?> <?php echo HTMLHelper::_('bootstrap.endTab') ?> <?php $fieldSets = $form->getFieldsets('params'); foreach ($fieldSets as $name => $fieldSet) : ?> <?php $label = !empty($fieldSet->label) ? $fieldSet->label : "T3_".strtoupper(str_replace("_params", "", $name))."_LABEL"; ?> <?php echo HTMLHelper::_('bootstrap.addTab', 't3-admin-tabs', $name, Text::_($label)) ?> <?php if (isset($fieldSet->description) && trim($fieldSet->description)) : echo '<div class="t3-admin-fieldset-desc">'.(Text::_($fieldSet->description)).'</div>'; endif; foreach ($form->getFieldset($name) as $field) : $hide = ($field->type === 'T3Depend' && $form->getFieldAttribute($field->fieldname, 'function', '', $field->group) == '@group'); $fieldinput = $field->input; // add placeholder to Text input if ($field->type == 'Text') { $placeholder = $form->getFieldAttribute($field->fieldname, 'placeholder', '', $field->group); if(empty($placeholder)){ $placeholder = $form->getFieldAttribute($field->fieldname, 'default', '', $field->group); } else { $placeholder = Text::_($placeholder); } if(!empty($placeholder)){ $fieldinput = str_replace ('/>', ' placeholder="' . $placeholder . '"/>', $fieldinput); } } $global = $form->getFieldAttribute($field->fieldname, 'global', 0, $field->group); ?> <?php if ($field->hidden || ($field->type == 'T3Depend' && !$field->label)) : ?> <?php echo $fieldinput; ?> <?php else : ?> <div class="control-group t3-control-group<?php echo $hide ? ' hide' : '' ?>"> <div class="control-label t3-control-label<?php echo $global ? ' t3-admin-global' : '' ?>"> <?php echo $field->label; ?> </div> <div class="controls t3-controls"> <?php echo $fieldinput ?> </div> </div> <?php endif; ?> <?php endforeach; ?> <?php echo HTMLHelper::_('bootstrap.endTab') ?> <?php endforeach; ?> <?php if ($user->authorise('core.edit', 'com_menu') && $form->getValue('client_id') == 0):?> <?php echo HTMLHelper::_('bootstrap.addTab', 't3-admin-tabs', 'assignment_params', Text::_('T3_MENUS_ASSIGNMENT_LABEL')) ?> <?php if ($canDo->get('core.edit.state')) : ?> <?php include T3_ADMIN_PATH . '/admin/tpls/default_assignment.php'; ?> <?php endif; ?> <?php echo HTMLHelper::_('bootstrap.endTab') ?> <?php endif;?> <?php echo HTMLHelper::_('bootstrap.endTabSet'); ?> </div> </div> </fieldset> <input type="hidden" name="task" value="" /> <?php echo JHtml::_('form.token'); ?> </form> </div> <?php if (is_file(T3_ADMIN_PATH . '/admin/layout/layout.tpl.php')){ include_once T3_ADMIN_PATH . '/admin/layout/layout.tpl.php'; } ?> PK t"]�6� index.htmlnu &1i� <!DOCTYPE html><title></title>PK t"]{�Y toolbar.phpnu &1i� <?php /** *------------------------------------------------------------------------------ * @package T3 Framework for Joomla! *------------------------------------------------------------------------------ * @copyright Copyright (C) 2004-2013 JoomlArt.com. All Rights Reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt * @authors JoomlArt, JoomlaBamboo, (contribute to this project at github * & Google group to become co-author) * @Google group: https://groups.google.com/forum/#!forum/t3fw * @Link: http://t3-framework.org *------------------------------------------------------------------------------ */ defined('_JEXEC') or die; use Joomla\CMS\Language\Text; jimport('joomla.language.help'); $input = JFactory::getApplication()->input; $params = T3::getTplParams(); if(version_compare(JVERSION, '4','ge')){ $dropdown = 'data-bs-toggle="dropdown"'; }else{ $dropdown = 'data-toggle="dropdown"'; } ?> <div id="t3-admin-toolbar" class="btn-toolbar"> <?php if($input->getCmd('view') == 'style'): ?> <div id="t3-admin-tb-save" class="btn-group"> <button id="t3-admin-tb-style-save-save" class="btn btn-success"><i class="icon-save"></i> <?php echo Text::_('T3_TOOLBAR_SAVE') ?></button> <button class="btn btn-success dropdown-toggle" <?php echo $dropdown;?>> <span class="caret"></span> </button> <ul class="dropdown-menu"> <li id="t3-admin-tb-style-save-close"><a href="#"><?php echo Text::_('T3_TOOLBAR_SAVECLOSE') ?></a></li> <li id="t3-admin-tb-style-save-clone"><a href="#"><?php echo Text::_('T3_TOOLBAR_SAVE_AS_CLONE') ?></a></li> </ul> </div> <?php endif; ?> <div id="t3-admin-tb-recompile" class="btn-group"> <button id="t3-admin-tb-compile-all" class="btn hasTip" title="<?php echo Text::_('T3_TOOLBAR_COMPILE_LESS_CSS') ?>::<?php echo Text::_('T3_TOOLBAR_COMPILE_LESS_CSS_DESC') ?>"><i class="icon-code"></i> <i class="icon-loading"></i> <?php echo Text::_('T3_TOOLBAR_COMPILE_LESS_CSS') ?></button> <?php if($input->getCmd('view') == 'style') : ?> <button class="btn dropdown-toggle" <?php echo $dropdown;?>> <span class="caret"></span> </button> <ul class="dropdown-menu"> <li id="t3-admin-tb-compile-this" data-default="<?php echo Text::_('JDEFAULT') ?>" data-msg="<?php echo Text::_('T3_TOOLBAR_COMPILE_THIS') ?>"><a href="#"><?php echo Text::sprintf('T3_TOOLBAR_COMPILE_THIS', $params->get('theme', Text::_('JDEFAULT'))) ?></a></li> </ul> <?php endif ?> </div> <?php if(version_compare(JVERSION, '4', 'lt')): ?> <div id="t3-admin-tb-themer" class="btn-group"> <button data-title="<?php echo Text::_('T3_TM_THEME_MAGIC') ?>" data-content="<?php echo Text::_('T3_MSG_ENABLE_THEMEMAGIC') ?>" class="btn hasTip" title="<?php echo Text::_('T3_TOOLBAR_THEMER') ?>::<?php echo Text::_('T3_TOOLBAR_THEMER_DESC') ?>"> <i class="icon-magic"></i> <?php echo Text::_('T3_TOOLBAR_THEMER') ?> </button> </div> <?php endif ?> <div id="t3-admin-tb-megamenu" class="btn-group" > <button data-title="<?php echo Text::_('T3_NAVIGATION_MM_TITLE') ?>" data-content="<?php echo Text::_('T3_MSG_MEGAMENU_NOT_USED') ?>" class="btn hasTip" title="<?php echo Text::_('T3_TOOLBAR_MEGAMENU') ?>::<?php echo Text::_('T3_TOOLBAR_MEGAMENU_DESC') ?>"> <i class="icon-sitemap"></i> <?php echo Text::_('T3_TOOLBAR_MEGAMENU') ?> </button> </div> <?php if(version_compare(JVERSION, '3.0', 'ge') && $input->getCmd('view') == 'template'): ?> <div id="t3-admin-tb-copy" class="btn-group <?php echo $input->getCmd('view') ?>" data-toggle="modal" data-target="#collapseModal"> <button class="btn"><i class="icon-copy"></i> <?php echo Text::_('T3_TOOLBAR_COPY') ?></button> </div> <?php endif; ?> <div id="t3-admin-tb-close" class="btn-group <?php echo $input->getCmd('view') ?>"> <button class="btn"><i class="icon-remove"></i> <?php echo Text::_('T3_TOOLBAR_CLOSE') ?></button> </div> <?php if(version_compare(JVERSION, '4', 'ge')): ?> <div id="t3-admin-tb-help" class="btn-group <?php echo $input->getCmd('view') ?>"> <button class="btn"><i class="icon-question-sign"></i> <a href="https://www.joomlart.com/documentation/joomla-framework/t3-framework-for-joomla-2-5-and-joomla-3" target="_blank"><?php echo Text::_('T3_TOOLBAR_HELP') ?></a></button> </div> <?php else: ?> <div id="t3-admin-tb-help" class="btn-group <?php echo $input->getCmd('view') ?>"> <button class="btn"><i class="icon-question-sign"></i> <?php echo Text::_('T3_TOOLBAR_HELP') ?></button> </div> <?php endif; ?> </div>PK t"]�zѾ7 7 default.phpnu &1i� <?php /** *------------------------------------------------------------------------------ * @package T3 Framework for Joomla! *------------------------------------------------------------------------------ * @copyright Copyright (C) 2004-2013 JoomlArt.com. All Rights Reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt * @authors JoomlArt, JoomlaBamboo, (contribute to this project at github * & Google group to become co-author) * @Google group: https://groups.google.com/forum/#!forum/t3fw * @Link: http://t3-framework.org *------------------------------------------------------------------------------ */ defined('_JEXEC') or die; use Joomla\CMS\Language\Text; use Joomla\CMS\HTML\HTMLHelper; use Joomla\CMS\Helper\ContentHelper; HTMLHelper::addIncludePath(JPATH_COMPONENT.'/helpers/html'); HTMLHelper::_('behavior.tooltip'); HTMLHelper::_('behavior.formvalidation'); HTMLHelper::_('behavior.keepalive'); $user = JFactory::getUser(); $canDo = method_exists('TemplatesHelper', 'getActions') ? TemplatesHelper::getActions() : ContentHelper::getActions('com_templates'); $iswritable = is_writable('t3test.txt'); ?> <?php if($iswritable): ?> <div id="t3-admin-writable-message" class="alert warning"> <button type="button" class="close" data-dismiss="alert">×</button> <strong><?php echo Text::_('T3_MSG_WARNING'); ?></strong> <?php echo Text::_('T3_MSG_FILE_NOT_WRITABLE'); ?> </div> <?php endif;?> <div class="t3-admin-form clearfix"> <form action="<?php echo JRoute::_('index.php?option=com_templates&layout=edit&id='.$input->getInt('id')); ?>" method="post" name="adminForm" id="style-form" class="form-validate form-horizontal"> <div class="t3-admin-header clearfix"> <div class="controls-row"> <div class="control-group t3-control-group"> <div class="control-label t3-control-label"> <label id="t3-styles-list-lbl" for="t3-styles-list" class="hasTooltip" title="<?php echo Text::_('T3_SELECT_STYLE_DESC'); ?>"><?php echo Text::_('T3_SELECT_STYLE_LABEL'); ?></label> </div> <div class="controls t3-controls"> <?php echo HTMLHelper::_('select.genericlist', $styles, 't3-styles-list', 'autocomplete="off"', 'id', 'title', $input->get('id')); ?> </div> </div> <div class="control-group t3-control-group"> <div class="control-label t3-control-label"> <?php echo $form->getLabel('title'); ?> </div> <div class="controls t3-controls"> <?php echo $form->getInput('title'); ?> </div> </div> <div class="control-group t3-control-group hide"> <div class="control-label t3-control-label"> <?php echo $form->getLabel('template'); ?> </div> <div class="controls t3-controls"> <?php echo $form->getInput('template'); ?> </div> </div> <div class="control-group t3-control-group hide"> <div class="control-label t3-control-label"> <?php echo $form->getLabel('client_id'); ?> </div> <div class="controls t3-controls"> <?php echo $form->getInput('client_id'); ?> <input type="text" size="35" value="<?php echo $form->getValue('client_id') == 0 ? Text::_('JSITE') : Text::_('JADMINISTRATOR'); ?> " class="input readonly" readonly="readonly" /> </div> </div> <div class="control-group t3-control-group"> <div class="control-label t3-control-label"> <?php echo str_replace('<label', '<label data-placement="bottom" ', $form->getLabel('home')); ?> </div> <div class="controls t3-controls"> <?php echo $form->getInput('home'); ?> </div> </div> </div> </div> <fieldset> <div class="t3-admin clearfix"> <div class="t3-admin-nav"> <ul class="nav nav-tabs"> <li<?php echo $t3lock == 'overview_params' ? ' class="active"' : ''?>><a href="#overview_params" data-toggle="tab"><?php echo Text::_('T3_OVERVIEW_LABEL');?></a></li> <?php $fieldSets = $form->getFieldsets('params'); foreach ($fieldSets as $name => $fieldSet) : $label = !empty($fieldSet->label) ? $fieldSet->label : "T3_".strtoupper(str_replace("_params", "", $name))."_LABEL"; ?> <li<?php echo $t3lock == preg_replace( '/\s+/', ' ', $name) ? ' class="active"' : ''?>><a href="#<?php echo preg_replace( '/\s+/', ' ', $name);?>" data-toggle="tab"><?php echo Text::_($label) ?></a></li> <?php endforeach; ?> <?php if ($user->authorise('core.edit', 'com_menu') && ($form->getValue('client_id') == 0)):?> <?php if ($canDo->get('core.edit.state')) : ?> <li<?php echo $t3lock == 'assignment' ? ' class="active"' : ''?>><a href="#assignment_params" data-toggle="tab"><?php echo Text::_('T3_MENUS_ASSIGNMENT_LABEL');?></a></li> <?php endif; ?> <?php endif;?> </ul> </div> <div class="t3-admin-tabcontent tab-content clearfix"> <div class="tab-pane tab-overview clearfix<?php echo $t3lock == 'overview_params' ? ' active' : ''?>" id="overview_params"> <?php $default_overview_override = T3_TEMPLATE_PATH . '/admin/default_overview.php'; if(file_exists($default_overview_override)) { include $default_overview_override; } else { include T3_ADMIN_PATH . '/admin/tpls/default_overview.php'; } ?> </div> <?php foreach ($fieldSets as $name => $fieldSet) : ?> <div class="tab-pane<?php echo $t3lock == preg_replace( '/\s+/', ' ', $name) ? ' active' : ''?>" id="<?php echo preg_replace( '/\s+/', ' ', $name); ?>"> <?php if (isset($fieldSet->description) && trim($fieldSet->description)) : echo '<div class="t3-admin-fieldset-desc">'.(Text::_($fieldSet->description)).'</div>'; endif; foreach ($form->getFieldset($name) as $field) : $hide = ($field->type === 'T3Depend' && $form->getFieldAttribute($field->fieldname, 'function', '', $field->group) == '@group'); $fieldinput = $field->input; // add placeholder to Text input if ($field->type == 'Text') { $placeholder = $form->getFieldAttribute($field->fieldname, 'placeholder', '', $field->group); if(empty($placeholder)){ $placeholder = $form->getFieldAttribute($field->fieldname, 'default', '', $field->group); } else { $placeholder = Text::_($placeholder); } if(!empty($placeholder)){ $fieldinput = str_replace ('/>', ' placeholder="' . $placeholder . '"/>', $fieldinput); } } $global = $form->getFieldAttribute($field->fieldname, 'global', 0, $field->group); ?> <?php if ($field->hidden || ($field->type == 'T3Depend' && !$field->label)) : ?> <?php echo $fieldinput; ?> <?php else : ?> <div class="control-group t3-control-group<?php echo $hide ? ' hide' : '' ?>"> <div class="control-label t3-control-label<?php echo $global ? ' t3-admin-global' : '' ?>"> <?php echo $field->label; ?> </div> <div class="controls t3-controls"> <?php echo $fieldinput ?> </div> </div> <?php endif; ?> <?php endforeach; ?> </div> <?php endforeach; ?> <?php if ($user->authorise('core.edit', 'com_menu') && $form->getValue('client_id') == 0):?> <?php if ($canDo->get('core.edit.state')) : ?> <div class="tab-pane clearfix<?php echo $t3lock == 'assignment' ? ' active' : ''?>" id="assignment_params"> <?php include T3_ADMIN_PATH . '/admin/tpls/default_assignment.php'; ?> </div> <?php endif; ?> <?php endif;?> </div> </div> </fieldset> <input type="hidden" name="task" value="" /> <?php echo HTMLHelper::_('form.token'); ?> </form> </div> <?php if (is_file(T3_ADMIN_PATH . '/admin/tour/tour.tpl.php')){ include_once T3_ADMIN_PATH . '/admin/tour/tour.tpl.php'; } //if (is_file(T3_ADMIN_PATH . '/admin/megamenu/megamenu.tpl.php')){ // include_once T3_ADMIN_PATH . '/admin/megamenu/megamenu.tpl.php'; //} if (is_file(T3_ADMIN_PATH . '/admin/layout/layout.tpl.php')){ include_once T3_ADMIN_PATH . '/admin/layout/layout.tpl.php'; } ?> PK t"]�C�I� � default_overview.phpnu &1i� <?php /** *------------------------------------------------------------------------------ * @package T3 Framework for Joomla! *------------------------------------------------------------------------------ * @copyright Copyright (C) 2004-2013 JoomlArt.com. All Rights Reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt * @authors JoomlArt, JoomlaBamboo, (contribute to this project at github * & Google group to become co-author) * @Google group: https://groups.google.com/forum/#!forum/t3fw * @Link: http://t3-framework.org *------------------------------------------------------------------------------ */ defined('_JEXEC') or die; use Joomla\CMS\Factory; use Joomla\CMS\Uri\Uri; use Joomla\CMS\Language\Text; jimport('joomla.updater.update'); $telem = T3_TEMPLATE; $felem = T3_ADMIN; $thasnew = false; $ctversion = $ntversion = $xml->version; $fhasnew = false; $cfversion = $nfversion = $fxml->version; $db = Factory::getDbo(); $query = $db->getQuery(true); $query ->select('*') ->from('#__updates') ->where('(element = ' . $db->q($telem) . ') OR (element = ' . $db->q($felem) . ')'); $db->setQuery($query); $results = $db->loadObjectList('element'); if(count($results)){ if(isset($results[$telem]) && version_compare($results[$telem]->version, $ctversion, 'gt')){ $thasnew = true; $ntversion = $results[$telem]->version; } if(isset($results[$felem]) && version_compare($results[$felem]->version, $cfversion, 'gt')){ $fhasnew = true; $nfversion = $results[$felem]->version; } } $hasperm = Factory::getUser()->authorise('core.manage', 'com_installer'); // Try to humanize the name $xml->name = ucwords(str_replace('_', ' ', $xml->name)); $fxml->name = ucwords(str_replace('_', ' ', $fxml->name)); ?> <div class="t3-admin-overview"> <legend class="t3-admin-form-legend"><?php echo Text::_('T3_OVERVIEW_TPL_INFO')?></legend> <div id="t3-admin-template-home" class="section"> <div class="row-fluid"> <div class="span8"> <?php if (is_file (T3_TEMPLATE_PATH.'/templateInfo.php')): ?> <div class="template-info row-fluid"> <?php include T3_TEMPLATE_PATH.'/templateInfo.php' ?> </div> <?php endif ?> </div> <div class="span4"> <div id="t3-admin-tpl-info" class="t3-admin-overview-block clearfix"> <h3><?php echo Text::_('T3_OVERVIEW_TPL_INFO')?></h3> <dl class="info"> <dt><?php echo Text::_('T3_OVERVIEW_NAME')?></dt> <dd><?php echo $xml->name ?></dd> <dt><?php echo Text::_('T3_OVERVIEW_VERSION')?></dt> <dd><?php echo $xml->version ?></dd> <dt><?php echo Text::_('T3_OVERVIEW_CREATE_DATE')?></dt> <dd><?php echo $xml->creationDate ?></dd> <dt><?php echo Text::_('T3_OVERVIEW_AUTHOR')?></dt> <dd><a href="<?php echo $xml->authorUrl ?>" title="<?php echo $xml->author ?>"><?php echo $xml->author ?></a></dd> </dl> </div> <div class="t3-admin-overview-block updater<?php echo $thasnew ? ' outdated' : '' ?> clearfix"> <h3><?php echo empty($xml->updateservers) ? Text::sprintf('T3_OVERVIEW_TPL_VERSION', $xml->name, $xml->version) : Text::sprintf($thasnew ? 'T3_OVERVIEW_TPL_NEW' : 'T3_OVERVIEW_TPL_SAME', $xml->name) ?></h3> <p><?php echo empty($xml->updateservers) ? Text::_('T3_OVERVIEW_TPL_VERSION_MSG') : ($thasnew ? Text::sprintf('T3_OVERVIEW_TPL_NEW_MSG', $ctversion, $xml->name, $ntversion) : Text::sprintf('T3_OVERVIEW_TPL_SAME_MSG', $ctversion)) ?></p> <?php if($hasperm) : if(empty($xml->updateservers)): ?> <a class="btn" href="http://www.joomlart.com/forums/downloads.php" class="t3check-framework" title="<?php echo Text::_('T3_OVERVIEW_TPL_DL_CENTER') ?>"><?php echo Text::_('T3_OVERVIEW_TPL_DL_CENTER') ?></a> <a class="btn" href="http://update.joomlart.com" class="t3check-framework" title="<?php echo Text::_('T3_OVERVIEW_TPL_UPDATE_CENTER') ?>"><?php echo Text::_('T3_OVERVIEW_TPL_UPDATE_CENTER') ?></a> <?php else : ?> <a class="btn" href="<?php Uri::base() ?>index.php?option=com_installer&view=update" class="t3check-framework" title="<?php echo Text::_( $thasnew ? 'T3_OVERVIEW_GO_DOWNLOAD' : 'T3_OVERVIEW_CHECK_UPDATE') ?>"><?php echo Text::_( $thasnew ? 'T3_OVERVIEW_GO_DOWNLOAD' : 'T3_OVERVIEW_CHECK_UPDATE') ?></a> <?php endif ?> <?php endif; ?> </div> </div> </div> </div> <legend class="t3-admin-form-legend"><?php echo Text::_('T3_OVERVIEW_FRMWRK_INFO')?></legend> <div id="t3-admin-framework-home" class="section"> <div class="row-fluid"> <div class="span8"> <?php if (is_file (T3_ADMIN_PATH.'/admin/frameworkInfo.php')): ?> <div class="template-info row-fluid"> <?php include T3_ADMIN_PATH.'/admin/frameworkInfo.php' ?> </div> <?php endif ?> </div> <div class="span4"> <div id="t3-admin-frmk-info" class="t3-admin-overview-block clearfix"> <h3><?php echo Text::_('T3_OVERVIEW_FRMWRK_INFO')?></h3> <dl class="info"> <dt><?php echo Text::_('T3_OVERVIEW_NAME')?></dt> <dd><?php echo $fxml->name ?></dd> <dt><?php echo Text::_('T3_OVERVIEW_VERSION')?></dt> <dd><?php echo $fxml->version ?></dd> <dt><?php echo Text::_('T3_OVERVIEW_CREATE_DATE')?></dt> <dd><?php echo $fxml->creationDate ?></dd> <dt><?php echo Text::_('T3_OVERVIEW_AUTHOR')?></dt> <dd><a href="<?php echo $fxml->authorUrl ?>" title="<?php echo $fxml->author ?>"><?php echo $fxml->author ?></a></dd> </dl> </div> <div class="t3-admin-overview-block updater<?php echo $fhasnew ? ' outdated' : '' ?> clearfix"> <h3><?php echo Text::sprintf($fhasnew ? 'T3_OVERVIEW_FRMWRK_NEW' : 'T3_OVERVIEW_FRMWRK_SAME', $fxml->name)?></h3> <p><?php echo $fhasnew ? Text::sprintf('T3_OVERVIEW_FRMWRK_NEW_MSG', $cfversion, $fxml->name, $nfversion) : Text::sprintf('T3_OVERVIEW_FRMWRK_SAME_MSG', $cfversion) ?></p> <?php if($hasperm): ?> <a class="btn" href="<?php Uri::base() ?>index.php?option=com_installer&view=update" class="t3check-framework" title="<?php echo Text::_( $fhasnew ? 'T3_OVERVIEW_GO_DOWNLOAD' : 'T3_OVERVIEW_CHECK_UPDATE') ?>"><?php echo Text::_( $fhasnew ? 'T3_OVERVIEW_GO_DOWNLOAD' : 'T3_OVERVIEW_CHECK_UPDATE') ?></a> <?php endif; ?> </div> </div> </div> </div> </div>PK �("]�9c�� � addon.phpnu &1i� <?php /** *------------------------------------------------------------------------------ * @package T3 Framework for Joomla! *------------------------------------------------------------------------------ * @copyright Copyright (C) 2004-2013 JoomlArt.com. All Rights Reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt * @authors JoomlArt, JoomlaBamboo, (contribute to this project at github * & Google group to become co-author) * @Google group: https://groups.google.com/forum/#!forum/t3fw * @Link: http://t3-framework.org *------------------------------------------------------------------------------ */ defined('_JEXEC') or die; ?> <!DOCTYPE html> <html lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>" class='<jdoc:include type="pageclass" />'> <head> <jdoc:include type="head" /> </head> <body> <?php $this->loadAddon() ?> </body> </html>PK �("]��y� � ajax.html.phpnu &1i� <?php /** *------------------------------------------------------------------------------ * @package T3 Framework for Joomla! *------------------------------------------------------------------------------ * @copyright Copyright (C) 2004-2013 JoomlArt.com. All Rights Reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt * @authors JoomlArt, JoomlaBamboo, (contribute to this project at github * & Google group to become co-author) * @Google group: https://groups.google.com/forum/#!forum/t3fw * @Link: http://t3-framework.org *------------------------------------------------------------------------------ */ defined('_JEXEC') or die; ?> <!DOCTYPE html> <html lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>" class="<?php $this->bodyClass(); ?>"> <head> <jdoc:include type="head" /> <?php $this->loadBlock ('head') ?> </head> <body> <section id="t3-mainbody" class="container t3-mainbody"> <div class="row"> <div id="t3-content" class="t3-content span12"> <jdoc:include type="t3ajax" /> </div> </div> </section> </body> </html>PK �("]�js blocks/spotlight.phpnu &1i� <?php /** *------------------------------------------------------------------------------ * @package T3 Framework for Joomla! *------------------------------------------------------------------------------ * @copyright Copyright (C) 2004-2013 JoomlArt.com. All Rights Reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt * @authors JoomlArt, JoomlaBamboo, (contribute to this project at github * & Google group to become co-author) * @Google group: https://groups.google.com/forum/#!forum/t3fw * @Link: http://t3-framework.org *------------------------------------------------------------------------------ */ // No direct access defined('_JEXEC') or die; ?> <?php $name = $vars['name']; $splparams = $vars['splparams']; $datas = $vars['datas']; $cols = $vars['cols']; $addcls = isset($vars['class']) ? $vars['class'] : ''; $style = isset($vars['style']) && $vars['style'] ? $vars['style'] : 'T3Xhtml'; $tstyles = explode(',', $style); if(count($tstyles) == 1){ $styles = array_fill(0, $cols, $style); } else { $styles = array_fill(0, $cols, 'T3Xhtml'); foreach ($tstyles as $i => $stl) { if(trim($stl)){ $styles[$i] = trim($stl); } } } ?> <!-- SPOTLIGHT --> <div class="t3-spotlight t3-<?php echo $name, ' ', $addcls, ' ', T3_BASE_ROW_FLUID_PREFIX ?>"> <?php foreach ($splparams as $i => $splparam): $param = (object)$splparam; ?> <div class="<?php echo $datas[$i] ?>"> <?php if ($this->countModules($param->position)) : ?> <jdoc:include type="modules" name="<?php echo $param->position ?>" style="<?php echo $styles[$i] ?>"/> <?php else: ?> <?php endif ?> </div> <?php endforeach ?> </div> <!-- SPOTLIGHT -->PK �("]֔�> > blocks/off-canvas.phpnu &1i� <?php /** *------------------------------------------------------------------------------ * @package T3 Framework for Joomla! *------------------------------------------------------------------------------ * @copyright Copyright (C) 2004-2013 JoomlArt.com. All Rights Reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt * @authors JoomlArt, JoomlaBamboo, (contribute to this project at github * & Google group to become co-author) * @Google group: https://groups.google.com/forum/#!forum/t3fw * @Link: http://t3-framework.org * @credits Mary Lou - http://tympanus.net/codrops/2013/08/28/transitions-for-off-canvas-navigations/ *------------------------------------------------------------------------------ */ defined('_JEXEC') or die; ?> <?php if (!$this->getParam('addon_offcanvas_enable')) return ; ?> <button class="btn btn-default off-canvas-toggle" type="button" data-pos="left" data-nav="#t3-off-canvas" data-effect="<?php echo $this->getParam('addon_offcanvas_effect', 'off-canvas-effect-4') ?>"> <i class="fa fa-bars"></i> </button> <!-- OFF-CANVAS SIDEBAR --> <div id="t3-off-canvas" class="t3-off-canvas"> <div class="t3-off-canvas-header"> <h2 class="t3-off-canvas-header-title">Sidebar</h2> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> </div> <div class="t3-off-canvas-body"> <jdoc:include type="modules" name="<?php $this->_p('off-canvas') ?>" style="T3Xhtml" /> </div> </div> <!-- //OFF-CANVAS SIDEBAR --> PK �("]_��rv v system/tp.phpnu &1i� <?php /** *------------------------------------------------------------------------------ * @package T3 Framework for Joomla! *------------------------------------------------------------------------------ * @copyright Copyright (C) 2004-2013 JoomlArt.com. All Rights Reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt * @authors JoomlArt, JoomlaBamboo, (contribute to this project at github * & Google group to become co-author) * @Google group: https://groups.google.com/forum/#!forum/t3fw * @Link: http://t3-framework.org *------------------------------------------------------------------------------ */ $cls = array('t3-admin-layout-pos', 'block-' . $vars['name']); $attr = ''; if(isset($vars['data-original'])) { $attr = ' data-original="'. $vars['data-original'] . '"'; if (!empty($vars['data-optgroup'])) { $attr .= ' data-optgroup="'. $vars['data-optgroup'] . '"'; } } else { $cls[] = 't3-admin-layout-uneditable'; } ?> <div class="<?php echo implode(' ', $cls) ?>"<?php echo $attr ?>> <h3><?php echo $vars['name'] ?></h3> </div>PK �("]�5��� � system/spotlight.phpnu &1i� <?php /** *------------------------------------------------------------------------------ * @package T3 Framework for Joomla! *------------------------------------------------------------------------------ * @copyright Copyright (C) 2004-2013 JoomlArt.com. All Rights Reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt * @authors JoomlArt, JoomlaBamboo, (contribute to this project at github * & Google group to become co-author) * @Google group: https://groups.google.com/forum/#!forum/t3fw * @Link: http://t3-framework.org *------------------------------------------------------------------------------ */ // No direct access defined('_JEXEC') or die; ?> <?php $style = 'T3Xhtml'; $name = $vars['name']; $poss = $vars['poss']; $spldata = $vars['spldata']; $default = $vars['default']; $optgroup = $vars['optgroup']; ?> <!-- SPOTLIGHT --> <div class="t3-spotlight t3-<?php echo $name, ' ', T3_BASE_ROW_FLUID_PREFIX ?>" <?php echo $spldata ?>> <?php foreach ($poss as $i => $pos): ?> <div class="<?php echo T3_BASE_WIDTH_PREFIX, $default[$i] ?>"> <?php if ($this->countModules($pos)) : ?> <jdoc:include type="modules" name="<?php echo $pos ?>" data-original="" data-optgroup="<?php echo $optgroup[$i]; ?>" style="<?php echo $style ?>" /> <?php else: ?> <?php endif ?> </div> <?php endforeach ?> </div> <!-- SPOTLIGHT -->PK �("]�B:� � component.phpnu &1i� <?php /** *------------------------------------------------------------------------------ * @package T3 Framework for Joomla! *------------------------------------------------------------------------------ * @copyright Copyright (C) 2004-2013 JoomlArt.com. All Rights Reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt * @authors JoomlArt, JoomlaBamboo, (contribute to this project at github * & Google group to become co-author) * @Google group: https://groups.google.com/forum/#!forum/t3fw * @Link: http://t3-framework.org *------------------------------------------------------------------------------ */ defined('_JEXEC') or die; if(!defined('T3_TPL_COMPONENT')){ define('T3_TPL_COMPONENT', 1); } ?> <!DOCTYPE html> <html lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>" class='component window <jdoc:include type="pageclass" />'> <head> <jdoc:include type="head" /> <?php $this->loadBlock ('head') ?> </head> <body class="contentpane"> <div id="window-mainbody" class="window-mainbody"> <jdoc:include type="message" /> <jdoc:include type="component" /> </div> </body> </html>PK �("]]~��� � ajax.json.phpnu &1i� <?php /** *------------------------------------------------------------------------------ * @package T3 Framework for Joomla! *------------------------------------------------------------------------------ * @copyright Copyright (C) 2004-2013 JoomlArt.com. All Rights Reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt * @authors JoomlArt, JoomlaBamboo, (contribute to this project at github * & Google group to become co-author) * @Google group: https://groups.google.com/forum/#!forum/t3fw * @Link: http://t3-framework.org *------------------------------------------------------------------------------ */ defined('_JEXEC') or die; ?> <jdoc:include type="t3ajax" />PK q�!]Ρ��� � profile.phpnu &1i� PK t"]�λ� � default_assignment.phpnu &1i� PK t"]���d .! default_j4.phpnu &1i� PK t"]�6� m<