-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathenable.php
43 lines (40 loc) · 1.27 KB
/
enable.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
<?php
/*
* Wolf CMS - Content Management Simplified. <http://www.wolfcms.org>
* Copyright (C) 2008-2010 Martijn van der Kleijn <[email protected]>
*
* Ace filter for Wolf CMS
* Code editor and syntax highlighter based on Ajax.org Cloud9 Editor.
*
* @package Plugins
* @subpackage ace
*
* @author Marek Murawski <http://marekmurawski.pl>
* @copyright Marek Murawski, 2012
* @license http://www.gnu.org/licenses/gpl.html GPLv3 license
* @license Ace http://opensource.org/licenses/BSD-3-Clause BSD
*
*/
/* Security measure */
if ( !defined('IN_CMS') ) {
exit();
}
$settings = array(
'mode' => 'php',
'theme' => 'monokai',
'fontsize' => 12,
'scrollspeed' => 6,
'editorheight' => 400,
'wraplines' => 'h',
'wraprange' => 80,
'layoutintegrate' => 1,
'highlightactiveline' => 1,
'cookielife' => '365', // in days, -1 defaults to Session cookie
);
// Store settings.
if ( Plugin::setAllSettings($settings, 'ace') ) {
Flash::set('success', __('Ace - plugin settings initialized.'));
}
else
Flash::set('error', __('Ace - unable to store plugin settings!'));
?>