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::init()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 3
nc 1
nop 0
dl 0
loc 5
rs 9.4285
c 0
b 0
f 0
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