PluginProbe
WP Coder – Insert & Manage Code Snippets / 1.1
WP Coder – Insert & Manage Code Snippets v1.1
4.5.1 1.1 2.3.1 2.3.2 2.4.1 2.5.1 2.5.2 2.5.3 2.5.4 2.5.5 2.5.6 3.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1 3.1.1 3.2 3.2.1 3.3 3.4 3.5 3.5.1 All 39 releases
wp-coder / include / activator.php

activator.php in WP Coder – Insert & Manage Code Snippets 1.1, at include/activator.php

12 lines 361 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php if ( ! defined( 'ABSPATH' ) ) exit;
2 global $wpdb;
3 require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
4 $table = $wpdb->prefix . 'wow_'.self::PREF;
5 $sql = "CREATE TABLE " . $table." (
6 id mediumint(9) NOT NULL AUTO_INCREMENT,
7 title VARCHAR(200) NOT NULL,
8 param TEXT,
9 UNIQUE KEY id (id)
10 ) DEFAULT CHARSET=utf8;";
11 dbDelta($sql);
12