Exemplo n.º 1
0
 /**
  * view footer
  */
 function viewFooter()
 {
     print "</table>\n";
     parent::viewFooter();
 }
Exemplo n.º 2
0
 /**
  * view footer
  */
 function viewFooter()
 {
     $class = $this->searchString != '' ? 'fmSearchResult' : 'fmTD1';
     while ($this->cellCnt < $this->cellsPerRow) {
         print "<td class=\"{$class}\">&nbsp;</td>\n";
         $this->cellCnt++;
     }
     print "</tr>\n";
     print "</table>\n";
     parent::viewFooter();
 }