home | career | drupal | java | mac | mysql | perl | php | scala | uml | unix

Drupal example source code file (devel_node_access.install)

This example Drupal source code file (devel_node_access.install) is included in the DevDaily.com "Drupal Source Code Warehouse" project. The intent of this project is to help you "Learn Drupal by Example".

PHP - Drupal tags/keywords

devel_menu, devel_node_access_uninstall, function, if, menu_delete, php

The devel_node_access.install Drupal example source code

<?php
// $Id: devel_node_access.install,v 1.6 2010/09/10 20:58:53 salvis Exp $

/**
 * Implements hook_uninstall().
 */
function devel_node_access_uninstall() {
  variable_del('devel_node_access_debug_mode');

  if (!module_exists('devel') && ($devel_menu = menu_load('devel'))) {
    // Delete the development menu.
    menu_delete($devel_menu);
  }
}

Other Drupal examples (source code examples)

Here is a short list of links related to this Drupal devel_node_access.install source code file:

new blog posts

"Drupal" is a registered trademark of Dries Buytaert.

my drupal tutorials and examples  

Copyright 1998-2016 Alvin Alexander, alvinalexander.com
All Rights Reserved.

Beginning in 2016, a portion of the proceeds from pages under the '/drupal-code-examples/' URI will be donated to charity.