Example #1
0
 /**
  * Optional. If you need to include bulk actions in your list table, this is
  * the place to define them. Bulk actions are an associative array in the format
  * 'slug'=>'Visible Title'
  * 
  * If this method returns an empty value, no bulk action will be rendered. If
  * you specify any bulk actions, the bulk actions box will be rendered with
  * the table automatically on display().
  * 
  * Also note that list tables are not automatically wrapped in <form> elements,
  * so you will need to create those manually in order for bulk actions to function.
  * 
  * @return array An associative array containing all the bulk actions: 'slugs'=>'Visible Titles'
  */
 public function get_bulk_actions()
 {
     return $this->definition->bulkActions();
 }