Example #1
0
 function openRow($styles = "", $do_switch = 1)
 {
     if (!is_array($styles)) {
         $styles = array();
     }
     if ($do_switch) {
         $this->switchClass();
     }
     if (!$styles["class"]) {
         $styles["class"] = $this->switcherClass[$this->classcnt];
     }
     $s = array_merge((array) $styles, (array) $this->getHover());
     return Table::openRow($s);
 }