mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
6baaa1120f
Adding empty directories where overrides for the core views can be placed. Adding an empty directory for elements [1127] Adding directory to hold core inflection files [1128] More work on the new inflector. This still is not completed but should be soon [1130] Documentation strings, du jour. [1131] Docstringed and ready. Inflector lacks one docstring. It is noted in its todo [1132] Incomplete documentation, and some corrections to previous documentation. Gwoo noted that there'll be more changes in the Helpers soon, so I back off here. [1134] Adding before filters back to code. Commented out a regex in Inflector::pluralize(); that os causing problems. Removed a duplicate define in index.php. Removed the bare array being set automatically when using requestAction(). With this change you must use requestAction(); like this. $object->requestAction('/bare/controller/action/param'); Added GOTCHAS file with links to problems people may have with CakePHP. Some more work done on new Inflector. [1135] Added a check when trying to access a private method of a controller. This will now display an error page informing user that this is not allowed. [1137] Fixed a few undefined variable errors in the code Corrected problem with double layout display when an error is returned and caught. git-svn-id: https://svn.cakephp.org/repo/trunk/cake@1138 3807eeeb-6ff5-0310-8944-8be069107fe0
366 lines
No EOL
10 KiB
PHP
366 lines
No EOL
10 KiB
PHP
<?php
|
|
/* SVN FILE: $Id$ */
|
|
|
|
/**
|
|
* Text-to-HTML parser.
|
|
*
|
|
* Text-to-html parser, similar to {@link http://textism.com/tools/textile/ Textile} or {@link http://www.whytheluckystiff.net/ruby/redcloth/ RedCloth}.
|
|
*
|
|
* PHP versions 4 and 5
|
|
*
|
|
* CakePHP : Rapid Development Framework <http://www.cakephp.org/>
|
|
* Copyright (c) 2005, CakePHP Authors/Developers
|
|
*
|
|
* Author(s): Michal Tatarynowicz aka Pies <tatarynowicz@gmail.com>
|
|
* Larry E. Masters aka PhpNut <nut@phpnut.com>
|
|
* Kamil Dzielinski aka Brego <brego.dk@gmail.com>
|
|
*
|
|
* Licensed under The MIT License
|
|
* Redistributions of files must retain the above copyright notice.
|
|
*
|
|
* @filesource
|
|
* @author CakePHP Authors/Developers
|
|
* @copyright Copyright (c) 2005, CakePHP Authors/Developers
|
|
* @link https://trac.cakephp.org/wiki/Authors Authors/Developers
|
|
* @package cake
|
|
* @subpackage cake.cake.libs
|
|
* @since CakePHP v 0.2.9
|
|
* @version $Revision$
|
|
* @modifiedby $LastChangedBy$
|
|
* @lastmodified $Date$
|
|
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
|
|
*/
|
|
|
|
/**
|
|
* Included libraries.
|
|
*/
|
|
uses('object');
|
|
|
|
/**
|
|
* Text-to-HTML parser.
|
|
*
|
|
* Text-to-html parser, similar to Textile or RedCloth, only with a little different syntax.
|
|
*
|
|
* @package cake
|
|
* @subpackage cake.cake.libs
|
|
* @since CakePHP v 0.2.9
|
|
*/
|
|
|
|
class Flay extends Object
|
|
{
|
|
/**
|
|
* Text to be parsed.
|
|
*
|
|
* @var string
|
|
*/
|
|
var $text = null;
|
|
|
|
/**
|
|
* Set this to allow HTML in the markup.
|
|
*
|
|
* @var boolean
|
|
*/
|
|
var $allow_html = false;
|
|
|
|
/**
|
|
* Constructor.
|
|
*
|
|
* @param string $text
|
|
*/
|
|
function __construct ($text=null)
|
|
{
|
|
$this->text = $text;
|
|
parent::__construct();
|
|
}
|
|
|
|
/**
|
|
* Returns given text translated to HTML using the Flay syntax.
|
|
*
|
|
* @param string $text String to format
|
|
* @param boolean $bare Set this to only do <p> transforms and > to >, no typography additions.
|
|
* @param boolean $allowHtml Set this to trim whitespace and disable all HTML
|
|
* @return string Formatted text
|
|
*/
|
|
function toHtml ($text=null, $bare=false, $allowHtml=false)
|
|
{
|
|
|
|
if (empty($text) && empty($this->text))
|
|
{
|
|
return false;
|
|
}
|
|
|
|
$text = $text? $text: $this->text;
|
|
|
|
// trim whitespace and disable all HTML
|
|
if ($allowHtml)
|
|
{
|
|
$text = trim($text);
|
|
}
|
|
else
|
|
{
|
|
$text = str_replace('<', '<', str_replace('>', '>', trim($text)));
|
|
}
|
|
|
|
if (!$bare)
|
|
{
|
|
// multi-paragraph functions
|
|
$text = preg_replace('#(?:[\n]{0,2})"""(.*)"""(?:[\n]{0,2})#s', "\n\n%BLOCKQUOTE%\n\n\\1\n\n%ENDBLOCKQUOTE%\n\n", $text);
|
|
$text = preg_replace('#(?:[\n]{0,2})===(.*)===(?:[\n]{0,2})#s', "\n\n%CENTER%\n\n\\1\n\n%ENDCENTER%\n\n", $text);
|
|
}
|
|
|
|
// pre-parse newlines
|
|
$text = preg_replace("#\r\n#", "\n", $text);
|
|
$text = preg_replace("#[\n]{2,}#", "%PARAGRAPH%", $text);
|
|
$text = preg_replace('#[\n]{1}#', "%LINEBREAK%", $text);
|
|
|
|
// split into paragraphs and parse
|
|
$out = '';
|
|
foreach (split('%PARAGRAPH%', $text) as $line)
|
|
{
|
|
|
|
if ($line)
|
|
{
|
|
|
|
if (!$bare)
|
|
{
|
|
// pre-parse links
|
|
$links = array();
|
|
$regs = null;
|
|
if (preg_match_all('#\[([^\[]{4,})\]#', $line, $regs))
|
|
{
|
|
foreach ($regs[1] as $reg)
|
|
{
|
|
$links[] = $reg;
|
|
$line = str_replace("[{$reg}]",'%LINK'.(count($links)-1).'%', $line);
|
|
}
|
|
}
|
|
|
|
// MAIN TEXT FUNCTIONS
|
|
// bold
|
|
$line = ereg_replace("\*([^\*]*)\*", "<strong>\\1</strong>", $line);
|
|
// italic
|
|
$line = ereg_replace("_([^_]*)_", "<em>\\1</em>", $line);
|
|
}
|
|
|
|
// entities
|
|
$line = str_replace(' - ', ' – ', $line);
|
|
$line = str_replace(' -- ', ' — ', $line);
|
|
$line = str_replace('(C)', '©', $line);
|
|
$line = str_replace('(R)', '®', $line);
|
|
$line = str_replace('(TM)', '™', $line);
|
|
|
|
// guess e-mails
|
|
$emails = null;
|
|
if (preg_match_all("#([_A-Za-z0-9+-+]+(?:\.[_A-Za-z0-9+-]+)*@[A-Za-z0-9-]+(?:\.[A-Za-z0-9-]+)*)#", $line, $emails))
|
|
{
|
|
foreach ($emails[1] as $email)
|
|
{
|
|
$line = str_replace($email, "<a href=\"mailto:{$email}\">{$email}</a>", $line);
|
|
}
|
|
}
|
|
|
|
if (!$bare)
|
|
{
|
|
// guess links
|
|
$urls = null;
|
|
if (preg_match_all("#((?:http|https|ftp|nntp)://[^ ]+)#", $line, $urls))
|
|
{
|
|
foreach ($urls[1] as $url)
|
|
{
|
|
$line = str_replace($url, "<a href=\"{$url}\">{$url}</a>", $line);
|
|
}
|
|
}
|
|
if (preg_match_all("#(www\.[^\n\%\ ]+[^\n\%\,\.\ ])#", $line, $urls))
|
|
{
|
|
foreach ($urls[1] as $url)
|
|
{
|
|
$line = str_replace($url, "<a href=\"http://{$url}\">{$url}</a>", $line);
|
|
}
|
|
}
|
|
|
|
// re-parse links
|
|
if (count($links))
|
|
{
|
|
for ($ii=0; $ii<count($links); $ii++)
|
|
{
|
|
if (preg_match("#^(http|https|ftp|nntp)://#", $links[$ii]))
|
|
{
|
|
$prefix = null;
|
|
}
|
|
else
|
|
{
|
|
$prefix = 'http://';
|
|
}
|
|
|
|
if (preg_match('#^[^\ ]+\.(jpg|jpeg|gif|png)$#', $links[$ii]))
|
|
{
|
|
$with = "<img src=\"{$prefix}{$links[$ii]}\" alt=\"\" />";
|
|
}
|
|
elseif (preg_match('#^([^\]\ ]+)(?:\ ([^\]]+))?$#', $links[$ii], $regs))
|
|
{
|
|
if (isset($regs[2]))
|
|
{
|
|
if (preg_match('#\.(jpg|jpeg|gif|png)$#', $regs[2]))
|
|
{
|
|
$body = "<img src=\"{$prefix}{$regs[2]}\" alt=\"\" />";
|
|
}
|
|
else
|
|
{
|
|
$body = $regs[2];
|
|
}
|
|
|
|
}
|
|
else
|
|
{
|
|
$body = $links[$ii];
|
|
}
|
|
|
|
$with = "<a href=\"{$prefix}{$regs[1]}\" target=\"_blank\">{$body}</a>";
|
|
}
|
|
else
|
|
{
|
|
$with = $prefix.$links[$ii];
|
|
}
|
|
|
|
$line = str_replace("%LINK{$ii}%", $with, $line);
|
|
}
|
|
}
|
|
}
|
|
|
|
// re-parse newlines
|
|
$out .= str_replace('%LINEBREAK%', "<br />\n", "<p>{$line}</p>\n");
|
|
}
|
|
}
|
|
|
|
if (!$bare)
|
|
{
|
|
// re-parse multilines
|
|
$out = str_replace('<p>%BLOCKQUOTE%</p>', "<blockquote>", $out);
|
|
$out = str_replace('<p>%ENDBLOCKQUOTE%</p>', "</blockquote>", $out);
|
|
$out = str_replace('<p>%CENTER%</p>', "<center>", $out);
|
|
$out = str_replace('<p>%ENDCENTER%</p>', "</center>", $out);
|
|
}
|
|
|
|
return $out;
|
|
}
|
|
|
|
/**
|
|
* Return the words of the string as an array.
|
|
*
|
|
* @param string $string
|
|
* @return array Array of words
|
|
*/
|
|
function extractWords ($string)
|
|
{
|
|
return preg_split('/[\s,\.:\/="!\(\)<>~\[\]]+/', $string);
|
|
}
|
|
|
|
/**
|
|
* Return given string with words in array colorMarked, up to a number of times (defaults to 5).
|
|
*
|
|
* @param array $words Words to look for and markup
|
|
* @param string $string String to look in
|
|
* @param integer $max_snippets Max number of snippets to extract
|
|
* @return string
|
|
* @see colorMark
|
|
*/
|
|
function markedSnippets ($words, $string, $max_snippets=5)
|
|
{
|
|
|
|
$string = strip_tags($string);
|
|
|
|
$snips = array();
|
|
$rest = $string;
|
|
foreach ($words as $word)
|
|
{
|
|
if (preg_match_all("/[\s,]+.{0,40}{$word}.{0,40}[\s,]+/i", $rest, $r))
|
|
{
|
|
foreach ($r as $result)
|
|
{
|
|
$rest = str_replace($result, '', $rest);
|
|
}
|
|
$snips = array_merge($snips, $r[0]);
|
|
}
|
|
}
|
|
|
|
if (count($snips) > $max_snippets)
|
|
{
|
|
$snips = array_slice($snips, 0, $max_snippets);
|
|
}
|
|
$joined = join(' <b>...</b> ', $snips);
|
|
$snips = $joined? "<b>...</b> {$joined} <b>...</b>": substr($string, 0, 80) . '<b>...</b>';
|
|
|
|
return Flay::colorMark($words, $snips);
|
|
}
|
|
|
|
/**
|
|
* Returns string with EM elements with color classes added.
|
|
*
|
|
* @param array $words Array of words to be colorized
|
|
* @param string $string Text in which the words might be found
|
|
* @return string
|
|
*/
|
|
function colorMark($words, $string)
|
|
{
|
|
$colors = array('yl','gr','rd','bl','fu','cy');
|
|
|
|
$nextColorIndex = 0;
|
|
foreach ($words as $word)
|
|
{
|
|
$string = preg_replace("/({$word})/i", '<em class="' . $colors[$nextColorIndex%count($colors)] . "\">\\1</em>", $string);
|
|
$nextColorIndex++;
|
|
}
|
|
|
|
return $string;
|
|
}
|
|
|
|
/**
|
|
* Returns given text with tags stripped out.
|
|
*
|
|
* @param string $text
|
|
* @return string
|
|
*/
|
|
function toClean ($text)
|
|
{
|
|
return strip_tags(html_entity_decode($text, ENT_QUOTES));
|
|
}
|
|
|
|
/**
|
|
* Return parsed text with tags stripped out.
|
|
*
|
|
* @param string $text
|
|
* @return string
|
|
*/
|
|
function toParsedAndClean ($text)
|
|
{
|
|
return Flay::toClean(Flay::toHtml($text));
|
|
}
|
|
|
|
/**
|
|
* Return a fragment of a text, up to $length characters long, with an ellipsis after it.
|
|
*
|
|
* @param string $text Text to be truncated.
|
|
* @param integer $length Max length of text.
|
|
* @param string $ellipsis Sign to print after truncated text.
|
|
* @return string
|
|
*/
|
|
function fragment ($text, $length, $ellipsis='...')
|
|
{
|
|
$soft = $length - 5;
|
|
$hard = $length + 5;
|
|
$rx = '/(.{' . $soft . ',' . $hard . '})[\s,\.:\/="!\(\)<>~\[\]]+.*/';
|
|
if (preg_match($rx, $text, $r))
|
|
{
|
|
$out = $r[1];
|
|
}
|
|
else
|
|
{
|
|
$out = substr($text, 0, $length);
|
|
}
|
|
|
|
$out = $out . (strlen($out)<strlen($text)? $ellipsis: null);
|
|
return $out;
|
|
}
|
|
}
|
|
|
|
?>
|