-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathplugin.php
More file actions
38 lines (30 loc) · 1.22 KB
/
Copy pathplugin.php
File metadata and controls
38 lines (30 loc) · 1.22 KB
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
<?php
if (!defined('e107_INIT')) { exit; }
global $PLUGINS_DIRECTORY;
// Plugin info -------------------------------------------------------------------------------------------------------
$eplug_name = 'TC Soap Plugin Suite';
$eplug_version = "1.0";
$eplug_author = "Vissaben";
$eplug_logo = "";
$eplug_url = "";
$eplug_email = "";
$eplug_description = 'TC Soap Plugin Suite';
$eplug_compatible = "e107v0.7+";
$eplug_readme = ""; // leave blank if no readme file
// Name of the plugin's folder -------------------------------------------------------------------------------------
$eplug_folder = "TC_soap";
// Name of menu item for plugin ----------------------------------------------------------------------------------
$eplug_menu_name = array("reg_menu.php", "log_menu.php");
// Name of the admin configuration file
$eplug_conffile = "";
// List of preferences
$eplug_prefs = "";
$eplug_table_names = "";
// Create a link in main menu (yes=TRUE, no=FALSE)
$eplug_link = TRUE;
$eplug_link_name = "TC Soap Plugin Suite";
$eplug_link_perms = "Everyone";
// Text to display after plugin successfully installed
$eplug_done = "Installation Successful..";
$eplug_uninstall_done = "Uninstalled Successfully..";
?>