PATH:
home
/
centosnipponia
/
public_html
/
nipponiacom2
/
caribe
/
libraries
/
regularlabs
/
helpers
<?php /** * @package Regular Labs Library * @version 16.7.10746 * * @author Peter van Westen <info@regularlabs.com> * @link http://www.regularlabs.com * @copyright Copyright © 2016 Regular Labs All Rights Reserved * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL */ defined('_JEXEC') or die; class RLTags { static $protected_characters = array( '=' => '[[:EQUAL:]]', '"' => '[[:QUOTE:]]', ',' => '[[:COMMA:]]', '|' => '[[:BAR:]]', ':' => '[[:COLON:]]', ); public static function getValuesFromString($string = '', $main_key = 'title', $known_boolean_keys = array()) { // Only one value, so return simple key/value object if (strpos($string, '="') == false && strpos($string, '|') == false) { return (object) array($main_key => $string); } self::protectSpecialChars($string); // No foo="bar" syntax found, so assume old syntax if (strpos($string, '="') == false) { self::unprotectSpecialChars($string); $values = self::getTagValues($string, array($main_key)); self::convertOldSyntax($values, $known_boolean_keys); return $values; } // Cannot find right syntax, so return simple key/value object if (!preg_match_all('#([a-z0-9-_]+)\s*=\s*"(.*?)"#si', $string, $values)) { return (object) array($main_key => $string); } $tag = new stdClass; foreach ($values['1'] as $i => $key) { $value = $values['2'][$i]; self::unprotectSpecialChars($value); // Convert numeric values to ints/floats if (is_numeric($value)) { $value = $value + 0; } // Convert boolean values to actual booleans $value = ($value === 'true' ? true : $value); $value = ($value === 'false' ? false : $value); $tag->{$key} = $value; } return $tag; } public static function protectSpecialChars(&$string) { $escaped_chars = array_keys(self::$protected_characters); array_walk($escaped_chars, function (&$char) { $char = '\\' . $char; }); // replace escaped characters with special markup $string = str_replace( $escaped_chars, array_values(self::$protected_characters), $string ); if (!preg_match_all('#(<.*?>|{.*?}|\[.*?\])#s', $string, $tags)) { return; } foreach ($tags['0'] as $tag) { // replace unescaped characters with special markup $protected = str_replace( array('=', '"'), array(self::$protected_characters['='], self::$protected_characters['"']), $tag ); $string = str_replace($tag, $protected, $string); } } public static function unprotectSpecialChars(&$string) { // replace special markup with unescaped characters $string = str_replace( array_values(self::$protected_characters), array_keys(self::$protected_characters), $string ); } /* @Deprecated */ public static function getTagValues($string = '', $keys = array('title'), $separator = '|', $equal = '=', $limit = 0) { $temp_separator = '[[SEPARATOR]]'; $temp_equal = '[[EQUAL]]'; $tag_start = '[[TAG]]'; $tag_end = '[[/TAG]]'; // replace separators and equal signs with special markup $string = str_replace(array($separator, $equal), array($temp_separator, $temp_equal), $string); // replace protected separators and equal signs back to original $string = str_replace(array('\\' . $temp_separator, '\\' . $temp_equal), array($separator, $equal), $string); // protect all html tags preg_match_all('#</?[a-z][^>]*>#si', $string, $tags, PREG_SET_ORDER); if (!empty($tags)) { foreach ($tags as $tag) { $string = str_replace( $tag['0'], $tag_start . base64_encode(str_replace(array($temp_separator, $temp_equal), array($separator, $equal), $tag['0'])) . $tag_end, $string ); } } // split string into array $vals = $limit ? explode($temp_separator, $string, (int) $limit) : explode($temp_separator, $string); // initialize return vars $tag_values = new stdClass; $tag_values->params = array(); // loop through splits foreach ($vals as $i => $keyval) { // spit part into key and val by equal sign $keyval = explode($temp_equal, $keyval, 2); if (isset($keyval['1'])) { $keyval['1'] = str_replace(array($temp_separator, $temp_equal), array($separator, $equal), $keyval['1']); } // unprotect tags in key and val foreach ($keyval as $key => $val) { preg_match_all('#' . preg_quote($tag_start, '#') . '(.*?)' . preg_quote($tag_end, '#') . '#si', $val, $tags, PREG_SET_ORDER); if (!empty($tags)) { foreach ($tags as $tag) { $val = str_replace($tag['0'], base64_decode($tag['1']), $val); } $keyval[trim($key)] = $val; } } if (isset($keys[$i])) { $key = trim($keys[$i]); // if value is in the keys array add as defined in keys array // ignore equal sign $val = implode($equal, $keyval); if (substr($val, 0, strlen($key) + 1) == $key . '=') { $val = substr($val, strlen($key) + 1); } $tag_values->{$key} = $val; unset($keys[$i]); } else { // else add as defined in the string if (isset($keyval['1'])) { $tag_values->{$keyval['0']} = $keyval['1']; } else { $tag_values->params[] = implode($equal, $keyval); } } } return $tag_values; } public static function replaceKeyAliases(&$values, $key_aliases = array()) { foreach ($key_aliases as $key => $aliases) { if (isset($values->{$key})) { continue; } foreach ($aliases as $alias) { if (!isset($values->{$alias})) { continue; } $values->{$key} = $values->{$alias}; unset($values->{$alias}); } } } public static function convertOldSyntax(&$values, $known_boolean_keys = array(), $extra_key = 'class') { $extra = isset($values->class) ? array($values->class) : array(); foreach ($values->params as $i => $param) { if (!$param) { continue; } if (in_array($param, $known_boolean_keys)) { $values->{$param} = true; continue; } if (strpos($param, '=') == false) { $extra[] = $param; continue; } list($key, $val) = explode('=', $param, 2); $values->{$key} = $val; } $values->{$extra_key} = trim(implode(' ', $extra)); unset($values->params); } public static function getRegexSpaces($modifier = '+') { return '(?:\s| |&\#160;)' . $modifier; } public static function getRegexInsideTag() { return '(?:[^\{\}]*\{[^\}]*\})*.*?'; } public static function getRegexSurroundingTagPre($elements = array('p', 'span')) { return '(?:<(?:' . implode('|', $elements) . ')(?: [^>]*)?>\s*(?:<br ?/?>\s*)*){0,3}'; } public static function getRegexSurroundingTagPost($elements = array('p', 'span')) { return '(?:(?:\s*<br ?/?>)*\s*<\/(?:' . implode('|', $elements) . ')>){0,3}'; } public static function getRegexTags($tags, $include_no_attributes = true, $include_ending = true, $required_attributes = array()) { require_once __DIR__ . '/text.php'; $tags = RLText::toArray($tags); $tags = count($tags) > 1 ? '(?:' . implode('|', $tags) . ')' : $tags['0']; $value = '(?:\s*=\s*(?:"[^"]*"|\'[^\']*\'|[a-z0-9-_]+))?'; $attributes = '(?:\s+[a-z0-9-_]+' . $value . ')+'; $required_attributes = RLText::toArray($required_attributes); if (!empty($required_attributes)) { $attributes = '(?:' . $attributes . ')?' . '(?:\s+' . implode('|', $required_attributes) . ')' . $value . '(?:' . $attributes . ')?'; } if ($include_no_attributes) { $attributes = '\s*(?:' . $attributes . ')?'; } if (!$include_ending) { return '<' . $tags . $attributes . '\s*/?>'; } return '<(?:\/' . $tags . '|' . $tags . $attributes . '\s*/?)\s*/?>'; } /* * parses string through Tidy/DOMDocument to fix missing html closing tags and such */ public static function fixBrokenHtmlTags($string) { require_once JPATH_LIBRARIES . '/regularlabs/helpers/htmlfix.php'; return RLHtmlFix::_($string); } /* * remove empty tags */ public static function removeEmptyHtmlTagPairs($string, $elements = array('p', 'span')) { $breaks = '(?:<br ?/?>\s*)*'; while (preg_match('#<(' . implode('|', $elements) . ')(?: [^>]*)?>\s*(' . $breaks . ')<\/\1>\s*#s', $string, $match)) { $string = str_replace($match['0'], $match['2'], $string); } return $string; } // @Deprecated: use fixBrokenHtmlTags public static function cleanSurroundingTags($tags, $elements = array('p', 'span')) { require_once __DIR__ . '/text.php'; $breaks = '(?:(?:<br ?/?>|:\|:)\s*)*'; $keys = array_keys($tags); $string = implode(':|:', $tags); // Remove empty tags while (preg_match('#<(' . implode('|', $elements) . ')(?: [^>]*)?>\s*(' . $breaks . ')<\/\1>\s*#s', $string, $match)) { $string = str_replace($match['0'], $match['2'], $string); } // Remove paragraphs around block elements $block_elements = array( 'p', 'div', 'table', 'tr', 'td', 'thead', 'tfoot', 'h[1-6]', ); $block_elements = '(' . implode('|', $block_elements) . ')'; while (preg_match('#(<p(?: [^>]*)?>)(\s*' . $breaks . ')(<' . $block_elements . '(?: [^>]*)?>)#s', $string, $match)) { if ($match['4'] == 'p') { $match['3'] = $match['1'] . $match['3']; RLText::combinePTags($match['3']); } $string = str_replace($match['0'], $match['2'] . $match['3'], $string); } while (preg_match('#(</' . $block_elements . '>\s*' . $breaks . ')</p>#s', $string, $match)) { $string = str_replace($match['0'], $match['1'], $string); } $tags = explode(':|:', $string); $new_tags = array(); foreach ($tags as $key => $val) { $key = isset($keys[$key]) ? $keys[$key] : $key; $new_tags[$key] = $val; } return $new_tags; } // @Deprecated: use fixBrokenHtmlTags ??? public static function fixSurroundingTags($tags) { $keys = array_keys($tags); $breaks = '(?:(?:<br ?/?>|:\|:)\s*)*'; $string = implode(':|:', $tags); // Remove inline elements around block elements $string = preg_replace('#' . '<(?:' . implode('|', self::getInlineElements()) . ')(?: [^>]*)?>' . '(' . $breaks . '<(?:' . implode('|', self::getBlockElements()) . ')(?: [^>]*)?>)' . '#', '\1', $string); $string = preg_replace('#' . '(</(?:' . implode('|', self::getBlockElements()) . ')>' . $breaks . ')' . '</(?:' . implode('|', self::getInlineElements()) . ')>' . '#', '\1', $string); // Remove inner <p> tags if outer start/end <p> tags are found $string = preg_replace('#' . '(<(?:' . implode('|', self::getBlockElementsNoDiv()) . ')(?: [^>]*)?>' . $breaks . ')' . '<p(?: [^>]*)?>(.*)</p>' . '(' . $breaks . ')' . '#', '\1\2\3', $string); $string = preg_replace('#' . '(' . $breaks . ')' . '<p(?: [^>]*)?>(.*)</p>' . '(' . $breaks . '</(?:' . implode('|', self::getBlockElementsNoDiv()) . ')>)' . '#', '\1\2\3', $string); // Remove outer <p> tags around block elements $string = preg_replace('#' . '^\s*<p(?: [^>]*)?>' . '(' . $breaks . '</?(?:' . implode('|', self::getBlockElements()) . ')(?: [^>]*)?>)' . '#', '\1', $string); $string = preg_replace('#' . '(</?(?:' . implode('|', self::getBlockElements()) . ')>' . $breaks . ')' . '</p>\s*$' . '#', '\1', $string); $tags = explode(':|:', $string); $new_tags = array(); foreach ($tags as $key => $val) { $key = isset($keys[$key]) ? $keys[$key] : $key; $new_tags[$key] = $val; } return $new_tags; } private static function getBlockElements($exclude = array()) { if (!is_array($exclude)) { $exclude = array($exclude); } $elements = array( 'div', 'p', 'pre', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', ); return array_diff($elements, $exclude); } private static function getBlockElementsNoDiv($exclude = array()) { return array_diff(self::getBlockElements($exclude), array('div')); } private static function getInlineElements() { return array( 'span', 'code', 'a', 'strong', 'b', 'em', 'i', 'u', 'big', 'small', 'font', ); } /* * tags that have a matching ending tag */ private static function getPairedElements() { return array( 'div', 'p', 'span', 'pre', 'a', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'strong', 'b', 'em', 'i', 'u', 'big', 'small', 'font', // html 5 stuff 'header', 'nav', 'section', 'article', 'aside', 'footer', 'figure', 'figcaption', 'details', 'summary', 'mark', 'time', ); } public static function setSurroundingTags($pre, $post, $tags = 0) { if ($tags == 0) { // tags that have a matching ending tag $tags = self::getPairedElements(); } $a = explode('<', $pre); $b = explode('</', $post); if (count($b) > 1 && count($a) > 1) { $a = array_reverse($a); $a_pre = array_pop($a); $b_pre = array_shift($b); $a_tags = $a; foreach ($a_tags as $i => $a_tag) { $a[$i] = '<' . trim($a_tag); $a_tags[$i] = preg_replace('#^([a-z0-9]+).*$#', '\1', trim($a_tag)); } $b_tags = $b; foreach ($b_tags as $i => $b_tag) { $b[$i] = '</' . trim($b_tag); $b_tags[$i] = preg_replace('#^([a-z0-9]+).*$#', '\1', trim($b_tag)); } foreach ($b_tags as $i => $b_tag) { if ($b_tag && in_array($b_tag, $tags)) { foreach ($a_tags as $j => $a_tag) { if ($b_tag == $a_tag) { $a_tags[$i] = ''; $b[$i] = trim(preg_replace('#^</' . $b_tag . '.*?>#', '', $b[$i])); $a[$j] = trim(preg_replace('#^<' . $a_tag . '.*?>#', '', $a[$j])); break; } } } } foreach ($a_tags as $i => $tag) { if ($tag && in_array($tag, $tags)) { array_unshift($b, trim($a[$i])); $a[$i] = ''; } } $a = array_reverse($a); list($pre, $post) = array(implode('', $a), implode('', $b)); } return array(trim($pre), trim($post)); } public static function getDivTags($start_tag = '', $end_tag = '', $tag_start = '{', $tag_end = '}') { $start_div = array('pre' => '', 'tag' => '', 'post' => ''); $end_div = array('pre' => '', 'tag' => '', 'post' => ''); if (!empty($start_tag) && preg_match( '#^(?P<pre>.*?)(?P<tag>' . $tag_start . 'div(?: .*?)?' . $tag_end . ')(?P<post>.*)$#s', $start_tag, $match ) ) { $start_div = $match; } if (!empty($end_tag) && preg_match( '#^(?P<pre>.*?)(?P<tag>' . $tag_start . '/div' . $tag_end . ')(?P<post>.*)$#s', $end_tag, $match ) ) { $end_div = $match; } if (empty($start_div['tag']) || empty($end_div['tag'])) { return array($start_div, $end_div); } $extra = trim(preg_replace('#' . $tag_start . 'div(.*)' . $tag_end . '#si', '\1', $start_div['tag'])); $start_div['tag'] = '<div>'; $end_div['tag'] = '</div>'; if (empty($extra)) { return array($start_div, $end_div); } $extra = explode('|', $extra); $extras = new stdClass; foreach ($extra as $e) { if (strpos($e, ':') === false) { continue; } list($key, $val) = explode(':', $e, 2); $extras->{$key} = $val; } $attribs = ''; if (isset($extras->class)) { $attribs .= 'class="' . $extras->class . '"'; } $style = array(); if (isset($extras->width)) { if (is_numeric($extras->width)) { $extras->width .= 'px'; } $style[] = 'width:' . $extras->width; } if (isset($extras->height)) { if (is_numeric($extras->height)) { $extras->height .= 'px'; } $style[] = 'height:' . $extras->height; } if (isset($extras->align)) { $style[] = 'float:' . $extras->align; } if (!isset($extras->align) && isset($extras->float)) { $style[] = 'float:' . $extras->float; } if (!empty($style)) { $attribs .= ' style="' . implode(';', $style) . ';"'; } $start_div['tag'] = trim('<div ' . trim($attribs)) . '>'; return array($start_div, $end_div); } }
[+]
..
[-] assignment.php
[edit]
[+]
assignments
[-] assignments.php
[edit]
[-] cache.php
[edit]
[-] field.php
[edit]
[-] functions.php
[edit]
[-] groupfield.php
[edit]
[-] helper.php
[edit]
[-] html.php
[edit]
[-] htmlfix.php
[edit]
[-] licenses.php
[edit]
[-] parameters.php
[edit]
[-] protect.php
[edit]
[-] search.php
[edit]
[-] string.php
[edit]
[-] tags.php
[edit]
[-] text.php
[edit]
[-] versions.php
[edit]
[-] .htaccess.disabled
[edit]