[ Index ]
 

Code source de e107 0.7.8

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

title

Body

[fermer]

/e107_plugins/alt_auth/ -> 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/alt_auth/plugin.php,v $
  14  |     $Revision: 1.3 $
  15  |     $Date: 2006/08/03 13:46:17 $
  16  |     $Author: mcfly_e107 $
  17  +----------------------------------------------------------------------------+
  18  */
  19  
  20  
  21  // Plugin info -------------------------------------------------------------------------------------------------------
  22  $eplug_name = "Alternate Authentication";
  23  $eplug_version = "0.3";
  24  $eplug_author = "McFly";
  25  $eplug_logo = "/images/icon_ldap.png";
  26  $eplug_url = "";
  27  $eplug_email = "mcfly@e107.org";
  28  $eplug_description = "This plugin allows for alternate authentication methods.";
  29  $eplug_compatible = "e107v7+";
  30  $eplug_readme = "";    // leave blank if no readme file
  31  
  32  // Name of the plugin's folder -------------------------------------------------------------------------------------
  33  $eplug_folder = "alt_auth";
  34  
  35  // Mane of menu item for plugin ----------------------------------------------------------------------------------
  36  $eplug_menu_name = "alt_auth";
  37  
  38  // Name of the admin configuration file --------------------------------------------------------------------------
  39  $eplug_conffile = "alt_auth_conf.php";
  40  
  41  // Icon image and caption text ------------------------------------------------------------------------------------
  42  $eplug_icon = $eplug_folder."/images/icon_ldap.png";
  43  $eplug_caption =  "Configure Alt auth";
  44  
  45  // List of preferences -----------------------------------------------------------------------------------------------
  46  $eplug_prefs = "";
  47  
  48  // List of table names -----------------------------------------------------------------------------------------------
  49  $eplug_table_names = array(
  50      "alt_auth"
  51  );
  52  
  53  // List of sql requests to create tables -----------------------------------------------------------------------------
  54  
  55  
  56  $eplug_tables = array(
  57  "CREATE TABLE ".MPREFIX."alt_auth (
  58    auth_type varchar(20) NOT NULL default '',
  59    auth_parmname varchar(30) NOT NULL default '',
  60    auth_parmval varchar(120) NOT NULL default ''
  61  ) TYPE=MyISAM;");
  62  
  63  
  64  
  65  // Create a link in main menu (yes=TRUE, no=FALSE) -------------------------------------------------------------
  66  $eplug_link = FALSE;
  67  $eplug_link_name = "";
  68  $eplug_link_url = "";
  69  
  70  
  71  // Text to display after plugin successfully installed ------------------------------------------------------------------
  72  $eplug_done = "Alt auth service is now set up.  You will now need to configure your preferred method.";
  73  
  74  ?>    


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