-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathenable.php
More file actions
28 lines (24 loc) · 788 Bytes
/
enable.php
File metadata and controls
28 lines (24 loc) · 788 Bytes
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
<?php
/*
* Wolf CMS - Content Management Simplified. <http://www.wolfcms.org>
* Copyright (C) 2011 Martijn van der Kleijn <martijn.niji@gmail.com>
*
* This file is part of Wolf CMS. Wolf CMS is licensed under the GNU GPLv3 license.
* Please see license.txt for the full license text.
*/
/* Security measure */
if (!defined('IN_CMS')) { exit(); }
/**
* The Poll plugin provides an Poll pagetype behaving similar to a blog or news poll.
*
* @package Plugins
* @subpackage poll
*
* @author Martijn van der Kleijn <martijn.niji@gmail.com>
* @copyright Martijn van der Kleijn, 2011
* @license http://www.gnu.org/licenses/gpl.html GPLv3 license
*/
// Store settings new style
$settings = array('use_dates' => '1'
);
Plugin::setAllSettings($settings, 'poll');