b0y-101 Mini Shell


Current Path : E:/www2/risk/administrator/components/com_associations/tmpl/associations/
File Upload :
Current File : E:/www2/risk/administrator/components/com_associations/tmpl/associations/modal.php

<?php

/**
 * @package     Joomla.Administrator
 * @subpackage  com_associations
 *
 * @copyright   (C) 2017 Open Source Matters, Inc. <https://www.joomla.org>
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

use Joomla\CMS\Factory;
use Joomla\CMS\HTML\HTMLHelper;
use Joomla\CMS\Language\Text;
use Joomla\CMS\Layout\LayoutHelper;
use Joomla\CMS\Router\Route;
use Joomla\CMS\Session\Session;
use Joomla\Component\Associations\Administrator\Helper\AssociationsHelper;

$app = Factory::getApplication();

if ($app->isClient('site')) {
    Session::checkToken('get') or die(Text::_('JINVALID_TOKEN'));
}

/** @var Joomla\CMS\WebAsset\WebAssetManager $wa */
$wa = $this->document->getWebAssetManager();
$wa->useScript('multiselect')
    ->useScript('com_associations.admin-associations-modal');

$function         = $app->input->getCmd('function', 'jSelectAssociation');
$listOrder        = $this->escape($this->state->get('list.ordering'));
$listDirn         = $this->escape($this->state->get('list.direction'));
$canManageCheckin = Factory::getUser()->authorise('core.manage', 'com_checkin');

$iconStates = array(
    -2 => 'icon-trash',
    0  => 'icon-times',
    1  => 'icon-check',
    2  => 'icon-folder',
);

$this->document->addScriptOptions('associations-modal', ['func' => $function]);

