Tuesday, October 4, 2011

Checking whether a module is Exists in Drupal or not

/* Checking with valid module */
$status = module_exists("system");
echo "--".$status;
/*  output: 1 i.e. Module exists */


/* Checking with invalid module */
$status = module_exists("systems");
echo "--".$status;
/*  output: 0  i.e. Module does not exists */

No comments:

Post a Comment

Followers