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

krzipView   A

Complexity

Total Complexity 4

Size/Duplication

Total Lines 28
Duplicated Lines 0 %

Coupling/Cohesion

Components 2
Dependencies 2

Importance

Changes 0
Metric Value
dl 0
loc 28
rs 10
c 0
b 0
f 0
wmc 4
lcom 2
cbo 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A init() 0 4 1
A dispKrzipSearchForm() 0 15 3
1
<?php
2
/* Copyright (C) NAVER <http://www.navercorp.com> */
3
/**
4
 * @class  krzipView
5
 * @author NAVER ([email protected])
6
 * @brief  Krzip module view class.
7
 */
8
9
class krzipView extends krzip
10
{
11
	function init()
12
	{
13
		$this->setTemplatePath($this->module_path . 'tpl');
14
	}
15
16
	/**
17
	 * @brief 우편번호 검색
18
	 * @param integer $api_handler
19
	 * @return mixed
20
	 */
21
	function dispKrzipSearchForm($api_handler)
22
	{
23
		$oKrzipModel = getModel('krzip');
24
		$module_config = $oKrzipModel->getConfig();
25
		$module_config->sequence_id = ++self::$sequence_id;
26
		if(!isset($api_handler) || !isset(self::$api_list[$api_handler]))
27
		{
28
			$api_handler = $module_config->api_handler;
29
		}
30
31
		Context::set('template_config', $module_config);
32
		$this->setTemplateFile('searchForm.' . self::$api_list[$api_handler]);
33
		$this->setLayoutPath('./common/tpl/');
34
		$this->setLayoutFile('popup_layout');
35
	}
36
}
37
38
/* End of file krzip.view.php */
39
/* Location: ./modules/krzip/krzip.view.php */
40