interface-wpml-log.php 266 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 <?php /** * @author OnTheGo Systems */ interface WPML_Log { public function insert( $timestamp, array $entry ); public function get( $page_size = 0, $page = 0 ); public function save( array $data ); public function clear(); public function is_empty(); }