Last commit for src/views/elements/Element.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 - 2021  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 - 2021
 * @filesource
 */
namespace seekquarry\yioop\views\elements;

use seekquarry\yioop\configs as C;
use seekquarry\yioop\library\CrawlConstants;

/** For tl, getLocaleTag and Yioop constants */
require_once __DIR__.'/../../library/LocaleFunctions.php';

/**
 * Translate the supplied arguments into the current locale.
 *
 * This function is a convenience copy of the same function
 * @see seekquarry\yioop\library\tl() to this subnamespace
 *
 * @param string string_identifier  identifier to be translated
 * @param mixed additional_args  used for interpolation in translated string
 * @return string  translated string
 */
function tl()
{
    return call_user_func_array(C\NS_LIB . "tl", func_get_args());
}
/**
 * shorthand for echo
 *
 * @param string $text string to send to the current output
 */
function e($text)
{
    echo $text;
}
/**
 * Base Element Class.
 * Elements are classes are used to render portions of
 * a web page which might be common to several views
 * like a view there is supposed to minimal php code
 * in an element
 *
 * @author Chris Pollett
 */
abstract class Element
{
    /**
     * The View on which this Element is drawn
     * @var object
     */
    public $view;
    /**
     * constructor stores a reference to the view this element will reside on
     *
     * @param object $view   object this element will reside on
     */
    public function __construct($view = null)
    {
        $this->view = $view;
    }
    /**
     * This method is responsible for actually drawing the view.
     * It should be implemented in subclasses.
     *
     * @param $data - contains all external data from the controller
     * that should be used in drawing the view
     */
    public abstract function render($data);
    /**
     * Used to draw the hamburger menu symbol and associated link to the
     * settings menu
     *
     * @param bool $logged_in whether or not the user is logged in. If so,
     *  the hamburger menu symbol draws the users name
     */
    public function renderSettingsToggle($logged_in)
    { ?>
        <div class='noscript-hide'>
        <div class="settings" id="settings-toggle" tabindex="0" role="menu"
            onkeydown="javascript:toggleOptions()"
            onclick="javascript:toggleOptions()" ><?php
        if ($logged_in) {
            $user_name = $_SESSION['USER_NAME'];
            if (mb_strlen($user_name) > 6) {
                $user_name = mb_substr($user_name, 0, 4) . "..";
            }
            ?>
            <div class='top'>[<?=$user_name ?>]
            </div><div class='bottom'><span role="img"
                aria-label="<?= tl('element_settings_toggle')
                ?>">&equiv;</span></div>
            <?php
        } else {
            e('<span role="img" aria-label="'.
                tl('element_settings_toggle').'">&equiv;</span>');
        }?></div></div><?php
    }
    /* To edit chat group name*/
    function editChatGroupName($data)
    {
        if (isset($data['GROUPS'])) {
            foreach ($data['GROUPS'] as $key  => $group_value) {
                if (strpos($group_value['GROUP_NAME'], "Chats\$") !== false) {
                    $data['GROUPS'][$key]['GROUP_NAME'] =
                        tl('element_chat_name');
                    break;
                }
            }
        }
        if (isset($data['PAGES'])) {
            $data['SUBTITLE'] = tl('element_chat_name');
            foreach ($data['PAGES'] as $key  => $page_value) {
                if (strpos($data['PAGES'][$key][CrawlConstants::SOURCE_NAME],
                    "Chats\$" . $data['USERNAME']) !== false) {
                    if (isset($data['GROUP_NAME'])) {
                        $data['GROUP_NAME'] = tl('element_chat_name');
                    }
                    $data['PAGES'][$key][CrawlConstants::SOURCE_NAME] =
                        tl('element_chat_name');
                    $title = $data['PAGES'][$key][CrawlConstants::TITLE];
                    $chat_pos = strpos($title, tl('element_chat_name'));
                    $str1 = substr($title, $chat_pos);
                    $str1 = substr($title, 0, -strlen($str1));
                    $data['PAGES'][$key][CrawlConstants::TITLE] =
                        $str1 . tl('element_chat_name');
                    $description = $data['PAGES'][$key][
                        CrawlConstants::DESCRIPTION];
                    $chat_pos = strpos($description, tl('element_chat_name'));
                    $str1 = substr($description, $chat_pos);
                    $str1 = substr($description, 0, -strlen($str1));
                    $data['PAGES'][$key][CrawlConstants::DESCRIPTION] =
                        trim($str1) . " " . tl('element_chat_name');
                    break;
                }
            }
        }
        if (isset($data['GROUP']) && strpos($data['GROUP']['GROUP_NAME'],
            "Chats\$" . $data['USERNAME']) !== false) {
            $data['GROUP']['GROUP_NAME'] = tl('element_chat_name');
        }
        if (isset($data['CURRENT_GROUP']) && strpos(
            $data['CURRENT_GROUP']['name'], "Chats\$" . $data['USERNAME'])
            !== false) {
            $data['CURRENT_GROUP']['name'] = tl('element_chat_name');
        }
        if (is_string($data)) {
            return tl('element_chat_name');
        }
        return $data;
    }
    /*To edit wiki page side bar*/
    function editOptions($group_name, $options)
    {
        foreach ($options as $key => $option_value) {
            if (strpos($option_value, "Chats") !== false) {
                $options[$key] = tl('element_chat_name') . " " .
                    substr($option_value,
                        strlen($group_name) - strlen($option_value));
            }
        }
        return $options;
    }
}
ViewGit