1: <?php
2: /**
3: * Description of ContentBox
4: *
5: * @author SARTAJ
6: */
7:
8:
9: class ContentBox extends Control{
10:
11: public function __construct($name='',$fieldName='',$tableName='') {
12: }
13:
14: public function oncreate($element){
15: $this->setHTMLName("");
16: }
17:
18:
19: public function onjsrender(){
20: global $jquerypath;
21: //addFileLink('$jquerypath/themes/base/jquery.ui.all.css');
22: if($this->parameterA['class'] == ''){
23: $this->parameterA['class'] = 'ui-widget-content ui-corner-all';
24: }
25:
26: }
27:
28:
29: }
30: ?>