GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( 278e53...818459 )
by gyeong-won
39:17 queued 30:14
created

krzipAdminView   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 2

Importance

Changes 0
Metric Value
dl 0
loc 15
rs 10
c 0
b 0
f 0
wmc 2
lcom 1
cbo 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A init() 0 5 1
A dispKrzipAdminConfig() 0 6 1
1
<?php
2
/* Copyright (C) NAVER <http://www.navercorp.com> */
3
/**
4
 * @class  krzipAdminView
5
 * @author NAVER ([email protected])
6
 * @brief  Krzip module admin view class.
7
 */
8
9
class krzipAdminView extends krzip
10
{
11
	function init()
12
	{
13
		$this->setTemplatePath($this->module_path . 'tpl');
14
		$this->setTemplateFile(lcfirst(str_replace('dispKrzipAdmin', '', $this->act)));
15
	}
16
17
	function dispKrzipAdminConfig()
18
	{
19
		$oKrzipModel = getModel('krzip');
20
		$module_config = $oKrzipModel->getConfig();
21
		Context::set('module_config', $module_config);
22
	}
23
}
24
25
/* End of file krzip.admin.view.php */
26
/* Location: ./modules/krzip/krzip.admin.view.php */
27