?>
<div class="container-popup">
    <form action="<?php echo Route::_('index.php?option=com_associations&view=associations&layout=modal&tmpl=component&function='
    . $function . '&' . Session::getFormToken() . '=1'); ?>" method="post" name="adminForm" id="adminForm">
        <?php echo LayoutHelper::render('joomla.searchtools.default', array('view' => $this)); ?>
        <?php if (empty($this->items)) : ?>
            <div class="alert alert-info">
                <span class="icon-info-circle" aria-hidden="true"></span><span class="visually-hidden"><?php echo Text::_('INFO'); ?></span>
                <?php echo Text::_('JGLOBAL_NO_MATCHING_RESULTS'); ?>
            </div>
        <?php else : ?>
            <table class="table" id="associationsList">
                <caption class="visually-hidden">
                    <?php echo Text::_('COM_ASSOCIATIONS_TABLE_CAPTION'); ?>,
                            <span id="orderedBy"><?php echo Text::_('JGLOBAL_SORTED_BY'); ?> </span>,
                            <span id="filteredBy"><?php echo Text::_('JGLOBAL_FILTERED_BY'); ?></span>
                </caption>
            <thead>
                <tr>
                    <?php if (!empty($this->typeSupports['state'])) : ?>
                        <th scope="col" class="w-1 text-center">
                            <?php echo HTMLHelper::_('searchtools.sort', 'JSTATUS', 'state', $listDirn, $listOrder); ?>
                        </th>
                    <?php endif; ?>
                    <th scope="col">
                        <?php echo HTMLHelper::_('searchtools.sort', 'JGLOBAL_TITLE', 'title', $listDirn, $listOrder); ?>
                    </th>
                    <th scope="col" class="w-15">
                        <?php echo Text::_('JGRID_HEADING_LANGUAGE'); ?>
                    </th>
                    <th scope="col" class="w-5">
                        <?php echo HTMLHelper::_('searchtools.sort', 'COM_ASSOCIATIONS_HEADING_ASSOCIATION', 'association', $listDirn, $listOrder); ?>
                    </th>
                    <?php if (!empty($this->typeFields['menutype'])) : ?>
                        <th scope="col" class="w-10">
                            <?php echo HTMLHelper::_('searchtools.sort', 'COM_ASSOCIATIONS_HEADING_MENUTYPE', 'menutype_title', $listDirn, $listOrder); ?>
                        </th>
                    <?php endif; ?>
                    <?php if (!empty($this->typeSupports['acl'])) : ?>
                        <th scope="col" class="w-5 d-none d-sm-table-cell">
                            <?php echo HTMLHelper::_('searchtools.sort', 'JGRID_HEADING_ACCESS', 'access_level', $listDirn, $listOrder); ?>
                        </th>
                    <?php endif; ?>
                    <th scope="col" class="w-1 d-none d-sm-table-cell">
                        <?php echo HTMLHelper::_('searchtools.sort', 'JGRID_HEADING_ID', 'id', $listDirn, $listOrder); ?>
                    </th>
                </tr>
            </thead>
            <tbody>
            <?php foreach ($this->items as $i => $item) :
                $canEdit    = AssociationsHelper::allowEdit($this->extensionName, $this->typeName, $item->id);
                $canCheckin = $canManageCheckin || AssociationsHelper::canCheckinItem($this->extensionName, $this->typeName, $item->id);
                $isCheckout = AssociationsHelper::isCheckoutItem($this->extensionName, $this->typeName, $item->id);
                ?>
                <tr class="row<?php echo $i % 2; ?>">
                    <?php if (!empty($this->typeSupports['state'])) : ?>
                        <td class="text-center">
                            <span class="tbody-icon">
                                <span class="<?php echo $iconStates[$this->escape($item->state)]; ?>" aria-hidden="true"></span>
                            </span>
                        </td>
                    <?php endif; ?>
                    <th scope="row" class="has-context">
                        <?php if (isset($item->level)) : ?>
                            <?php echo LayoutHelper::render('joomla.html.treeprefix', array('level' => $item->level)); ?>
                        <?php endif; ?>
                        <?php if (($canEdit && !$isCheckout) || ($canEdit && $canCheckin && $isCheckout)) : ?>
                            <a class="select-link" href="javascript:void(0);" data-id="<?php echo $item->id; ?>">
                            <?php echo $this->escape($item->title); ?></a>
                        <?php elseif ($canEdit && $isCheckout) : ?>
                            <?php echo HTMLHelper::_('jgrid.checkedout', $i, $item->editor, $item->checked_out_time, 'associations.'); ?>
                            <span title="<?php echo Text::sprintf('JFIELD_ALIAS_LABEL', $this->escape($item->alias)); ?>">
                            <?php echo $this->escape($item->title); ?></span>
                        <?php else : ?>
                            <span title="<?php echo Text::sprintf('JFIELD_ALIAS_LABEL', $this->escape($item->alias)); ?>">
                            <?php echo $this->escape($item->title); ?></span>
                        <?php endif; ?>
                        <?php if (!empty($this->typeFields['alias'])) : ?>
                            <span class="small">
                                <?php echo Text::sprintf('JGLOBAL_LIST_ALIAS', $this->escape($item->alias)); ?>
                            </span>
                        <?php endif; ?>
                        <?php if (!empty($this->typeFields['catid'])) : ?>
                            <div class="small">
                                <?php echo Text::_('JCATEGORY') . ": " . $this->escape($item->category_title); ?>
                            </div>
                        <?php endif; ?>
                    </th>
                    <td class="small">
                        <?php echo LayoutHelper::render('joomla.content.language', $item); ?>
                    </td>
                    <td>
                        <?php if (true || $item->association) : ?>
                            <?php echo AssociationsHelper::getAssociationHtmlList($this->extensionName, $this->typeName, (int) $item->id, $item->language, false, false); ?>
                        <?php endif; ?>
                    </td>
                    <?php if (!empty($this->typeFields['menutype'])) : ?>
                        <td class="small">
                            <?php echo $this->escape($item->menutype_title); ?>
                        </td>
                    <?php endif; ?>
                    <?php if (!empty($this->typeSupports['acl'])) : ?>
                        <td class="small d-none d-sm-table-cell">
                            <?php echo $this->escape($item->access_level); ?>
                        </td>
                    <?php endif; ?>
                    <td class="d-none d-sm-table-cell">
                        <?php echo $item->id; ?>
                    </td>
                </tr>
            <?php endforeach; ?>
            </tbody>
        </table>

            <?php // load the pagination. ?>
            <?php echo $this->pagination->getListFooter(); ?>

        <?php endif; ?>

        <input type="hidden" name="task" value="">
        <input type="hidden" name="forcedItemType" value="<?php echo $app->input->get('forcedItemType', '', 'string'); ?>">
        <input type="hidden" name="forcedLanguage" value="<?php echo $app->input->get('forcedLanguage', '', 'cmd'); ?>">
        <?php echo HTMLHelper::_('form.token'); ?>
    </form>
</div>

Copyright © 2019 by b0y-101