DIR : /home/kozerus/public_html/zc/adam/includes/init_includes/init_html_editor.php
/home/kozerus/public_html/zc/adam/includes/init_includes
<?php
/**
* @copyright Copyright 2003-2020 Zen Cart Development Team
* @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
* @version $Id: DrByte 2020 Apr 16 Modified in v1.5.7 $
*/
if (!defined('DIR_WS_EDITORS')) define('DIR_WS_EDITORS', 'editors/');
if (!defined('IS_ADMIN_FLAG')) {
die('Illegal Access');
}
/**
* List of potential editors apps
*
* CONSTANTS are used for language-specific display names, and are defined in /YOUR_ADMIN_FOLDER/includes/languages/extra_definitions/editor_EDITORNAME.php
*
* To add additional editors, add your own entries to the $editors_list array by creating a NEW FILE in /YOUR_ADMIN_FOLDER/includes/extra_functions/editor_EDITORNAME.php containing just one line of PHP:
* <?php $editors_list['NAME_OF_EDITOR'] = array('desc' => EDITOR_CONSTANT, 'handler' => 'editorhandlerfilename.php', 'special_needs' => '');
*
*
* NOTE: THERE SHOULD BE NO NEED TO EDIT ANYTHING BELOW THIS LINE:
*/
$editors_list['NONE'] = array('desc' => EDITOR_NONE, 'handler' => '', 'special_needs' => ''); // plain text
$editors_list['CKEDITOR'] = array('desc' => EDITOR_CKEDITOR, 'handler' => 'ckeditor.php', 'special_needs' => '');
if (is_dir(DIR_FS_CATALOG . DIR_WS_EDITORS . 'tiny_mce')) $editors_list['TINYMCE'] = array('desc' => EDITOR_TINYMCE, 'handler' => 'tinymce.php', 'special_needs' => '');
/**
* Prepare pulldown menu for use in various pages where editor selections should be offered
*/
$editors_pulldown = array();
$i = 0;
foreach($editors_list as $key=>$value) {
$i++;
$editors_pulldown[] = array('id' => $i, 'text' => $value['desc'], 'key' => $key);
}
/**
* Session default is set if no preference has been chosen during this login session
*/
if (!isset($_SESSION['html_editor_preference_status'])) {
$_SESSION['html_editor_preference_status'] = HTML_EDITOR_PREFERENCE;
}
/**
* If a new preference has been selected via a pulldown menu, set the details:
*/
$new_editor_choice = (isset($_GET['action']) && $_GET['action'] == 'set_editor' && isset($_GET['reset_editor'])) ? $_GET['reset_editor'] : -1;
/**
* Set a few variables for use in admin pages
*
* $_SESSION['html_editor_preference_status'] = the key name of the selected editor for this session
* $current_editor_key = the numerical index pointer as default for the pulldown menu drawn when offering editor selection
* $editor_handler = the path to the handler file containing the logic required for <HEAD> insertion to activate editor features
*
*/
foreach($editors_pulldown as $key=>$value) {
if ($new_editor_choice == $value['id']) $_SESSION['html_editor_preference_status'] = $value['key'];
if ($_SESSION['html_editor_preference_status'] == $value['key']) $current_editor_key = $value['id'];
}
$editor_handler = DIR_WS_INCLUDES . $editors_list[$_SESSION['html_editor_preference_status']]['handler'];
$editor_handler = ($editor_handler == DIR_WS_INCLUDES) ? '' : $editor_handler;
/* if handler not found, reset to NONE */
if ($editor_handler != '' && !file_exists($editor_handler)) {
$editor_handler = '';
$_SESSION['html_editor_preference_status'] = 'NONE';
$current_editor_key = 0;
}
/**
* Debug code:
*/
if (false) {
echo '<br /><pre>'; print_r($_GET); echo '</pre>';
echo '<br />new_editor_choice = ' . $new_editor_choice;
echo '<br />current_editor_key = ' . $current_editor_key;
echo '<br />$_SESSION[html_editor_preference_status] = ' . $_SESSION['html_editor_preference_status'];
echo '<br />editor_handler = ' . $editor_handler;
echo '<br /><pre>'; print_r($editors_list); echo '</pre>';
echo '<br /><pre>'; print_r($editors_pulldown); echo '</pre>';
//die('debug end');
}
//
koh5_pano
Drag mouse to navigate.
Navigation
- Left/Right Mouse drag: Changes camera heading.
- Up/Sown Mouse drag: Changes camera pitch.
- Scroll wheel: Changes camera field of view.
- I-Key: Displays Info panel with canvas size, image size and FPS.
17.Aug.2010, Martin Wengenmayer