get drupal taxonomy term list using vocabulary August 30, 2020 get drupal taxonomy term list using vocabulary Get Drupal 7 taxonomy term list using the vocabulary machine name function get_taxono...Read More
How to add HTML in the drupal form August 30, 2020 How to add HTML in the drupal form If you want to add HTML in Drupal form using form API. you need to use #markup in that form fiel...Read More
How to remove N/A from radio button options in drupal7? August 30, 2020 How to remove N/A from radio button options in drupal7? If you don't want to show the N/A option in the radio buttons option list...Read More
get the file download link in drupal August 30, 2020 get the file download link in drupal //set fid to your file’s fid. //we can get fid from file_managed table $fid = 1; //build a li...Read More
Drupal role, module & permission August 30, 2020 Drupal role, module & permission SELECT r.name,p.module,p.permission FROM role_permission p left join role r on p.rid=r.rid ...Read More
Get field language in drupal August 30, 2020 Get field language in drupal field_available_languages($entity_type, $field) Parameters $entity_type: The type of the entity the fie...Read More
Data from URL to Web service Client (REST) Drupal August 30, 2020 Data from URL to Web service Client (REST) Drupal $json = drupal_http_request ( 'http://maps.google.com/maps/api/geocode/json?add...Read More
Reset drupal admin password August 30, 2020 Reset drupal admin password define('DRUPAL_ROOT', getcwd()); require_once DRUPAL_ROOT . '/includes/bootstrap.inc'; d...Read More
Force enable clean url in drupal 7 August 30, 2020 Force enable clean URL in drupal 7 THE clean URL state is managed through the Drupal variable clean_url. clean url disabled: clean_...Read More
Fix Restore databases from Backup & Migrate module with Autoclave module Drupal August 30, 2020 Fix Restore databases from Backup & Migrate module with Autoclave module Drupal In file: /sites/all/modules/third-party/backup_mi...Read More
Get field label by the field name in drupal August 30, 2020 Get field label by the field name in drupal $entity_type = 'node' ; $bundle_name = 'article' ; $field_name = ...Read More
Add inline jQuery in Drupal 7 August 30, 2020 Add inline jQuery in Drupal 7 drupal_add_js ( ' ( function ( $ ) { $ ( document ) . ready ( function ( ) { $ ( "body...Read More
Check user is an admin in drupal August 30, 2020 Check user is an admin in drupal global $user; // Check to see if $user has the administrator role. if (in_array('administrator...Read More
Drupal Custom PHP file August 30, 2020 Drupal Custom PHP file define ( 'DRUPAL_ROOT' , getcwd ( ) ) ; require_once DRUPAL_ROOT . '/includes/bootstrap.inc...Read More
Fields setting stored in drupal 7 August 30, 2020 Fields setting stored in drupal 7 Base field data is in field_config , and instance data is in field_config_instance . Rather than ...Read More
Get all fields from a field collection in Drupal 7 August 30, 2020 Get all fields from a field collection in Drupal 7 function get_field_collection_fields($field){ $fc_instances = field_info_instances(...Read More
Submit drupal form & node_save using hook_submit_form in Drupal 7 August 30, 2020 Submit drupal form & node_save using hook_submit_form in Drupal 7 function MODULE_NAME_theme ( ) { return array ( ...Read More
Drupal get theme path August 29, 2020 Drupal get theme path <img src="/<?php print path_to_theme(); ?>/images/logo.gif" alt="<?php print t('H...Read More
Dynamic image manipulation using drupal imagecache August 26, 2020 Dynamic image manipulation using drupal imagecache <?php print theme('imagecache', $preset, $image['filepath'], $...Read More
Keep admin theme while editing user in drupal August 26, 2020 Keep admin theme while editing user in drupal use this code in hook_init() if (is_admin() && arg(0) == 'user' ...Read More