2017-09-24 18:01:23 +00:00
|
|
|
<?php
|
|
|
|
namespace JBBCode;
|
|
|
|
|
2019-12-23 17:53:18 +00:00
|
|
|
defined('PROJECT_PATH') OR exit('No direct script access allowed');
|
2017-09-24 18:01:23 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Provides a default set of common bbcode definitions.
|
|
|
|
*
|
|
|
|
* @author jbowens
|
|
|
|
*/
|
|
|
|
class DefaultCodeDefinitionSet implements CodeDefinitionSet
|
|
|
|
{
|
|
|
|
|
|
|
|
/* The default code definitions in this set. */
|
|
|
|
protected $definitions = array();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructs the default code definitions.
|
|
|
|
*/
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
/* [b] bold tag */
|
|
|
|
$builder = new CodeDefinitionBuilder('b', '<strong>{param}</strong>');
|
|
|
|
array_push($this->definitions, $builder->build());
|
|
|
|
|
|
|
|
/* [i] italics tag */
|
|
|
|
$builder = new CodeDefinitionBuilder('i', '<em>{param}</em>');
|
|
|
|
array_push($this->definitions, $builder->build());
|
|
|
|
|
|
|
|
/* [u] underline tag */
|
|
|
|
$builder = new CodeDefinitionBuilder('u', '<u>{param}</u>');
|
|
|
|
array_push($this->definitions, $builder->build());
|
|
|
|
|
|
|
|
$urlValidator = new \JBBCode\validators\UrlValidator();
|
|
|
|
|
|
|
|
/* [url] link tag */
|
|
|
|
$builder = new CodeDefinitionBuilder('url', '<a href="{param}">{param}</a>');
|
|
|
|
$builder->setParseContent(false)->setBodyValidator($urlValidator);
|
|
|
|
array_push($this->definitions, $builder->build());
|
|
|
|
|
|
|
|
/* [url=http://example.com] link tag */
|
|
|
|
$builder = new CodeDefinitionBuilder('url', '<a href="{option}">{param}</a>');
|
|
|
|
$builder->setUseOption(true)->setParseContent(true)->setOptionValidator($urlValidator);
|
|
|
|
array_push($this->definitions, $builder->build());
|
|
|
|
|
|
|
|
/* [img] image tag */
|
|
|
|
$builder = new CodeDefinitionBuilder('img', '<img src="{param}" />');
|
|
|
|
$builder->setUseOption(false)->setParseContent(false)->setBodyValidator($urlValidator);
|
|
|
|
array_push($this->definitions, $builder->build());
|
|
|
|
|
|
|
|
/* [img=alt text] image tag */
|
|
|
|
$builder = new CodeDefinitionBuilder('img', '<img src="{param}" alt="{option}" />');
|
|
|
|
$builder->setUseOption(true)->setParseContent(false)->setBodyValidator($urlValidator);
|
|
|
|
array_push($this->definitions, $builder->build());
|
|
|
|
|
|
|
|
/* [color] color tag */
|
|
|
|
$builder = new CodeDefinitionBuilder('color', '<span style="color: {option}">{param}</span>');
|
|
|
|
$builder->setUseOption(true)->setOptionValidator(new \JBBCode\validators\CssColorValidator());
|
|
|
|
array_push($this->definitions, $builder->build());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns an array of the default code definitions.
|
|
|
|
*/
|
|
|
|
public function getCodeDefinitions()
|
|
|
|
{
|
|
|
|
return $this->definitions;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|