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

DataForm::getHtmlComponent()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

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 1
nc 1
nop 0
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
}