示例#1
0
 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();
 }