5 /* hook_schema() implementáció */
6 function nevergone_3_schema() {
7 /* adatbázis-táblát leíró tömb */
8 $schema['nevergone_3'] = array(
9 'description' => 'Node azonosító, színkód',
16 'description' => 'Node azonosító',
22 'description' => 'Tartalomhoz rendelt színkód',
25 /* elsődleges kulcs */
26 'primary key' => array('nid'),
32 /* hook_install() implementáció */
33 function nevergone_3_install() {
34 drupal_install_schema('nevergone_3');
38 /* hook_uninstall() implementáció */
39 function nevergone_3_uninstall() {
40 drupal_uninstall_schema('nevergone_3');