-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinfo.php
57 lines (42 loc) · 1.37 KB
/
info.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
<?php
/**
* @category modules
* @package onebyone
* @author WBCE Project
* @copyright florian
* @license WTFPL
*/
//no direct file access
if(count(get_included_files()) ==1){$z="HTTP/1.0 404 Not Found";header($z);die($z);}
$module_directory = 'onebyone';
$module_name = 'onebyone';
$module_function = 'page';
$module_version = '0.10.0';
$module_platform = '1.4.x';
$module_author = 'florian, Bernd Michna';
$module_license = 'WTFPL';
$module_description = 'This module can display some contents side by side';
/*
0.8 2020/12/28 (Stefek)
+ Added setting to disable/enable 3 blocks mode (limit confusion for low skill users)
+ Added setting that will copy modus and dimensions from latest obo section when a new section is created (add.php)
+ Added setting with which you can determine what dimensions can be selected by the user
0.8 2020/12/15
+ Added search.php
0.7 2020/05/27
! Fix for Fatal Error when used with other wysiwyg2 based modules on the same page (thx to Bernd)
0.6 2020/05/08
+ 100/0 & 0/100 dimensions
0.5 2020/05/05
! fix language issue, thanks to kleo/bernd
0.4 2020/05/01
+ Tab persistence, thanks to bernd
! remove duplicate simpletab js
0.3 2020/05/01
! Convert all files from ANSI to UTF-8
0.2 2020/05/01
+ Backend Tabs
+ module_settings.php
+ Frontend classes (section id / obo_left etc.)
0.1 2020/04/30 Initial release
*/