[ Index ]
 

Code source de e107 0.7.8

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

title

Body

[fermer]

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

   1  <?php
   2  /*
   3  + ----------------------------------------------------------------------------+
   4  |     e107 website system
   5  |
   6  |     ©Steve Dunstan 2001-2002
   7  |     http://e107.org
   8  |     jalist@e107.org
   9  |
  10  |     Released under the terms and conditions of the
  11  |     GNU General Public License (http://gnu.org).
  12  |
  13  |     $Source: /cvsroot/e107/e107_0.7/e107_plugins/newforumposts_main/plugin.php,v $
  14  |     $Revision: 1.4 $
  15  |     $Date: 2005/12/14 19:28:44 $
  16  |     $Author: sweetas $
  17  +----------------------------------------------------------------------------+
  18  */
  19  if (!defined('e107_INIT')) { exit; }
  20  
  21  // Plugin info -------------------------------------------------------------------------------------------------------
  22  $eplug_name = "New Forum Posts";
  23  $eplug_version = "1";
  24  $eplug_author = "jalist";
  25  $eplug_url = "http://e107.org";
  26  $eplug_email = "jalist@e107.org";
  27  $eplug_description = "This plugin displays a list of new forum posts on your front page";
  28  $eplug_compatible = "e107v6";
  29  $eplug_readme = "";
  30  // leave blank if no readme file
  31      
  32  // Name of the plugin's folder -------------------------------------------------------------------------------------
  33  $eplug_folder = "newforumposts_main";
  34      
  35  // Mane of menu item for plugin ----------------------------------------------------------------------------------
  36  $eplug_menu_name = "newforumposts_main";
  37      
  38  // Name of the admin configuration file --------------------------------------------------------------------------
  39  $eplug_conffile = "admin_config.php";
  40      
  41  // Icon image and caption text ------------------------------------------------------------------------------------
  42  $eplug_icon = $eplug_folder."/images/new_forum_32.png";
  43  $eplug_icon_small = $eplug_folder."/images/new_forum_16.png";
  44  $eplug_caption = "Configure New Forum Posts";
  45      
  46  // List of preferences -----------------------------------------------------------------------------------------------
  47  $eplug_prefs = array(
  48  "nfp_display" => 0,
  49      "nfp_caption" => "Latest Forum Posts",
  50      "nfp_amount" => 5,
  51      );
  52      
  53  // List of table names -----------------------------------------------------------------------------------------------
  54  $eplug_table_names = "";
  55      
  56  // List of sql requests to create tables -----------------------------------------------------------------------------
  57  $eplug_tables = "";
  58      
  59      
  60  // Create a link in main menu (yes=TRUE, no=FALSE) -------------------------------------------------------------
  61  $eplug_link = FALSE;
  62  $eplug_link_name = "";
  63  $ec_dir = e_PLUGIN."";
  64  $eplug_link_url = "";
  65      
  66      
  67  // Text to display after plugin successfully installed ------------------------------------------------------------------
  68  $eplug_done = "To configure please click on the link in the plugins section of the admin front page";
  69      
  70      
  71  // upgrading ... //
  72      
  73  $upgrade_add_prefs = "";
  74      
  75  $upgrade_remove_prefs = "";
  76      
  77  $upgrade_alter_tables = "";
  78      
  79  $eplug_upgrade_done = "";
  80      
  81      
  82      
  83      
  84      
  85  ?>


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