. /** * Log storage sql reader interface. * * @package core * @copyright 2014 Petr Skoda * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ namespace core\log; defined('MOODLE_INTERNAL') || die(); interface sql_internal_reader extends sql_select_reader { /** * Returns name of the table or database view that * holds the log data in standardised format. * * Note: this table must be used for reading only, * it is strongly recommended to use this in complex reports only. * * @return string */ public function get_internal_log_table_name(); }