0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
coppermine
/
1.5.12-0
/
standard
/
htdocs
/
plugins
/
sample
/
[
Home
]
File: configuration.php
<?php /************************* Coppermine Photo Gallery ************************ Copyright (c) 2003-2011 Coppermine Dev Team v1.0 originally written by Gregory Demar This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3 as published by the Free Software Foundation. ******************************************** Coppermine version: 1.5.12 $HeadURL: https://coppermine.svn.sourceforge.net/svnroot/coppermine/trunk/cpg1.5.x/plugins/sample/configuration.php $ $Revision: 8154 $ **********************************************/ $name = $lang_plugin_php['sample_config_name']; $description = $lang_plugin_php['sample_config_description'] . ' ' . cpg_display_help('f=plugins.htm&as=plugin_bundled_sample&ae=plugin_bundled_sample_end', '400', '200'); $author = 'Coppermine Development Team'; $version = '1.6'; $plugin_cpg_version = array('min' => '1.5'); /* * $extra_info is displayed with the title of a plugin that IS installed and * can be used to present extra information. In this case we show a complex * example that forms a button the user can click. */ $extra_info = <<<EOT <table border="0" cellspacing="0" cellpadding="0"> <tr> <td class="admin_menu"><a href="docs/en/plugins.htm" title="{$lang_plugin_php['sample_plugin_documentation']}">{$lang_plugin_php['sample_plugin_documentation']}</a></td> </tr> </table> EOT; /* * $install_info is displayed with the title of a plugin that is NOT installed and * can be used to present extra information. In this case we show a complex * example that forms a button the user can click. */ $install_info=<<<EOT <table border="0" cellspacing="0" cellpadding="0"> <tr> <td class="admin_menu"><a href="http://coppermine-gallery.net/forum/index.php?board=97.0" title="{$lang_plugin_php['sample_plugin_support']}">{$lang_plugin_php['sample_plugin_support']}</a></td> </tr> </table> EOT; ?>