[ Index ]
 

Code source de e107 0.7.8

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

title

Body

[fermer]

/e107_plugins/pdf/ -> 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  */
  14  
  15  if (!defined('e107_INIT')) { exit; }
  16  
  17  $lan_file = e_PLUGIN."pdf/languages/".e_LANGUAGE.".php";
  18  include_once(file_exists($lan_file) ? $lan_file : e_PLUGIN."pdf/languages/English.php");
  19  
  20  // Plugin info -------------------------------------------------------------------------------------------------------
  21  $eplug_name = "PDF_PLUGIN_LAN_1";
  22  $eplug_version = "1.0";
  23  $eplug_author = "Eric Vanderfeesten (lisa)";
  24  $eplug_logo = "";
  25  $eplug_url = "http://eindhovenseschool.net";
  26  $eplug_email = "lisa@eindhovenseschool.net";
  27  $eplug_description = PDF_PLUGIN_LAN_2;
  28  $eplug_compatible = "e107v0.7+";
  29  $eplug_readme = "";        // leave blank if no readme file
  30  
  31  
  32  // Name of the plugin's folder -------------------------------------------------------------------------------------
  33  $eplug_folder = "pdf";
  34  
  35  // Mane of menu item for plugin ----------------------------------------------------------------------------------
  36  $eplug_menu_name = "";
  37  
  38  // Name of the admin configuration file --------------------------------------------------------------------------
  39  $eplug_conffile = "admin_pdf_config.php";
  40  
  41  // Icon image and caption text ------------------------------------------------------------------------------------
  42  $eplug_icon = $eplug_folder."/images/pdf_32.png";
  43  $eplug_icon_small = $eplug_folder."/images/pdf_16.png";
  44  $eplug_caption = PDF_PLUGIN_LAN_3;
  45  
  46  // List of preferences -----------------------------------------------------------------------------------------------
  47  $eplug_prefs = "";
  48  
  49  // List of table names -----------------------------------------------------------------------------------------------
  50  $eplug_table_names = "";
  51  
  52  // List of sql requests to create tables -----------------------------------------------------------------------------
  53  $eplug_tables = "";
  54  
  55  // Create a link in main menu (yes=TRUE, no=FALSE) -------------------------------------------------------------
  56  $eplug_link = FALSE;
  57  $eplug_link_name = "";
  58  $eplug_link_url = "";
  59  
  60  // Text to display after plugin successfully installed ------------------------------------------------------------------
  61  $eplug_done = PDF_PLUGIN_LAN_4;
  62  
  63  // upgrading ... //
  64  $upgrade_add_prefs = "";
  65  $upgrade_remove_prefs = "";
  66  $upgrade_alter_tables = "";
  67  $eplug_upgrade_done = "";
  68  
  69  ?>


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