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