viglink_ask_admin_wait   A
last analyzed

Complexity

Total Complexity 3

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 3
eloc 7
c 1
b 0
f 0
dl 0
loc 18
rs 10

3 Methods

Rating   Name   Duplication   Size   Complexity  
A effectively_installed() 0 3 1
A update_data() 0 6 1
A depends_on() 0 3 1
1
<?php
2
/**
3
 *
4
 * VigLink extension for the phpBB Forum Software package.
5
 *
6
 * @copyright (c) 2014 phpBB Limited <https://www.phpbb.com>
7
 * @license GNU General Public License, version 2 (GPL-2.0)
8
 *
9
 */
10
11
namespace phpbb\viglink\migrations;
12
13
/**
14
 * Migration to only ask admin once per day
15
 */
16
class viglink_ask_admin_wait extends \phpbb\db\migration\migration
17
{
18
	public static function depends_on()
19
	{
20
		return array('\phpbb\viglink\migrations\viglink_ask_admin');
21
	}
22
23
	public function effectively_installed()
24
	{
25
		return isset($this->config['viglink_ask_admin_last']);
26
	}
27
28
	public function update_data()
29
	{
30
		return array(
31
			array('if', array(
32
				(!$this->config->offsetExists('viglink_ask_admin_last')),
33
				array('config.add', array('viglink_ask_admin_last', '0')),
34
			)),
35
		);
36
	}
37
}
38