Example #1
0
 private static function _table_user()
 {
     $table = new Table(array('Username', 'Password'), 'Table User');
     $table->addData(array('admin', '*****'));
     $table->addData(array('manager', '*****'));
     $table->addData(array('user', '*****'));
     return $table->getTable();
 }