spaces_ui.install in Spaces 5
Same filename and directory in other branches
File
spaces_ui.installView source
<?php
/**
* Implementaton of hook_install().
*/
function spaces_ui_install() {
switch ($GLOBALS['db_type']) {
case 'mysqli':
case 'mysql':
db_query("CREATE TABLE {spaces_features_ui} (\n feature varchar(30) NOT NULL default '',\n label varchar(255) NOT NULL default '',\n description longtext,\n PRIMARY KEY (feature)\n ) /*!40100 DEFAULT CHARACTER SET UTF8 */");
}
}
Functions
Name | Description |
---|---|
spaces_ui_install | Implementaton of hook_install(). |