1<?php
2// (c) Copyright by authors of the Tiki Wiki CMS Groupware Project
3//
4// All Rights Reserved. See copyright.txt for details and a complete list of authors.
5// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details.
6// $Id$
7
8namespace Tiki\Wiki\SlugManager;
9
10interface Generator
11{
12	function getName();
13	function getLabel();
14	function generate($pageName, $suffix = null);
15	function degenerate($slug);
16}
17