Completed
Push — master ( f2779d...72aa1a )
by Jean-Christophe
03:29
created

DataForm   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A getHtmlComponent() 0 3 1
A _setToolbarPosition() 0 3 1
1
<?php
2
3
namespace Ajax\semantic\widgets\dataform;
4
5
use Ajax\common\Widget;
6
7
/**
8
 * DataForm widget for editing model objects
9
 * @version 1.0
10
 * @author jc
11
 * @since 2.2
12
 *
13
 */
14
class DataForm extends Widget {
15
16
	public function getHtmlComponent() {
17
		// TODO Auto-generated method stub
18
	}
19
	/**
20
	 * {@inheritdoc}
21
	 * @see \Ajax\common\Widget::_setToolbarPosition()
22
	 */
23
	protected function _setToolbarPosition($table, $captions=NULL) {
0 ignored issues
show
Unused Code introduced by
The parameter $table is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
Unused Code introduced by
The parameter $captions is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
24
		// TODO: Auto-generated method stub
25
	}
26
}