24 lines
296 B
PHP
24 lines
296 B
PHP
|
<?php
|
||
|
|
||
|
/*
|
||
|
* Nibbleblog -
|
||
|
* http://www.nibbleblog.com
|
||
|
* Author Diego Najar
|
||
|
|
||
|
* All Nibbleblog code is released under the GNU General Public License.
|
||
|
* See COPYRIGHT.txt and LICENSE.txt.
|
||
|
*/
|
||
|
|
||
|
class Plugin {
|
||
|
|
||
|
public static function title()
|
||
|
{
|
||
|
global $page;
|
||
|
|
||
|
return $page['title'];
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
?>
|