-
Notifications
You must be signed in to change notification settings - Fork 23
/
plugin.php
84 lines (60 loc) · 2.71 KB
/
plugin.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<?php
/*
+ ----------------------------------------------------------------------------+
| e107 website system
|
| ©Steve Dunstan 2001-2002
| http://e107.org
|
| Released under the terms and conditions of the
| GNU General Public License (http://gnu.org).
|
| $Source$
| $Revision$
| $Date$
| $Author$
+----------------------------------------------------------------------------+
*/
if (!defined('e107_INIT')) { exit; }
// Plugin info -------------------------------------------------------------------------------------------------------
$eplug_name = "Jinzora";
$eplug_version = "2.5";
$eplug_author = "Ross Carlson / Ben Dodson";
$eplug_url = "http://jinzora.org";
$eplug_email = "[email protected]";
$eplug_description = "A complete, web-based multimedia manager.";
//$eplug_compatible = "e107v7";
//$eplug_readme = "readme.rtf";
// leave blank if no readme file
$eplug_compliant = TRUE;
// Name of the plugin's folder -------------------------------------------------------------------------------------
$eplug_folder = "jinzora2";
// Mane of menu item for plugin ----------------------------------------------------------------------------------
$eplug_menu_name = "Jinzora";
// Name of the admin configuration file --------------------------------------------------------------------------
//$eplug_conffile = "admin_config.php";
// Icon image and caption text ------------------------------------------------------------------------------------
$eplug_icon = $eplug_folder."/style/images/asx_banner.gif";
$eplug_icon_small = $eplug_folder."/style/images/asx_banner.gif";
$eplug_caption = "Configure Jinzora";
// List of preferences -----------------------------------------------------------------------------------------------
$eplug_prefs = array();
// List of table names -----------------------------------------------------------------------------------------------
$eplug_table_names = array();
// List of sql requests to create tables -----------------------------------------------------------------------------
$eplug_tables = array();
// Create a link in main menu (yes=TRUE, no=FALSE) -------------------------------------------------------------
$ec_dir = e_PLUGIN."jinzora2/";
$eplug_link = TRUE;
$eplug_link_name = "Jinzora"; // "Calendar";
$eplug_link_url = "".$ec_dir."index.php";
$eplug_link_perms = "Everyone"; // Everyone, Guest, Member, Admin
// Text to display after plugin successfully installed ------------------------------------------------------------------
$eplug_done = "Jinzora has been installed.";
// upgrading ... //
$upgrade_add_prefs = "";
$upgrade_remove_prefs = "";
$upgrade_alter_tables = array();
$eplug_upgrade_done = "Upgrade complete.";
?>