1
0
mirror of https://github.com/e107inc/e107.git synced 2025-04-21 05:02:02 +02:00

dummy example added

This commit is contained in:
CaMer0n 2009-11-17 11:30:33 +00:00
parent 64c7ec3c99
commit 2601860317

View File

@ -0,0 +1,36 @@
<?php
// Example only for now.
class news_url // must match the plugin's folder name. ie. [PLUGIN_FOLDER]_url
{
function config()
{
e107::includeLan(e_LANGUAGEDIR.e_LANGUAGE.'/admin/lan_newspost.php');
$config = array();
$config[] = array(
'name' => LAN_EURL_MODREWR_TITLE,
'description' => LAN_EURL_MODREWR_DESCR
);
return $config;
}
function apache_create($parms)
{
}
function apache_parse($parms)
{
}
}
?>