Last commit for src/views/elements/ManagelocalesElement.php: 2addb500315b7393a90fe66431d7832b1e7386c7

Adjust copyrights years

Chris Pollett [2024-01-03 21:Jan:rd]
Adjust copyrights years
<?php
/**
 * SeekQuarry/Yioop --
 * Open Source Pure PHP Search Engine, Crawler, and Indexer
 *
 * Copyright (C) 2009 - 2018  Chris Pollett chris@pollett.org
 *
 * LICENSE:
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <https://www.gnu.org/licenses/>.
 *
 * END LICENSE
 *
 * @author Chris Pollett chris@pollett.org
 * @license https://www.gnu.org/licenses/ GPL3
 * @link https://www.seekquarry.com/
 * @copyright 2009 - 2018
 * @filesource
 */
namespace seekquarry\yioop\views\elements;

use seekquarry\yioop as B;
use seekquarry\yioop\configs as C;

/**
 * This Element is responsible for drawing screens in the Admin View related
 * to localization. Namely, the ability to create, delete, and text writing mode
 * for locales as well as the ability to modify translations within a locale.
 *
 * @author Chris Pollett
 */
class ManagelocalesElement extends Element
{
    /**
     * Responsible for drawing the ceate, delete set writing mode screen for
     * locales as well ass the screen for adding modifying translations
     *
     * @param array $data  contains info about the available locales and what
     *     has been translated
     */
    public function render($data)
    {
        $admin_url = htmlentities(B\controllerUrl('admin', true));
        $context = "";
        if ($data['FORM_TYPE'] == 'search' ||
            !empty($data['context']) && $data['context'] == 'search') {
            $context = 'context=search&amp;';
        }
        ?>
        <div class="current-activity">
        <?php
        if ($data['FORM_TYPE'] == "search") {
            $this->renderSearchForm($data);
        } else {
            $this->renderLocaleForm($data);
        }
        $data['TABLE_TITLE'] = tl('managelocales_element_locale_list')
            ."&nbsp;" . $this->view->helper("helpbutton")->render(
            "Locale List", $data[C\CSRF_TOKEN]);
        $data['NO_FLOAT_TABLE'] = true;
        $data['ACTIVITY'] = 'manageLocales';
        $data['VIEW'] = $this->view;
        $this->view->helper("pagingtable")->render($data);
        ?>
        <table class="locale-table">
            <tr>
            <th><?= tl('managelocales_element_localename') ?></th>
            <?php
            if (!$_SERVER["MOBILE"]) { ?>
                <th><?= tl('managelocales_element_localetag') ?></th>
                <th><?= tl('managelocales_element_writingmode') ?></th>
                <th><?= tl('managelocales_element_enabled') ?></th>
            <?php
            }
            ?>
            <th><?= tl('managelocales_element_percenttranslated') ?></th>
            <th colspan="2"><?= tl('managelocales_element_actions') ?></th>
            </tr>
        <?php
        $base_url = $admin_url . 'a=manageLocales&amp;'. $context .
            C\CSRF_TOKEN . "=".  $data[C\CSRF_TOKEN];
        if (isset($data['START_ROW'])) {
            $base_url .= "&amp;start_row=".$data['START_ROW'].
                "&amp;end_row=".$data['END_ROW'].
                "&amp;num_show=".$data['NUM_SHOW'];
        }
        foreach ($data['LOCALES'] as $locale) {
            e("<tr><td><a href='$base_url".
                "&amp;arg=editstrings&amp;selectlocale=".$locale['LOCALE_TAG'].
                "' >". $locale['LOCALE_NAME']."</a></td>");
            if (!$_SERVER["MOBILE"]) {
                e("<td>".$locale['LOCALE_TAG']."</td>");
                e("<td>".$locale['WRITING_MODE']."</td>");
                $gr_class = ($locale['ACTIVE']) ? " class='green' " :
                    " class='red' ";
                e("<td $gr_class>".($locale['ACTIVE'] ?
                    tl('managelocales_element_true') :
                    tl('managelocales_element_false'))."</td>");
            }
            e("<td class='align-right' >".
                $locale['PERCENT_WITH_STRINGS']."</td>");
            e("<td><a href='$base_url"
                ."&amp;arg=editlocale&amp;selectlocale=".
                $locale['LOCALE_TAG']."' >"
                .tl('managelocales_element_edit')."</a></td>");
            e("<td><a href='$base_url"
                ."&amp;arg=deletelocale&amp;selectlocale=".
                $locale['LOCALE_TAG']."' ");?>
                onclick='javascript:return confirm("<?php
            e(tl('managelocales_confirm_delete')); ?>");'><?php
            e(tl('managelocales_element_delete')."</a></td></tr>");
        }
        ?>
        </table>
        </div>
    <?php
    }
    /**
     * Draws the add locale and edit locale forms
     *
     * @param array $data consists of values of locale fields set
     *     so far as well as values of the drops downs on the form
     */
    public function renderLocaleForm($data)
    {
        $admin_url = htmlentities(B\controllerUrl('admin', true));
        $base_url = $admin_url . C\CSRF_TOKEN."=" . $data[C\CSRF_TOKEN].
            "&amp;a=manageLocales";
        $editlocale = ($data['FORM_TYPE'] == "editlocale") ? true: false;
        if ($editlocale) {
            e("<div class='float-opposite'><a href='$base_url'>".
                tl('managelocales_element_add_locale_form')."</a></div>");
            e("<h2>".tl('managelocales_element_locale_info'). "&nbsp;");
        } else {
            e("<h2>".tl('managelocales_element_add_locale'). "&nbsp;");
        }
        e($this->view->helper("helpbutton")->render(
            "Add Locale", $data[C\CSRF_TOKEN]));
        e("</h2>");
        ?>
        <form id="addLocaleForm" method="post">
        <input type="hidden" name="c" value="admin" />
        <input type="hidden" name="<?= C\CSRF_TOKEN ?>" value="<?=
            $data[C\CSRF_TOKEN] ?>" />
        <input type="hidden" name="a" value="manageLocales" />
        <input type="hidden" name="arg" value="<?= $data['FORM_TYPE'] ?>" />
        <?php
        if ($editlocale) {
        ?>
            <input type="hidden" name="selectlocale" value="<?=
            $data['CURRENT_LOCALE']['localetag'] ?>" /><?php
        }
        ?>
        <table class="name-table">
            <tr><th><label for="locale-name"><?php
                e(tl('managelocales_element_localenamelabel'))?></label></th>
                <td><input type="text" id="locale-name"
                    name="localename" maxlength="<?=C\LONG_NAME_LEN
                    ?>" class="narrow-field"
                    value="<?= $data['CURRENT_LOCALE']['localename'] ?>"
                    <?php
                    if ($editlocale) {
                        e(' disabled="disabled" ');
                    }
                    ?> />
                </td><td></td>
            </tr>
            <tr><th><label for="locale-tag"><?=
                tl('managelocales_element_localetaglabel')?></label></th>
                <td><input type="text" id="locale-tag"
                name="localetag"  maxlength="<?= C\NAME_LEN ?>"
                value="<?= $data['CURRENT_LOCALE']['localetag'] ?>"
                class="narrow-field"/></td>
            </tr>
            <tr><th><?=tl('managelocales_element_writingmodelabel')?></th>
            <td><?php $this->view->helper("options")->render(
                        "writing-mode", "writingmode",
                        $data['WRITING_MODES'],
                        $data['CURRENT_LOCALE']['writingmode']); ?>
            <?= $this->view->helper("helpbutton")->render(
                "Locale Writing Mode", $data[C\CSRF_TOKEN]) ?>
            </td>
            </tr>
            <tr><th><label for="locale-active"><?=
                tl('managelocales_element_localeenabled')?></label></th>
            <td><input type="checkbox" id="locale-active"
                    name="active" value="1" <?php
                    if ($data['CURRENT_LOCALE']['active'] > 0) {
                        e("checked='checked'");
                    }
                    ?> />
            </td>
            </tr>
            <tr><td></td><td class="center"><button class="button-box"
                type="submit" name="update" value="true"><?=
                tl('managelocales_element_submit')
                ?></button></td>
            </tr>
        </table>
        </form>
        <?php
    }
    /**
     * Draws the search for locales forms
     *
     * @param array $data consists of values of locale fields set
     *     so far as well as values of the drops downs on the form
     */
    public function renderSearchForm($data)
    {
        $controller = "admin";
        $activity = "manageLocales";
        $view = $this->view;
        $title = tl('managelocales_element_search_locales');
        $return_form_name = tl('managelocales_element_addlocale_form');
        $fields = [
            tl('managelocales_element_localename') => "name",
            tl('managelocales_element_localetag') => "tag",
            tl('managelocales_element_writingmode') => "mode",
            tl('managelocales_element_enabled') =>
                ["active", $data['EQUAL_COMPARISON_TYPES']]
        ];
        $dropdowns = [
            "mode" => ["lr-tb" => "lr-rb", "rl-tb" => "rl-tb",
                "tb-rl" => "tb-rl", "tb-lr" => "tb-lr"],
            "active" => ["1" => tl('managelocales_element_true'),
                "0" => tl('managelocales_element_false')]
        ];
        $view->helper("searchform")->render($data, $controller, $activity,
            $view, $title, $return_form_name, $fields, $dropdowns);
    }
}
ViewGit