1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-18 12:21:45 +02:00

new featurebox - work in progress

This commit is contained in:
secretr
2009-11-26 17:15:46 +00:00
parent d61aced8d4
commit c54b2651c1
5 changed files with 187 additions and 79 deletions

View File

@@ -0,0 +1,37 @@
<?php
/*
+ ----------------------------------------------------------------------------+
| e107 website system
|
| Copyright (c) e107 Inc. 2001-2009
| http://e107.org
|
| Released under the terms and conditions of the
| GNU General Public License (http://gnu.org).
|
| $Source: /cvs_backup/e107_0.8/e107_plugins/featurebox/templates/layout/default_template.php,v $
| $Revision: 1.1 $
| $Date: 2009-11-26 17:15:45 $
| $Author: secretr $
+----------------------------------------------------------------------------+
*/
$FEATUREBOX_TEMPLATE['default'] = "
<div class='defaulttext'><b>$fb_title</b></div>
<hr />
$fb_text
";
$FEATUREBOX_TEMPLATE['centered'] = "
<div class='defaulttext' style='text-align: center;'><b>$fb_title</b>
<hr />
$fb_text
</div>
<br /><br />
";
?>