Completed
Push — master ( 5f2e51...f2779d )
by Jean-Christophe
03:46
created

DataElement::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 3
rs 10
cc 1
eloc 2
nc 1
nop 3
1
<?php
2
3
namespace Ajax\semantic\widgets\dataelement;
4
5
use Ajax\common\Widget;
6
7
/**
8
 * DataElement widget for displaying an instance of model
9
 * @version 1.0
10
 * @author jc
11
 * @since 2.2
12
 *
13
 */
14
class DataElement extends Widget {
15
16
	public function __construct($identifier, $model, $modelInstance=NULL) {
17
		parent::__construct($identifier, $model, $modelInstance=NULL);
18
	}
19
20
	public function getHtmlComponent() {
21
		// TODO Auto-generated method stub
22
	}
23
}