Warning: Array to string conversion in /home/customer/www/docs.automatorplugin.com/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 825
Automator_DB::get_views()

Returns the list of Automator views.


Return Return

(array) The list of Automator views.


Source Source

File: src/core/class-automator-db.php

	public static function get_views() {
		global $wpdb;
		return array(
			'uap_recipe_logs_view'  => $wpdb->prefix . 'uap_recipe_logs_view',
			'uap_trigger_logs_view' => $wpdb->prefix . 'uap_trigger_logs_view',
			'uap_action_logs_view'  => $wpdb->prefix . 'uap_action_logs_view',
			'uap_api_logs_view'     => $wpdb->prefix . 'uap_api_logs_view',
		);
	}