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

use seekquarry\yioop\configs as C;

/**
 * This View is responsible for drawing forward-facing wiki pages in
 * a more static cleaned up way
 *
 * @author Chris Pollett
 */
class StaticView extends View
{
    /** This view is drawn on a web layout
     * @var string
     */
    public $layout = "web";
    /**
     * Draws wiki page in a more static fashion.
     *
     * @param array $data  contains the static page contents
     * the view
     */
    public function renderView($data)
    {
        $logo = C\LOGO_LARGE;
        $logged_in = (isset($data['ADMIN']) && $data['ADMIN']);
        $token_string = ($logged_in && isset($data[C\CSRF_TOKEN]))
                ? C\CSRF_TOKEN. "=".$data[C\CSRF_TOKEN] : "";
        if ($_SERVER["MOBILE"]) {
            $logo = C\LOGO_SMALL;
        }
        if (isset($data['PAGE_HEADER'])) {?>
            <div class="current-activity-header">
            <?=$this->element("wiki")->dynamicSubstitutions(C\PUBLIC_GROUP_ID,
                $data, $data['PAGE_HEADER']); ?>
            </div><?php
        } else { ?>
            <div class="current-activity-header center">
            <h1 class="logo"><a href="<?= C\SHORT_BASE_URL . '?'.
                $token_string ?>"><img src="<?= C\SHORT_BASE_URL . $logo ?>"
                alt="<?= tl('static_view_title') ?>" ></a><span><?=
                $data['subtitle']?></span></h1>
            </div><?php
        }
        $head_objects = isset($this->head_objects[$data['page']]) ?
            $this->head_objects[$data['page']] : "";
        $page_border = "";
        if (isset($head_objects['page_border']) &&
            $head_objects['page_border'] &&
            $head_objects['page_border'] != 'none') {
            $page_border = $head_objects['page_border'];
        }
        if (isset($data["AD_LOCATION"]) &&
            in_array($data["AD_LOCATION"], ['top', 'both'] ) ) { ?>
            <div class="top-adscript top-ad-static"><?=
            $data['TOP_ADSCRIPT'] ?></div>
            <?php
        }
        ?>
        <div class="static small-margin-current-activity <?= $page_border ?>">
        <?php
        if (!$_SERVER["MOBILE"] && isset($data["AD_LOCATION"]) &&
            in_array($data["AD_LOCATION"], ['side', 'both'] ) ) { ?>
            <div class="side-adscript"><?= $data['SIDE_ADSCRIPT'] ?></div><?php
        }
        /* this is used by the captcha time out mechanism
           and the suggest a site time out mechanism
           see RegisterController for where $data['value'] set
         */
        if (isset($data["value"]) && !empty($data['page']) &&
            !empty($this->page_objects[$data['page']])) {
            e(str_replace("%s", $this->page_objects[$data['page']],
                $data["value"]));
        } else {
            if (!empty($data['MEDIA_NAME'])) {
                $folder_prefix = C\BASE_URL . "/p/".
                    $data['PAGE_NAME']. '?' . $token_string; ?>
                <div class="top-margin"><b><?=
                tl('static_view_places') ?></b> : <?php
                if (!empty($data['PREV_LINK'])) {
                    e("<a href='{$data['PREV_LINK']
                        }'>&lt;&lt;</a>&nbsp;");
                }
                $name_parts = pathinfo($data['MEDIA_NAME']);
                $this->element('wiki')->renderPath("resource-path",
                    $data, [$folder_prefix => $data['PAGE_NAME']], "",
                    $name_parts['filename']);
                if (!empty($data['NEXT_LINK'])) {
                    e("&nbsp;<a href='{$data['NEXT_LINK']
                        }'>&gt;&gt;</a>");
                } ?>
                </div><?php
                e($this->element("wiki")->dynamicSubstitutions(
                    C\PUBLIC_GROUP_ID, $data, $data['PAGE']));
            } else if (isset($data['page_type']) &&
                $data['page_type'] == 'media_list') {
                $this->element("wiki")->renderResources($data, true,
                    false);
            } else {
                e($this->element("wiki")->dynamicSubstitutions(
                    C\PUBLIC_GROUP_ID, $data,
                    $this->page_objects[$data['page']]));
            }
        }?>
        </div><?php
        if (isset($data['PAGE_FOOTER'])) {
            ?><div class="current-activity-footer">
            <?= $this->element("wiki")->dynamicSubstitutions(C\PUBLIC_GROUP_ID,
                $data, $data['PAGE_FOOTER']);
            ?></div><?php
        } else {
            ?>
            <div class="current-activity-footer center">
                <?php $this->element("footer")->render($data);?>
            </div>
            <?php
        }
    }
}
ViewGit