-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.php
More file actions
133 lines (116 loc) · 3.26 KB
/
install.php
File metadata and controls
133 lines (116 loc) · 3.26 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
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<?php
/**
* Integration Hooks Report (IHR)
*
* @package IHR
* @author [SiNaN]
* @2nd-author emanuele
* @copyright 2011 [SiNaN], Simple Machines
* @license http://www.simplemachines.org/about/smf/license.php BSD
*
* @version 1.4
*/
global $hooks, $mod_name;
$hooks = array(
'integrate_admin_include' => '$sourcedir/Subs-IntegrationHooks.php',
'integrate_admin_areas' => 'hooks_admin_areas',
'integrate_modify_modifications' => 'hooks_modify_modifications',
);
$mod_name = 'Integration Hooks Report';
// ---------------------------------------------------------------------------------------------------------------------
define('SMF_INTEGRATION_SETTINGS', serialize(array(
'integrate_menu_buttons' => 'install_menu_button',)));
if (file_exists(dirname(__FILE__) . '/SSI.php') && !defined('SMF'))
require_once(dirname(__FILE__) . '/SSI.php');
elseif (!defined('SMF'))
exit('<b>Error:</b> Cannot install - please verify you put this in the same place as SMF\'s index.php.');
if (SMF == 'SSI')
{
// Let's start the main job
install_mod();
// and then let's throw out the template! :P
obExit(null, null, true);
}
else
{
setup_hooks();
}
function install_mod ()
{
global $context, $mod_name;
$context['mod_name'] = $mod_name;
$context['sub_template'] = 'install_script';
$context['page_title_html_safe'] = 'Install script of the mod: ' . $mod_name;
if (isset($_GET['action']))
$context['uninstalling'] = $_GET['action'] == 'uninstall' ? true : false;
$context['html_headers'] .= '
<style type="text/css">
.buttonlist ul {
margin:0 auto;
display:table;
}
</style>';
// Sorry, only logged in admins...
isAllowedTo('admin_forum');
if (isset($context['uninstalling']))
setup_hooks();
}
function setup_hooks ()
{
global $context, $hooks;
$integration_function = empty($context['uninstalling']) ? 'add_integration_function' : 'remove_integration_function';
foreach ($hooks as $hook => $function)
$integration_function($hook, $function);
$context['installation_done'] = true;
}
function install_menu_button (&$buttons)
{
global $boardurl, $context;
$context['sub_template'] = 'install_script';
$context['current_action'] = 'install';
$buttons['install'] = array(
'title' => 'Installation script',
'show' => allowedTo('admin_forum'),
'href' => $boardurl . '/install.php',
'active_button' => true,
'sub_buttons' => array(
),
);
}
function template_install_script ()
{
global $boardurl, $context;
echo '
<div class="tborder login"">
<div class="cat_bar">
<h3 class="catbg">
Welcome to the install script of the mod: ' . $context['mod_name'] . '
</h3>
</div>
<span class="upperframe"><span></span></span>
<div class="roundframe centertext">';
if (!isset($context['installation_done']))
echo '
<strong>Please select the action you want to perform:</strong>
<div class="buttonlist">
<ul>
<li>
<a class="active" href="' . $boardurl . '/install.php?action=install">
<span>Install</span>
</a>
</li>
<li>
<a class="active" href="' . $boardurl . '/install.php?action=uninstall">
<span>Uninstall</span>
</a>
</li>
</ul>
</div>';
else
echo '<strong>Database adaptation successful!</strong>';
echo '
</div>
<span class="lowerframe"><span></span></span>
</div>';
}
?>