blob: cc87f7b1d4b79be5b68ff5b0485f1d923dc76818 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
{* $Header: /cvsroot/bitweaver/_bit_kernel/modules/mod_powered_by.tpl,v 1.13 2008/08/05 06:13:50 laetzer Exp $ *}
{strip}
{bitmodule title="$moduleTitle" name="powered_by"}
<ul>
<li><a href="http://www.bitweaver.org/">{biticon ipackage="liberty" iname="bitweaver" ipath="bitweaver$size/" iexplain="Bitweaver"}</a></li>
<li><a href="http://smarty.php.net/">{biticon ipackage="liberty" iname="smarty" ipath="bitweaver$size/" iexplain="Smarty"}</a></li>
<li>
{if $gBitDbSystem eq 'adodb'}
<a href="http://adodb.sourceforge.net/">{biticon ipackage="liberty" iname="adodb" ipath="bitweaver$size/" iexplain="Adodb"}</a></li>
{else}
<a href="http://pear.php.net/">{biticon ipackage="liberty" iname="pear" ipath="bitweaver$size/" iexplain="PEAR"}</a>
{/if}
<li>
{if $gBitDbType eq 'firebird'}
<a href="http://www.firebirdsql.org/">{biticon ipackage="liberty" iname="firebird" ipath="bitweaver$size/" iexplain="Firebird"}</a>
{elseif $gBitDbType eq 'mysql' or $gBitDbType eq 'mysqli'}
<a href="http://www.mysql.com/">{biticon ipackage="liberty" iname="mysql" ipath="bitweaver$size/" iexplain="MySQL"}</a>
{elseif $gBitDbType eq 'postgres'}
<a href="http://www.postgresql.org/">{biticon ipackage="liberty" iname="postgresql" ipath="bitweaver$size/" iexplain="PostgreSQL"}</a>
{elseif $gBitDbType eq 'oracle'}
<a href="http://www.oracle.com/">{biticon ipackage="liberty" iname="oracle" ipath="bitweaver$size/" iexplain="Oracle"}</a>
{/if}
</li>
{if $gLibertySystem->isPluginActive( 'filterhtmlpure' )}
<li><a href="http://htmlpurifier.org">{biticon ipackage="liberty" iname="htmlpurifier" ipath="bitweaver/" iexplain="HTMLPurifier"}</a></li>
{/if}
{if $gBrowserInfo.browser eq 'ie' and $gBitSystem->isFeatureActive( 'themes_use_ie7-js' )}
<li><a href="http://code.google.com/p/ie7-js/">{biticon ipackage="liberty" iname="ie7" ipath="bitweaver/" iexplain="IE7-js"}</a></li>
{/if}
</ul>
{/bitmodule}
{/strip}
|