🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-19 14:22:24 | PHP 8.1.34
📂
/ (Root)
/
home
/
therahul
/
thedasstores.com
/
wp-content
/
plugins
/
google-listings-and-ads
/
src
/
DB
📍 /home/therahul/thedasstores.com/wp-content/plugins/google-listings-and-ads/src/DB
🔄 Refresh
✏️
Editing: TableInterface.php
Writable
<?php declare( strict_types=1 ); namespace Automattic\WooCommerce\GoogleListingsAndAds\DB; defined( 'ABSPATH' ) || exit; /** * Interface TableInterface * * @package Automattic\WooCommerce\GoogleListingsAndAds\DB */ interface TableInterface { /** * Install the Database table. */ public function install(): void; /** * Determine whether the table actually exists in the DB. * * @return bool */ public function exists(): bool; /** * Delete the Database table. */ public function delete(): void; /** * Truncate the Database table. */ public function truncate(): void; /** * Get the name of the Database table. * * @return string */ public function get_name(): string; /** * Get the columns for the table. * * @return array */ public function get_columns(): array; /** * Get the primary column name for the table. * * @return string */ public function get_primary_column(): string; /** * Checks whether an index exists for the table. * * @param string $index_name The index name. * * @return bool True if the index exists on the table and False if not. * * @since 1.4.1 */ public function has_index( string $index_name ): bool; /** * Checks whether a column exists for the table. * * @param string $column_name The column name. * * @return bool True if the column exists on the table or False if not. * * @since 2.5.13 */ public function has_column( string $column_name ): bool; }
💾 Save Changes
❌ Cancel