Last commit for views/elements/resultseditor_element.php: 9ff742e4cc2ef0dba312dd0c5f642890b6945730

First pass at converting files to use autoloading! Take care if you have an old yioop system you are upgrading, a=chris

Chris Pollett [2015-07-01 02:Jul:st]
First pass at converting files to use autoloading! Take care if you have an old yioop system you are upgrading, a=chris
<?php
/**
 *  SeekQuarry/Yioop --
 *  Open Source Pure PHP Search Engine, Crawler, and Indexer
 *
 *  Copyright (C) 2009 - 2014  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 <http://www.gnu.org/licenses/>.
 *
 *  END LICENSE
 *
 * @author Chris Pollett chris@pollett.org
 * @package seek_quarry
 * @subpackage element
 * @license http://www.gnu.org/licenses/ GPL3
 * @link http://www.seekquarry.com/
 * @copyright 2009 - 2014
 * @filesource
 */
if(!defined('BASE_DIR')) {echo "BAD REQUEST"; exit();}
/**
 * Element used to control how urls are filtered out of search results
 * (if desired) after a crawl has already been performed.
 *
 * @author Chris Pollett
 *
 * @package seek_quarry
 * @subpackage element
 */
class ResultsEditorElement extends Element
{
    /**
     * Draws the Screen for the Search Filter activity. This activity is
     * used to filter urls out of the search results
     *
     * @param array $data keys used to store disallowed_sites
     */
    function render($data)
    {
    ?>
        <div class="current-activity">
        <h2><?php e(tl('resultseditor_element_edit_page'))?></h2>
        <form id="urlLookupForm" method="post" action=''>
        <div  class="top-margin"><b><label for="edited-result-pages"><?php
            e(tl('resultseditor_element_edited_pages'))?></label></b>
        <input type="hidden" name="c" value="admin" />
        <input type="hidden" name="<?php e(CSRF_TOKEN); ?>" value="<?php
            e($data[CSRF_TOKEN]); ?>" />
        <input type="hidden" name="a" value="resultsEditor" />
        <input type="hidden" name="arg" value="load_url" />
        <?php $this->view->helper("options")->render(
                "edited-result-pages", "LOAD_URL",
                $data['URL_LIST'],
                tl('resultseditor_element_url_list'));
            ?><button class="button-box" type="submit" ><?php
            e(tl('resultseditor_element_load_page'));
            ?></button>
        </div>
        </form>

        <form id="urlUpdateForm" method="post"
            action='?c=admin&amp;a=resultsEditor&amp;<?php
            e(CSRF_TOKEN."=".$data[CSRF_TOKEN]); ?>' >
        <div  class="top-margin">
        <input type="hidden" name="arg" value="save_page" />
        <b><label for="urlfield"><?php
            e(tl('resultseditor_element_page_url'))?></label></b>
        <input type="text" id="urlfield"
            name="URL"  class="extra-wide-field" value='<?php
                e($data["URL"]); ?>' />
        </div>
        <div  class="top-margin">
        <b><label for="titlefield"><?php
            e(tl('resultseditor_element_page_title'))?></label></b>
        <input type="text" id="titlefield"
            name="TITLE"  class="extra-wide-field" value='<?php
                e($data["TITLE"]); ?>' />
        </div>
        <div class="top-margin"><label for="descriptionfield"><b><?php
            e(tl('resultseditor_element_description'));
                ?></b></label></div>
        <textarea class="tall-text-area" id="descriptionfield"
            name="DESCRIPTION" ><?php e($data['DESCRIPTION']);
        ?></textarea>
        <div class="center slight-pad"><button class="button-box"
            type="reset"><?php e(tl('resultseditor_element_reset'));
            ?></button> &nbsp;&nbsp; <button class="button-box"
            type="submit" ><?php
            e(tl('resultseditor_element_save_page'));
            ?></button></div>
        </form>
        <h2><?php e(tl('resultseditor_element_filter_websites'))?></h2>
        <form id="searchfiltersForm" method="post" action='?'>
        <input type="hidden" name="c" value="admin" />
        <input type="hidden" name="<?php e(CSRF_TOKEN); ?>" value="<?php
            e($data[CSRF_TOKEN]); ?>" />
        <input type="hidden" name="a" value="resultsEditor" />
        <input type="hidden" name="arg" value="urlfilter" />
        <input type="hidden" name="posted" value="posted" />

        <div class="top-margin"><label for="disallowed-sites"><b><?php
            e(tl('resultseditor_element_sites_to_filter'));
                ?></b></label></div>
        <textarea class="tall-text-area" id="disallowed-sites"
            name="disallowed_sites" ><?php e($data['disallowed_sites']);
        ?></textarea>
        <div class="center slight-pad"><button class="button-box"
            type="submit"><?php e(tl('resultseditor_element_save_filter'));
            ?></button></div>
        </form>
        </div>
    <?php
    }
}
?>
ViewGit