예제 #1
0
파일: cardtabs.php 프로젝트: dev-lucid/html
 public function getfooter()
 {
     if (is_null($this->footer) === true) {
         $this->footer = html::cardFooter();
     }
     return $this->footer;
 }
예제 #2
0
 public function renderFooter()
 {
     $footer = html::cardFooter();
     $footer->add($this->bottomleft);
     $footer->add($this->bottomright);
     return $footer->render();
 }