[ Index ]
 

Code source de e107 0.7.8

Accédez au Source d'autres logiciels libresSoutenez Angelica Josefina !

title

Body

[fermer]

/e107_plugins/list_new/ -> plugin.php (source)

   1  <?php
   2  /*
   3  +---------------------------------------------------------------+
   4  |        e107 website system
   5  |        code adapted from original by Lolo Irie (lolo_irie@e107coders.org)
   6  |
   7  |        ©Steve Dunstan 2001-2002
   8  |        http://e107.org
   9  |        jalist@e107.org
  10  |
  11  |        Released under the terms and conditions of the
  12  |        GNU General Public License (http://gnu.org).
  13  +---------------------------------------------------------------+
  14  */
  15  
  16  if (!defined('e107_INIT')) { exit; }
  17  
  18  global $PLUGINS_DIRECTORY;
  19  $lan_file = e_PLUGIN."list_new/languages/".e_LANGUAGE.".php";
  20  include_once(file_exists($lan_file) ? $lan_file : e_PLUGIN."list_new/languages/English.php");
  21  
  22  // Plugin info -------------------------------------------------------------------------------------------------------
  23  $eplug_name = LIST_PLUGIN_1;
  24  $eplug_version = "1.0";
  25  $eplug_author = "Eric Vanderfeesten (lisa)";
  26  $eplug_logo = "";
  27  $eplug_url = "http://eindhovenseschool.net";
  28  $eplug_email = "lisa@eindhovenseschool.net";
  29  $eplug_description = LIST_PLUGIN_2;
  30  $eplug_compatible = "e107v0.7+";
  31  $eplug_readme = "";        // leave blank if no readme file
  32  
  33  
  34  // Name of the plugin's folder -------------------------------------------------------------------------------------
  35  $eplug_folder = "list_new";
  36  
  37  // Name of menu item for plugin ----------------------------------------------------------------------------------
  38  $eplug_menu_name = array("list_new_menu.php", "list_recent_menu.php");
  39  
  40  // Name of the admin configuration file --------------------------------------------------------------------------
  41  $eplug_conffile = "admin_list_config.php";
  42  
  43  // Icon image and caption text ------------------------------------------------------------------------------------
  44  $eplug_icon = $eplug_folder."/icon/list_32.png";
  45  $eplug_icon_small = $eplug_folder."/icon/list_16.png";
  46  $eplug_caption =  LIST_PLUGIN_3;
  47  
  48  // List of preferences -----------------------------------------------------------------------------------------------
  49  $eplug_prefs = array();
  50  
  51  // List of table names -----------------------------------------------------------------------------------------------
  52  $eplug_table_names = "";
  53  
  54  // List of sql requests to create tables -----------------------------------------------------------------------------
  55  $eplug_tables = "";
  56  
  57  
  58  // Create a link in main menu (yes=TRUE, no=FALSE) -------------------------------------------------------------
  59  $eplug_link = TRUE;
  60  $eplug_link_name = LIST_PLUGIN_5;
  61  $eplug_link_url = e_PLUGIN."list_new/list.php";
  62  
  63  
  64  // Text to display after plugin successfully installed ------------------------------------------------------------------
  65  $eplug_done = LIST_PLUGIN_4;
  66  
  67  
  68  // upgrading ... //
  69  
  70  $upgrade_add_prefs = "";
  71  $upgrade_remove_prefs = "";
  72  $upgrade_alter_tables = "";
  73  $eplug_upgrade_done = "";
  74  
  75  
  76  ?>


Généré le : Sun Apr 1 01:23:32 2007 par Balluche grâce à PHPXref 0.7