Файловый менеджер - Редактировать - /var/www/iplanru/data/www/i-plan.ru/components/com_jce/editor/tiny_mce/plugins/styleselect/classes/config.php
Назад
<?php /** * @package JCE * @copyright Copyright (c) 2009-2014 Ryan Demmer. All rights reserved. * @license GNU/GPL 2 or later - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html * JCE is free software. This version may have been modified pursuant * to the GNU General Public License, and as distributed it includes or * is derivative of works licensed under the GNU General Public License or * other free or open source software licenses. */ class WFStyleselectPluginConfig { public static function getConfig(&$settings) { wfimport('admin.models.editor'); $model = new WFModelEditor(); $wf = WFEditor::getInstance(); $custom_styles = json_decode($wf->getParam('styleselect.custom_styles', $wf->getParam('editor.custom_styles', ''))); $include = (array) $wf->getParam('styleselect.styles', array('stylesheet', 'custom')); if (!empty($custom_styles) && in_array('custom', $include)) { // Styles list (legacy) $theme_advanced_styles = $wf->getParam('editor.theme_advanced_styles', ''); if (!empty($theme_advanced_styles)) { $settings['theme_advanced_styles'] = implode(';', explode(',', $theme_advanced_styles)); } $styles = array(); $blocks = array('section', 'nav', 'article', 'aside', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'header', 'footer', 'address', 'main', 'p', 'pre', 'blockquote', 'figure', 'figcaption', 'div'); foreach ((array) $custom_styles as $style) { if (isset($style->styles)) { $style->styles = self::cleanJSON($style->styles); } if (isset($style->element)) { if (in_array($style->element, $blocks)) { $style->block = $style->element; } else { $style->inline = $style->element; } // remove $style->remove = "all"; $selector[] = $style->element; unset($style->element); } else { $style->element = 'span'; if (!isset($style->selector)) { $style->selector = '*'; } } $styles[] = $style; } if (!empty($styles)) { $settings['style_formats'] = htmlentities(json_encode($styles), ENT_NOQUOTES, "UTF-8"); } } // set this value false if stylesheet not included if (in_array('stylesheet', $include) === false) { $settings['styleselect_stylesheet'] = false; } } protected static function cleanJSON($string, $delim = ";") { $ret = array(); foreach (explode($delim, $string) as $item) { $item = trim($item); // split style at colon $parts = explode(":", $item); if (count($parts) < 2) { continue; } // cleanup string $parts = preg_replace('#^["\']#', '', $parts); $parts = preg_replace('#["\']$#', '', $parts); $ret[trim($parts[0])] = trim($parts[1]); } return $ret; } /** * Get a list of editor font families * * @return string font family list * @param string $add Font family to add * @param string $remove Font family to remove */ protected static function getFonts() { $wf = WFEditor::getInstance(); $add = $wf->getParam('editor.theme_advanced_fonts_add'); $remove = $wf->getParam('editor.theme_advanced_fonts_remove'); // Default font list $fonts = self::$fonts; if (empty($remove) && empty($add)) { return ""; } $remove = preg_split('/[;,]+/', $remove); if (count($remove)) { foreach ($fonts as $key => $value) { foreach ($remove as $gone) { if ($gone && preg_match('/^' . $gone . '=/i', $value)) { // Remove family unset($fonts[$key]); } } } } foreach (explode(";", $add) as $new) { // Add new font family if (preg_match('/([^\=]+)(\=)([^\=]+)/', trim($new)) && !in_array($new, $fonts)) { $fonts[] = $new; } } natcasesort($fonts); return implode(';', $fonts); } } ?>
| ver. 1.4 |
Github
|
.
| PHP 5.4.45-1~dotdeb+6.1 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка