-
Notifications
You must be signed in to change notification settings - Fork 0
/
toolbar.cloner.php
executable file
·72 lines (60 loc) · 1.17 KB
/
toolbar.cloner.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
<?php
/**
* XCloner
* Oficial website: http://www.joomlaplug.com/
* -------------------------------------------
* Creator: Liuta Romulus Ovidiu
* License: GNU/GPL
* Email: admin@joomlaplug.com
* Revision: 1.0
* Date: July 2007
**/
/** ensure this file is being included by a parent file */
defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' );
require_once('toolbar.cloner.html.php' );
$html = new TOOLBAR_cloner();
switch ( $task ) {
case 'help':
case 'credits':
case 'refresh':
case 'generate':
$html->_GENERATE();
break;
case 'rename_save':
case 'rename':
$html->_RENAME();
break;
case 'confirm':
$html->_CONFIRM();
break;
case 'continue':
case 'move':
case 'clone':
$html->_CLONE();
break;
case 'config':
$html->_CONFIG();
break;
case 'show':
case 'view':
$html->_VIEW();
break;
case 'add_lang':
$html->_LANG_ADD();
break;
case 'save_lang_apply':
case 'edit_lang':
$html->_LANG_EDIT();
break;
case 'del_lang':
case 'lang':
$html->_LANG();
break;
case 'login':
$html->_LOGIN();
break;
default:
$html->_DEFAULT();
break;
}
?>