0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
14.1-0
/
standard
/
htdocs
/
lib
/
core
/
Tiki
/
Wiki
/
[
Home
]
File: SlugManager.php
<?php // (c) Copyright 2002-2015 by authors of the Tiki Wiki CMS Groupware Project // // All Rights Reserved. See copyright.txt for details and a complete list of authors. // Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details. // $Id: SlugManager.php 55969 2015-08-02 15:07:04Z jonnybradley $ namespace Tiki\Wiki; class SlugManager { private $generators = []; private $validationCallback; function __construct() { $table = \TikiDb::get()->table('tiki_pages'); $this->validationCallback = function ($slug) use ($table) { return $table->fetchCount(['pageSlug' => $slug]) > 0; }; } function setValidationCallback(callable $callback) { $this->validationCallback = $callback; } function addGenerator(SlugManager\Generator $generator) { $this->generators[$generator->getName()] = $generator; } function getOptions() { return array_map(function ($generator) { return $generator->getLabel(); }, $this->generators); } function generate($generator, $pageName, $asciiOnly = false) { $exists = $this->validationCallback; if ($asciiOnly) { $pageName = \TikiLib::lib('tiki')->take_away_accent($pageName); $pageName = preg_replace('/[^\w-]+/', ' ', $pageName); // remove other non-word chars and replace with a space } $impl = $this->generators[$generator]; $slug = $impl->generate($pageName); $counter = 2; while ($exists($slug)) { $slug = $impl->generate($pageName, $counter++); } return $slug; } }