1
0
mirror of https://github.com/e107inc/e107.git synced 2025-10-11 13:04:28 +02:00
Files
php-e107/e107_plugins/featurebox/e_shortcode.php
2009-11-25 12:01:25 +00:00

16 lines
484 B
PHP

<?php
/*
* Copyright (c) e107 Inc 2009 - e107.org, Licensed under GNU GPL (http://www.gnu.org/licenses/gpl.txt)
* $Id: e_shortcode.php,v 1.1 2009-11-25 12:01:25 e107coders Exp $
*
* Banner shortcode batch class - shortcodes available site-wide. ie. equivalent to multiple .sc files.
*/
class featurebox_shortcodes // must match the plugin's folder name. ie. [PLUGIN_FOLDER]_shortcodes
{
function sc_featurebox($parm)
{
require_once(e_PLUGIN."featurebox/featurebox.php");
}
}
?>