Automator_System_Report::add_db_table_prefix( string $table )
Add prefix to table.
Contents
Parameters Parameters
- $table
-
(Required) Table name.
Return Return
(string)
Source Source
File: src/core/lib/utilities/class-automator-system-report.php
protected function add_db_table_prefix( $table ) { global $wpdb; return $wpdb->prefix . $table; }
Expand full source code Collapse full source code View on Github