ListTable.php
283 Bytes
<?php
namespace AC;
/**
* Adapter for the WP List Table
*/
interface ListTable {
/**
* @param string $column
* @param int $id
*
* @return string
*/
public function get_column_value( $column, $id );
/**
* @return int
*/
public function get_total_items();
}