Log file';
if ($file != NULL) {
$file = array_reverse($file);
static $i = 1;
$form .= '
';
foreach ($file as $result) {
$form .= $result;
if ($i++ == 15) break;
} // end foreach
$form .= '
';
} // end if($file != NULL) {
return $form;
}
/**
* Form_View::log()
*
* Displays page of database activity associated with Affiliate Hoover
*
* @return array of data / html
*/
public static function log() {
return static::read_top_lines();
}
}