Willkommen bei WordPress. Dies ist dein erster Beitrag. Bearbeite oder lösche ihn und beginne mit dem Schreiben!
Hallo Welt!
von raredesign | Dez 3, 2019 | Allgemein | 0 Kommentare
Cokiee Shell
Current Path : /var/www/web236/html/tmp/install_5a60ec68ac36d/libraries/phocagallery/comment/ |
Current File : //var/www/web236/html/tmp/install_5a60ec68ac36d/libraries/phocagallery/comment/comment.php |
<?php /** * @package Phoca Gallery * @author Jan Pavelka - https://www.phoca.cz * @copyright Copyright (C) Jan Pavelka https://www.phoca.cz * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 and later * @cms Joomla * @copyright Copyright (C) Open Source Matters. All rights reserved. * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php */ defined( '_JEXEC' ) or die( 'Restricted access' ); class PhocaGalleryComment { public static function closeTags($comment, $tag, $endTag) { if (substr_count(strtolower($comment), $tag) > substr_count(strtolower($comment), $endTag)) { $comment .= $endTag; $comment = PhocaGalleryComment::closeTags($comment, $tag, $endTag); } return $comment; } public static function getSmileys() { $smileys = array(); $smileys[':)'] = 'icon-s-smile'; $smileys[':lol:'] = 'icon-s-lol'; $smileys[':('] = 'icon-s-sad'; $smileys[':?'] = 'icon-s-confused'; $smileys[':wink:'] = 'icon-s-wink'; return $smileys; } /* * @based based on Seb's BB-Code-Parser script by seb * @url http://www.traum-projekt.com/forum/54-traum-scripts/25292-sebs-bb-code-parser.html */ public static function bbCodeReplace($string, $currentString = '') { while($currentString != $string) { $currentString = $string; $string = preg_replace_callback('{\[(\w+)((=)(.+)|())\]((.|\n)*)\[/\1\]}U', array('PhocaGalleryComment', 'bbCodeCallback'), $string); } return $string; } /* * @based based on Seb's BB-Code-Parser script by seb * @url http://www.traum-projekt.com/forum/54-traum-scripts/25292-sebs-bb-code-parser.html */ public static function bbCodeCallback($matches) { $tag = trim($matches[1]); $bodyString = $matches[6]; $argument = $matches[4]; switch($tag) { case 'b': case 'i': case 'u': $replacement = '<'.$tag.'>'.$bodyString.'</'.$tag.'>'; break; Default: // unknown tag => reconstruct and return original expression $replacement = '[' . $tag . ']' . $bodyString . '[/' . $tag .']'; break; } return $replacement; } } ?>
Cokiee Shell Web 1.0, Coded By Razor
Neueste Kommentare