- WordPress core y plugins - Tema Twenty Twenty-Four configurado - Plugin allow-unfiltered-html.php simplificado - .gitignore configurado para excluir wp-config.php y uploads 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
41 lines
801 B
PHP
Executable File
41 lines
801 B
PHP
Executable File
<?php
|
|
/**
|
|
* bwf_contact_fields table class
|
|
*
|
|
*/
|
|
|
|
if ( ! class_exists( 'BWFAN_DB_Table_Contact_Fields' ) && BWFAN_Common::is_pro_3_0() ) {
|
|
|
|
class BWFAN_DB_Table_Contact_Fields extends BWFAN_DB_Tables_Base {
|
|
public $table_name = 'bwf_contact_fields';
|
|
|
|
/**
|
|
* Get table's columns
|
|
*
|
|
* @return string[]
|
|
*/
|
|
public function get_columns() {
|
|
return [
|
|
"ID",
|
|
"cid",
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Get query for create table
|
|
*
|
|
* @return string
|
|
*/
|
|
public function get_create_table_query() {
|
|
global $wpdb;
|
|
$collate = $this->get_collation();
|
|
|
|
return "CREATE TABLE {$wpdb->prefix}$this->table_name (
|
|
`ID` bigint(20) unsigned NOT NULL auto_increment,
|
|
`cid` bigint(20) unsigned NOT NULL,
|
|
PRIMARY KEY (`ID`),
|
|
UNIQUE KEY `cid` (`cid`)
|
|
) $collate;";
|
|
}
|
|
}
|
|
} |