mirror of
https://github.com/e107inc/e107.git
synced 2025-02-13 19:15:19 +01:00
76 lines
2.7 KiB
PHP
76 lines
2.7 KiB
PHP
<?php
|
|
/*
|
|
+---------------------------------------------------------------+
|
|
| e107 website system
|
|
| code adapted from original by Lolo Irie (lolo_irie@e107coders.org)
|
|
|
|
|
| ©Steve Dunstan 2001-2002
|
|
| http://e107.org
|
|
| jalist@e107.org
|
|
|
|
|
| Released under the terms and conditions of the
|
|
| GNU General Public License (http://gnu.org).
|
|
+---------------------------------------------------------------+
|
|
*/
|
|
|
|
if (!defined('e107_INIT')) { exit; }
|
|
|
|
global $PLUGINS_DIRECTORY;
|
|
$lan_file = e_PLUGIN."list_new/languages/".e_LANGUAGE.".php";
|
|
include_once(file_exists($lan_file) ? $lan_file : e_PLUGIN."list_new/languages/English.php");
|
|
|
|
// Plugin info -------------------------------------------------------------------------------------------------------
|
|
$eplug_name = LIST_PLUGIN_1;
|
|
$eplug_version = "1.0";
|
|
$eplug_author = "Eric Vanderfeesten (lisa)";
|
|
$eplug_logo = "";
|
|
$eplug_url = "http://eindhovenseschool.net";
|
|
$eplug_email = "lisa@eindhovenseschool.net";
|
|
$eplug_description = LIST_PLUGIN_2;
|
|
$eplug_compatible = "e107v0.7+";
|
|
$eplug_readme = ""; // leave blank if no readme file
|
|
|
|
|
|
// Name of the plugin's folder -------------------------------------------------------------------------------------
|
|
$eplug_folder = "list_new";
|
|
|
|
// Name of menu item for plugin ----------------------------------------------------------------------------------
|
|
$eplug_menu_name = array("list_new_menu.php", "list_recent_menu.php");
|
|
|
|
// Name of the admin configuration file --------------------------------------------------------------------------
|
|
$eplug_conffile = "admin_list_config.php";
|
|
|
|
// Icon image and caption text ------------------------------------------------------------------------------------
|
|
$eplug_icon = $eplug_folder."/icon/list_32.png";
|
|
$eplug_icon_small = $eplug_folder."/icon/list_16.png";
|
|
$eplug_caption = LIST_PLUGIN_3;
|
|
|
|
// List of preferences -----------------------------------------------------------------------------------------------
|
|
$eplug_prefs = array();
|
|
|
|
// List of table names -----------------------------------------------------------------------------------------------
|
|
$eplug_table_names = "";
|
|
|
|
// List of sql requests to create tables -----------------------------------------------------------------------------
|
|
$eplug_tables = "";
|
|
|
|
|
|
// Create a link in main menu (yes=TRUE, no=FALSE) -------------------------------------------------------------
|
|
$eplug_link = TRUE;
|
|
$eplug_link_name = LIST_PLUGIN_5;
|
|
$eplug_link_url = e_PLUGIN."list_new/list.php";
|
|
|
|
|
|
// Text to display after plugin successfully installed ------------------------------------------------------------------
|
|
$eplug_done = LIST_PLUGIN_4;
|
|
|
|
|
|
// upgrading ... //
|
|
|
|
$upgrade_add_prefs = "";
|
|
$upgrade_remove_prefs = "";
|
|
$upgrade_alter_tables = "";
|
|
$eplug_upgrade_done = "";
|
|
|
|
|
|
?>
|