@@ -4,7 +4,7 @@ discard block |
||
| 4 | 4 | |
| 5 | 5 | trait JqueryEventsTrait { |
| 6 | 6 | public abstract function _prep_element($element); |
| 7 | - public abstract function _add_event($element, $js, $event, $preventDefault=false, $stopPropagation=false,$immediatly=true); |
|
| 7 | + public abstract function _add_event($element, $js, $event, $preventDefault=false, $stopPropagation=false, $immediatly=true); |
|
| 8 | 8 | |
| 9 | 9 | /** |
| 10 | 10 | * Blur |
@@ -46,7 +46,7 @@ discard block |
||
| 46 | 46 | */ |
| 47 | 47 | public function _click($element='this', $js=array(), $ret_false=TRUE) { |
| 48 | 48 | if (!is_array($js)) { |
| 49 | - $js=array ( |
|
| 49 | + $js=array( |
|
| 50 | 50 | $js |
| 51 | 51 | ); |
| 52 | 52 | } |
@@ -14,89 +14,89 @@ |
||
| 14 | 14 | */ |
| 15 | 15 | class HtmlGridRow extends HtmlBsDoubleElement { |
| 16 | 16 | private $cols; |
| 17 | - public function __construct($identifier,$numCols=NULL){ |
|
| 18 | - parent::__construct($identifier,"div"); |
|
| 17 | + public function __construct($identifier, $numCols=NULL) { |
|
| 18 | + parent::__construct($identifier, "div"); |
|
| 19 | 19 | $this->setProperty("class", "row"); |
| 20 | 20 | $this->cols=array(); |
| 21 | - if(isset($numCols)){ |
|
| 22 | - $numCols=min(12,$numCols); |
|
| 23 | - $numCols=max(1,$numCols); |
|
| 24 | - $width=12/$numCols; |
|
| 25 | - for ($i=0;$i<$numCols;$i++){ |
|
| 26 | - $this->addCol(CssSize::SIZE_MD,$width); |
|
| 21 | + if (isset($numCols)) { |
|
| 22 | + $numCols=min(12, $numCols); |
|
| 23 | + $numCols=max(1, $numCols); |
|
| 24 | + $width=12 / $numCols; |
|
| 25 | + for ($i=0; $i<$numCols; $i++) { |
|
| 26 | + $this->addCol(CssSize::SIZE_MD, $width); |
|
| 27 | 27 | } |
| 28 | 28 | } |
| 29 | 29 | } |
| 30 | 30 | |
| 31 | - public function addCol($size=CssSize::SIZE_MD,$width=1){ |
|
| 32 | - $col=new HtmlGridCol($this->identifier."-col-".(sizeof($this->cols)+1),$size,$width); |
|
| 31 | + public function addCol($size=CssSize::SIZE_MD, $width=1) { |
|
| 32 | + $col=new HtmlGridCol($this->identifier."-col-".(sizeof($this->cols)+1), $size, $width); |
|
| 33 | 33 | $this->cols[]=$col; |
| 34 | 34 | return $col; |
| 35 | 35 | } |
| 36 | 36 | |
| 37 | - public function addColAt($size=CssSize::SIZE_MD,$width=1,$offset=1){ |
|
| 38 | - $col=$this->addCol($size,$width); |
|
| 39 | - return $col->setOffset($size, max($offset,sizeof($this->cols)+1)); |
|
| 37 | + public function addColAt($size=CssSize::SIZE_MD, $width=1, $offset=1) { |
|
| 38 | + $col=$this->addCol($size, $width); |
|
| 39 | + return $col->setOffset($size, max($offset, sizeof($this->cols)+1)); |
|
| 40 | 40 | } |
| 41 | 41 | |
| 42 | - public function getCol($index,$force=true){ |
|
| 42 | + public function getCol($index, $force=true) { |
|
| 43 | 43 | $result=null; |
| 44 | - if($index<sizeof($this->cols)+1){ |
|
| 44 | + if ($index<sizeof($this->cols)+1) { |
|
| 45 | 45 | $result=$this->cols[$index-1]; |
| 46 | - }else if ($force){ |
|
| 47 | - $result=$this->addColAt(CssSize::SIZE_MD,1,$index); |
|
| 46 | + }else if ($force) { |
|
| 47 | + $result=$this->addColAt(CssSize::SIZE_MD, 1, $index); |
|
| 48 | 48 | } |
| 49 | 49 | return $result; |
| 50 | 50 | } |
| 51 | 51 | |
| 52 | - public function getColAt($offset,$force=true){ |
|
| 52 | + public function getColAt($offset, $force=true) { |
|
| 53 | 53 | $result=null; |
| 54 | - foreach ($this->cols as $col){ |
|
| 54 | + foreach ($this->cols as $col) { |
|
| 55 | 55 | $offsets=$col->getOffsets(); |
| 56 | - if($result=array_search($offset, $offsets)){ |
|
| 56 | + if ($result=array_search($offset, $offsets)) { |
|
| 57 | 57 | break; |
| 58 | 58 | } |
| 59 | 59 | } |
| 60 | - if(!$result || isset($result)==false){ |
|
| 61 | - $result=$this->getCol($offset,$force); |
|
| 60 | + if (!$result || isset($result)==false) { |
|
| 61 | + $result=$this->getCol($offset, $force); |
|
| 62 | 62 | } |
| 63 | 63 | return $result; |
| 64 | 64 | } |
| 65 | 65 | |
| 66 | 66 | public function compile(JsUtils $js=NULL, View $view=NULL) { |
| 67 | 67 | |
| 68 | - foreach ($this->cols as $col){ |
|
| 68 | + foreach ($this->cols as $col) { |
|
| 69 | 69 | $this->addContent($col); |
| 70 | 70 | } |
| 71 | - return parent::compile($js,$view); |
|
| 71 | + return parent::compile($js, $view); |
|
| 72 | 72 | } |
| 73 | 73 | public function getCols() { |
| 74 | 74 | return $this->cols; |
| 75 | 75 | } |
| 76 | 76 | |
| 77 | - public function setContentForAll($content){ |
|
| 78 | - foreach ($this->cols as $col){ |
|
| 77 | + public function setContentForAll($content) { |
|
| 78 | + foreach ($this->cols as $col) { |
|
| 79 | 79 | $col->setContent($content); |
| 80 | 80 | } |
| 81 | 81 | } |
| 82 | - public function merge($size=CssSize::SIZE_MD,$start,$width){ |
|
| 83 | - $col=$this->getColAt($start,false); |
|
| 84 | - if(isset($col)){ |
|
| 85 | - $col->setWidth($size,$width+1); |
|
| 86 | - $this->delete($size,$start+1, $width); |
|
| 82 | + public function merge($size=CssSize::SIZE_MD, $start, $width) { |
|
| 83 | + $col=$this->getColAt($start, false); |
|
| 84 | + if (isset($col)) { |
|
| 85 | + $col->setWidth($size, $width+1); |
|
| 86 | + $this->delete($size, $start+1, $width); |
|
| 87 | 87 | } |
| 88 | 88 | } |
| 89 | - public function delete($size=CssSize::SIZE_MD,$start,$width){ |
|
| 90 | - while($start<sizeof($this->cols)+1 && $width>0){ |
|
| 91 | - $col=$this->getColAt($start,false); |
|
| 92 | - if(isset($col)){ |
|
| 89 | + public function delete($size=CssSize::SIZE_MD, $start, $width) { |
|
| 90 | + while ($start<sizeof($this->cols)+1 && $width>0) { |
|
| 91 | + $col=$this->getColAt($start, false); |
|
| 92 | + if (isset($col)) { |
|
| 93 | 93 | $widthCol=$col->getWidth($size); |
| 94 | - if($widthCol<=$width){ |
|
| 94 | + if ($widthCol<=$width) { |
|
| 95 | 95 | unset($this->cols[$start-1]); |
| 96 | - $this->cols = array_values($this->cols); |
|
| 96 | + $this->cols=array_values($this->cols); |
|
| 97 | 97 | $width=$width-$widthCol; |
| 98 | 98 | } |
| 99 | - }else{ |
|
| 99 | + }else { |
|
| 100 | 100 | $width=0; |
| 101 | 101 | } |
| 102 | 102 | } |
@@ -3,7 +3,7 @@ discard block |
||
| 3 | 3 | namespace Ajax\common\traits; |
| 4 | 4 | |
| 5 | 5 | trait JqueryActionsTrait { |
| 6 | - public abstract function _add_event($element, $js, $event, $preventDefault=false, $stopPropagation=false,$immediatly=true); |
|
| 6 | + public abstract function _add_event($element, $js, $event, $preventDefault=false, $stopPropagation=false, $immediatly=true); |
|
| 7 | 7 | public abstract function _prep_element($element); |
| 8 | 8 | public abstract function _prep_value($value); |
| 9 | 9 | |
@@ -19,7 +19,7 @@ discard block |
||
| 19 | 19 | if (isset($value)) { |
| 20 | 20 | $value=$this->_prep_value($value); |
| 21 | 21 | $str="$({$element}).attr(\"$attributeName\",{$value});"; |
| 22 | - } else |
|
| 22 | + }else |
|
| 23 | 23 | $str="$({$element}).attr(\"$attributeName\");"; |
| 24 | 24 | if ($immediatly) |
| 25 | 25 | $this->jquery_code_for_compile[]=$str; |
@@ -33,7 +33,7 @@ discard block |
||
| 33 | 33 | * @param boolean $immediatly defers the execution if set to false |
| 34 | 34 | * @return string |
| 35 | 35 | */ |
| 36 | - public function after($element='this', $value='', $immediatly=false){ |
|
| 36 | + public function after($element='this', $value='', $immediatly=false) { |
|
| 37 | 37 | $element=$this->_prep_element($element); |
| 38 | 38 | $value=$this->_prep_value($value); |
| 39 | 39 | $str="$({$element}).after({$value});"; |
@@ -58,7 +58,7 @@ discard block |
||
| 58 | 58 | |
| 59 | 59 | $animations="\t\t\t"; |
| 60 | 60 | if (is_array($params)) { |
| 61 | - foreach ( $params as $param => $value ) { |
|
| 61 | + foreach ($params as $param => $value) { |
|
| 62 | 62 | $animations.=$param.': \''.$value.'\', '; |
| 63 | 63 | } |
| 64 | 64 | } |
@@ -351,8 +351,8 @@ discard block |
||
| 351 | 351 | * @param boolean $immediatly |
| 352 | 352 | * @return string |
| 353 | 353 | */ |
| 354 | - public function _doJQueryOn($event, $element, $elementToModify, $jqueryCall, $param="", $preventDefault=false, $stopPropagation=false, $jsCallback="",$immediatly=true) { |
|
| 355 | - return $this->_add_event($element, $this->_doJQuery($elementToModify, $jqueryCall, $param, $jsCallback), $event, $preventDefault, $stopPropagation,$immediatly); |
|
| 354 | + public function _doJQueryOn($event, $element, $elementToModify, $jqueryCall, $param="", $preventDefault=false, $stopPropagation=false, $jsCallback="", $immediatly=true) { |
|
| 355 | + return $this->_add_event($element, $this->_doJQuery($elementToModify, $jqueryCall, $param, $jsCallback), $event, $preventDefault, $stopPropagation, $immediatly); |
|
| 356 | 356 | } |
| 357 | 357 | |
| 358 | 358 | /** |
@@ -378,8 +378,8 @@ discard block |
||
| 378 | 378 | * @param boolean $immediatly |
| 379 | 379 | * @return String |
| 380 | 380 | */ |
| 381 | - public function _execOn($element, $event, $js, $preventDefault=false, $stopPropagation=false,$immediatly=true) { |
|
| 382 | - return $this->_add_event($element, $this->_exec($js), $event, $preventDefault, $stopPropagation,$immediatly); |
|
| 381 | + public function _execOn($element, $event, $js, $preventDefault=false, $stopPropagation=false, $immediatly=true) { |
|
| 382 | + return $this->_add_event($element, $this->_exec($js), $event, $preventDefault, $stopPropagation, $immediatly); |
|
| 383 | 383 | } |
| 384 | 384 | |
| 385 | 385 | /** |
@@ -388,8 +388,8 @@ discard block |
||
| 388 | 388 | * @return string |
| 389 | 389 | */ |
| 390 | 390 | private function _validate_speed($speed) { |
| 391 | - if (in_array($speed, array ( |
|
| 392 | - 'slow','normal','fast' |
|
| 391 | + if (in_array($speed, array( |
|
| 392 | + 'slow', 'normal', 'fast' |
|
| 393 | 393 | ))) { |
| 394 | 394 | $speed='"'.$speed.'"'; |
| 395 | 395 | } elseif (preg_match("/[^0-9]/", $speed)) { |
@@ -8,18 +8,18 @@ discard block |
||
| 8 | 8 | private $_hasIcon=false; |
| 9 | 9 | |
| 10 | 10 | protected abstract function addToPropertyCtrl($name, $value, $typeCtrl); |
| 11 | - public abstract function addContent($content,$before=false); |
|
| 11 | + public abstract function addContent($content, $before=false); |
|
| 12 | 12 | |
| 13 | - public function addIcon($icon,$direction=Direction::LEFT){ |
|
| 14 | - if($this->_hasIcon===false){ |
|
| 13 | + public function addIcon($icon, $direction=Direction::LEFT) { |
|
| 14 | + if ($this->_hasIcon===false) { |
|
| 15 | 15 | $iconO=$icon; |
| 16 | - if(\is_string($icon)){ |
|
| 16 | + if (\is_string($icon)) { |
|
| 17 | 17 | $iconO=new HtmlIcon("icon-".$this->identifier, $icon); |
| 18 | 18 | } |
| 19 | 19 | $this->addToPropertyCtrl("class", $direction." icon", Direction::getConstantValues("icon")); |
| 20 | - $this->addContent($iconO,false); |
|
| 20 | + $this->addContent($iconO, false); |
|
| 21 | 21 | $this->_hasIcon=true; |
| 22 | - }else{ |
|
| 22 | + }else { |
|
| 23 | 23 | $iconO=$this->getIcon(); |
| 24 | 24 | $iconO->setIcon($icon); |
| 25 | 25 | $this->addToPropertyCtrl("class", $direction." icon", Direction::getConstantValues("icon")); |
@@ -27,10 +27,10 @@ discard block |
||
| 27 | 27 | return $iconO; |
| 28 | 28 | } |
| 29 | 29 | |
| 30 | - public function getIcon(){ |
|
| 31 | - if(\is_array($this->content)){ |
|
| 32 | - foreach ($this->content as $item){ |
|
| 33 | - if($item instanceof HtmlIcon) |
|
| 30 | + public function getIcon() { |
|
| 31 | + if (\is_array($this->content)) { |
|
| 32 | + foreach ($this->content as $item) { |
|
| 33 | + if ($item instanceof HtmlIcon) |
|
| 34 | 34 | return $item; |
| 35 | 35 | } |
| 36 | 36 | } |
@@ -30,7 +30,7 @@ discard block |
||
| 30 | 30 | return $this->setParam("onShow", "%function(){".$jsCode."}%"); |
| 31 | 31 | } |
| 32 | 32 | |
| 33 | - public function setExclusive($value){ |
|
| 33 | + public function setExclusive($value) { |
|
| 34 | 34 | return $this->setParam("exclusive", $value); |
| 35 | 35 | } |
| 36 | 36 | |
@@ -39,15 +39,15 @@ discard block |
||
| 39 | 39 | * @param string $popup the css selector of the popup |
| 40 | 40 | * @return \Ajax\semantic\components\Popup |
| 41 | 41 | */ |
| 42 | - public function setPopup($popup){ |
|
| 42 | + public function setPopup($popup) { |
|
| 43 | 43 | return $this->setParam("popup", $popup); |
| 44 | 44 | } |
| 45 | 45 | |
| 46 | - public function setInline($value){ |
|
| 46 | + public function setInline($value) { |
|
| 47 | 47 | return $this->setParam("inline", $value); |
| 48 | 48 | } |
| 49 | 49 | |
| 50 | - public function setPosition($value){ |
|
| 50 | + public function setPosition($value) { |
|
| 51 | 51 | return $this->setParam("position", $value); |
| 52 | 52 | } |
| 53 | 53 | //TODO other events implementation |
@@ -8,13 +8,13 @@ discard block |
||
| 8 | 8 | class HtmlSticky extends HtmlSemDoubleElement { |
| 9 | 9 | private $_params=array(); |
| 10 | 10 | |
| 11 | - public function __construct($identifier,$context=NULL,$content=NULL) { |
|
| 11 | + public function __construct($identifier, $context=NULL, $content=NULL) { |
|
| 12 | 12 | parent::__construct($identifier, "div", "ui sticky", $content); |
| 13 | - if(isset($content)) |
|
| 13 | + if (isset($content)) |
|
| 14 | 14 | $this->setContext($context); |
| 15 | 15 | } |
| 16 | 16 | |
| 17 | - public function setContext($context){ |
|
| 17 | + public function setContext($context) { |
|
| 18 | 18 | $this->_params["context"]=$context; |
| 19 | 19 | return $this; |
| 20 | 20 | } |
@@ -23,8 +23,8 @@ discard block |
||
| 23 | 23 | * {@inheritDoc} |
| 24 | 24 | * @see \Ajax\semantic\html\base\HtmlSemDoubleElement::run() |
| 25 | 25 | */ |
| 26 | - public function run(JsUtils $js){ |
|
| 26 | + public function run(JsUtils $js) { |
|
| 27 | 27 | parent::run($js); |
| 28 | - return $js->semantic()->sticky("#".$this->identifier,$this->_params); |
|
| 28 | + return $js->semantic()->sticky("#".$this->identifier, $this->_params); |
|
| 29 | 29 | } |
| 30 | 30 | } |
| 31 | 31 | \ No newline at end of file |
@@ -8,13 +8,13 @@ |
||
| 8 | 8 | class HtmlFormInput extends HtmlFormField { |
| 9 | 9 | use TextFieldsTrait; |
| 10 | 10 | |
| 11 | - public function __construct($identifier, $label=NULL,$type="text",$value=NULL,$placeholder=NULL) { |
|
| 12 | - if(!isset($placeholder) && $type==="text") |
|
| 11 | + public function __construct($identifier, $label=NULL, $type="text", $value=NULL, $placeholder=NULL) { |
|
| 12 | + if (!isset($placeholder) && $type==="text") |
|
| 13 | 13 | $placeholder=$label; |
| 14 | - parent::__construct("field-".$identifier, new HtmlInput($identifier,$type,$value,$placeholder), $label); |
|
| 14 | + parent::__construct("field-".$identifier, new HtmlInput($identifier, $type, $value, $placeholder), $label); |
|
| 15 | 15 | } |
| 16 | 16 | |
| 17 | - public function setReadonly(){ |
|
| 17 | + public function setReadonly() { |
|
| 18 | 18 | $this->getField()->setProperty("readonly", ""); |
| 19 | 19 | } |
| 20 | 20 | } |
| 21 | 21 | \ No newline at end of file |
@@ -12,7 +12,7 @@ discard block |
||
| 12 | 12 | class HtmlPopup extends HtmlSemDoubleElement { |
| 13 | 13 | private $_params; |
| 14 | 14 | private $_container; |
| 15 | - public function __construct(BaseHtml $container,$identifier, $content="") { |
|
| 15 | + public function __construct(BaseHtml $container, $identifier, $content="") { |
|
| 16 | 16 | parent::__construct($identifier, "div"); |
| 17 | 17 | $this->_container=$container; |
| 18 | 18 | $this->setClass("ui popup"); |
@@ -20,21 +20,21 @@ discard block |
||
| 20 | 20 | $this->_params=array("on"=>"hover"); |
| 21 | 21 | } |
| 22 | 22 | |
| 23 | - public function addList($items=array(),$header=NULL){ |
|
| 24 | - if(!$this->content instanceof HtmlGrid){ |
|
| 25 | - $this->content=new HtmlGrid("Grid-".$this->identifier,0); |
|
| 23 | + public function addList($items=array(), $header=NULL) { |
|
| 24 | + if (!$this->content instanceof HtmlGrid) { |
|
| 25 | + $this->content=new HtmlGrid("Grid-".$this->identifier, 0); |
|
| 26 | 26 | } |
| 27 | 27 | $grid=$this->content; |
| 28 | 28 | |
| 29 | 29 | $colCount=$grid->colCount(); |
| 30 | 30 | $grid->setColsCount(++$colCount); |
| 31 | 31 | |
| 32 | - $list=new HtmlList("",$items); |
|
| 32 | + $list=new HtmlList("", $items); |
|
| 33 | 33 | $list->asLink(); |
| 34 | - if(isset($header)){ |
|
| 35 | - $list->addHeader(4,$header); |
|
| 34 | + if (isset($header)) { |
|
| 35 | + $list->addHeader(4, $header); |
|
| 36 | 36 | } |
| 37 | - $grid->getCell(0,$colCount-1)->setContent($list); |
|
| 37 | + $grid->getCell(0, $colCount-1)->setContent($list); |
|
| 38 | 38 | $grid->setDivided()->setRelaxed(true); |
| 39 | 39 | return $list; |
| 40 | 40 | } |
@@ -42,14 +42,14 @@ discard block |
||
| 42 | 42 | /** |
| 43 | 43 | * A popup can have no maximum width and continue to flow to fit its content |
| 44 | 44 | */ |
| 45 | - public function setFlowing(){ |
|
| 45 | + public function setFlowing() { |
|
| 46 | 46 | return $this->addToProperty("class", "flowing"); |
| 47 | 47 | } |
| 48 | 48 | |
| 49 | 49 | /** |
| 50 | 50 | * A popup can provide more basic formatting |
| 51 | 51 | */ |
| 52 | - public function setBasic(){ |
|
| 52 | + public function setBasic() { |
|
| 53 | 53 | return $this->addToProperty("class", "basic"); |
| 54 | 54 | } |
| 55 | 55 | |
@@ -57,22 +57,22 @@ discard block |
||
| 57 | 57 | * {@inheritDoc} |
| 58 | 58 | * @see \Ajax\semantic\html\base\HtmlSemDoubleElement::run() |
| 59 | 59 | */ |
| 60 | - public function run(JsUtils $js){ |
|
| 60 | + public function run(JsUtils $js) { |
|
| 61 | 61 | $this->_params["popup"]="#".$this->identifier; |
| 62 | - $js->semantic()->popup("#".$this->_container->getIdentifier(),$this->_params); |
|
| 62 | + $js->semantic()->popup("#".$this->_container->getIdentifier(), $this->_params); |
|
| 63 | 63 | } |
| 64 | 64 | |
| 65 | - public function setOn($event="click"){ |
|
| 65 | + public function setOn($event="click") { |
|
| 66 | 66 | $this->_params["on"]=$event; |
| 67 | 67 | return $this; |
| 68 | 68 | } |
| 69 | 69 | |
| 70 | - public function setInline($value=true){ |
|
| 70 | + public function setInline($value=true) { |
|
| 71 | 71 | $this->_params["inline"]=$value; |
| 72 | 72 | return $this; |
| 73 | 73 | } |
| 74 | 74 | |
| 75 | - public function setPosition($position){ |
|
| 75 | + public function setPosition($position) { |
|
| 76 | 76 | $this->_params["position"]=$position; |
| 77 | 77 | return $this; |
| 78 | 78 | } |
@@ -16,24 +16,24 @@ discard block |
||
| 16 | 16 | * @author jc |
| 17 | 17 | * @version 1.001 |
| 18 | 18 | */ |
| 19 | -class HtmlGridRow extends HtmlSemCollection{ |
|
| 19 | +class HtmlGridRow extends HtmlSemCollection { |
|
| 20 | 20 | use TextAlignmentTrait; |
| 21 | 21 | |
| 22 | 22 | private $_colSize; |
| 23 | 23 | private $_implicite=false; |
| 24 | 24 | |
| 25 | - public function __construct( $identifier,$numCols=NULL,$colSizing=false,$implicite=false){ |
|
| 26 | - parent::__construct( $identifier,"div","row"); |
|
| 25 | + public function __construct($identifier, $numCols=NULL, $colSizing=false, $implicite=false) { |
|
| 26 | + parent::__construct($identifier, "div", "row"); |
|
| 27 | 27 | $this->_implicite=$implicite; |
| 28 | 28 | $width=null; |
| 29 | - if(isset($numCols)){ |
|
| 30 | - $numCols=min(16,$numCols); |
|
| 31 | - $numCols=max(1,$numCols); |
|
| 32 | - if($colSizing) |
|
| 33 | - $width=(int)(16/$numCols); |
|
| 29 | + if (isset($numCols)) { |
|
| 30 | + $numCols=min(16, $numCols); |
|
| 31 | + $numCols=max(1, $numCols); |
|
| 32 | + if ($colSizing) |
|
| 33 | + $width=(int) (16 / $numCols); |
|
| 34 | 34 | else |
| 35 | - $this->_colSize=16/$numCols; |
|
| 36 | - for ($i=0;$i<$numCols;$i++){ |
|
| 35 | + $this->_colSize=16 / $numCols; |
|
| 36 | + for ($i=0; $i<$numCols; $i++) { |
|
| 37 | 37 | $this->addItem($width); |
| 38 | 38 | } |
| 39 | 39 | } |
@@ -44,12 +44,12 @@ discard block |
||
| 44 | 44 | * @param int $width |
| 45 | 45 | * @return \Ajax\semantic\html\content\HtmlGridRow |
| 46 | 46 | */ |
| 47 | - public function setWidth($width){ |
|
| 48 | - if(\is_int($width)){ |
|
| 47 | + public function setWidth($width) { |
|
| 48 | + if (\is_int($width)) { |
|
| 49 | 49 | $width=Wide::getConstants()["W".$width]; |
| 50 | 50 | } |
| 51 | 51 | $this->addToPropertyCtrl("class", $width, Wide::getConstants()); |
| 52 | - return $this->addToPropertyCtrl("class", "column",array("column")); |
|
| 52 | + return $this->addToPropertyCtrl("class", "column", array("column")); |
|
| 53 | 53 | } |
| 54 | 54 | |
| 55 | 55 | /** |
@@ -57,29 +57,29 @@ discard block |
||
| 57 | 57 | * @param int $index |
| 58 | 58 | * @return \Ajax\semantic\html\collections\HtmlGridCol |
| 59 | 59 | */ |
| 60 | - public function getCol($index){ |
|
| 60 | + public function getCol($index) { |
|
| 61 | 61 | return $this->getItem($index); |
| 62 | 62 | } |
| 63 | 63 | |
| 64 | - public function setColsCount($colsCount,$toCreate=true){ |
|
| 64 | + public function setColsCount($colsCount, $toCreate=true) { |
|
| 65 | 65 | $this->setWidth($colsCount); |
| 66 | - if($toCreate===true){ |
|
| 66 | + if ($toCreate===true) { |
|
| 67 | 67 | $count=$this->count(); |
| 68 | - for($i=$count;$i<$colsCount;$i++){ |
|
| 68 | + for ($i=$count; $i<$colsCount; $i++) { |
|
| 69 | 69 | $this->addItem(null); |
| 70 | 70 | } |
| 71 | 71 | } |
| 72 | 72 | return $this; |
| 73 | 73 | } |
| 74 | 74 | |
| 75 | - public function addCols($colCount){ |
|
| 76 | - for($i=0;$i<$colCount;$i++){ |
|
| 75 | + public function addCols($colCount) { |
|
| 76 | + for ($i=0; $i<$colCount; $i++) { |
|
| 77 | 77 | $this->addItem(null); |
| 78 | 78 | } |
| 79 | 79 | return $this; |
| 80 | 80 | } |
| 81 | 81 | |
| 82 | - public function addCol($width=NULL){ |
|
| 82 | + public function addCol($width=NULL) { |
|
| 83 | 83 | return $this->addItem($width); |
| 84 | 84 | } |
| 85 | 85 | |
@@ -87,7 +87,7 @@ discard block |
||
| 87 | 87 | * stretch the row contents to take up the entire column height |
| 88 | 88 | * @return \Ajax\semantic\html\content\HtmlGridRow |
| 89 | 89 | */ |
| 90 | - public function setStretched(){ |
|
| 90 | + public function setStretched() { |
|
| 91 | 91 | return $this->addToProperty("class", "stretched"); |
| 92 | 92 | } |
| 93 | 93 | |
@@ -95,19 +95,19 @@ discard block |
||
| 95 | 95 | * @param string $color |
| 96 | 96 | * @return \Ajax\semantic\html\content\HtmlGridRow |
| 97 | 97 | */ |
| 98 | - public function setColor($color){ |
|
| 99 | - return $this->addToPropertyCtrl("class", $color,Color::getConstants()); |
|
| 98 | + public function setColor($color) { |
|
| 99 | + return $this->addToPropertyCtrl("class", $color, Color::getConstants()); |
|
| 100 | 100 | } |
| 101 | 101 | |
| 102 | - public function setValues($values,$force=false){ |
|
| 102 | + public function setValues($values, $force=false) { |
|
| 103 | 103 | $count=$this->count(); |
| 104 | - if($force===true){ |
|
| 105 | - for($i=$count;$i<\sizeof($values);$i++){ |
|
| 106 | - $this->addItem(new HtmlGridCol($this->identifier."-col-".($this->count()+1),null)); |
|
| 104 | + if ($force===true) { |
|
| 105 | + for ($i=$count; $i<\sizeof($values); $i++) { |
|
| 106 | + $this->addItem(new HtmlGridCol($this->identifier."-col-".($this->count()+1), null)); |
|
| 107 | 107 | } |
| 108 | 108 | } |
| 109 | - $count=\min(array($this->count(),\sizeof($values))); |
|
| 110 | - for($i=0;$i<$count;$i++){ |
|
| 109 | + $count=\min(array($this->count(), \sizeof($values))); |
|
| 110 | + for ($i=0; $i<$count; $i++) { |
|
| 111 | 111 | $this->content[$i]->setValue($values[$i]); |
| 112 | 112 | } |
| 113 | 113 | return $this; |
@@ -117,15 +117,15 @@ discard block |
||
| 117 | 117 | * {@inheritDoc} |
| 118 | 118 | * @see \Ajax\common\html\HtmlCollection::createItem() |
| 119 | 119 | */ |
| 120 | - protected function createItem($value){ |
|
| 121 | - $col=new HtmlGridCol($this->identifier."-col-".($this->count()+1),$value); |
|
| 120 | + protected function createItem($value) { |
|
| 121 | + $col=new HtmlGridCol($this->identifier."-col-".($this->count()+1), $value); |
|
| 122 | 122 | return $col; |
| 123 | 123 | } |
| 124 | 124 | |
| 125 | - public function compile(JsUtils $js=NULL,View $view=NULL){ |
|
| 126 | - if($this->_implicite===true){ |
|
| 125 | + public function compile(JsUtils $js=NULL, View $view=NULL) { |
|
| 126 | + if ($this->_implicite===true) { |
|
| 127 | 127 | $this->_template="%wrapContentBefore%%content%%wrapContentAfter%"; |
| 128 | 128 | } |
| 129 | - return parent::compile($js,$view); |
|
| 129 | + return parent::compile($js, $view); |
|
| 130 | 130 | } |
| 131 | 131 | } |
| 132 | 132 | \ No newline at end of file |