Featured
-
How Regression Testing Detects Integral Errors In Business Processes
Humans are forever changing and evolving and so to
by kristina.rigina -
Get Display Banner Advertising Opportunity on FindNerd Platform
“Do you have a product or service that nee
by manoj.rawat -
Android O Released with Top 7 New Features for App Developers
Android was founded by Andy Rubin, Rich Miner, Nic
by sudhanshu.tripathi -
Top 5 Features That Make Laravel the Best PHP Framework for Development
Laravel is a free open source Web Framework of PHP
by abhishek.tiwari.458 -
Objective C or Swift - Which Technology to Learn for iOS Development?
Swift programming language is completely based on
by siddharth.sindhi
Tags
Drupal 7: How to add multiple location to a single node with gmap and location?
For this you have to install these modules :-
views
geophp
geocoder
geofield
addressfield
libraries
&...
how can Menu Breadcrumb module is used in my tpl.php file in drupal?
Hello Readers ,
Breadcrumbs or breadcrumb trails are a graphical control element used as a navigational aid in user interfaces. It allows users to keep track of their locations within programs, documents or websites.
So in th...
Attaching image files to nodes programmatically in Drupal 7
Hi All,
It is quite easy to add a node programmatically in Drupal 7. But it gets little bit complex when we need to add an image to this node as well.
Use the following codebase to add an image to a node programmatically:
global $user_...
Some useful modules related to views in Drupal
I was searching for a module which can provide me a grid view page with lot of flexibility and found a very usefull module related to views which is Views Fluid Grid
I also found a list of modules which related to views module which enhance vi...
Drupal 7 get information of current logged-in user in external PHP file
Hi,
Here is a code for loading current logged-in user using Bootstrap full in external PHP file.
function user_load_from_bootstrap($uid = NULL) {
define('DRUPAL_ROOT', $_SERVER['DOCUMENT_ROOT']);
$base_url = 'https://'.$_SERVER['HTTP_HOST...
Drupal Queue Api
I have been using Views Bulk Operations (VBO) module from long time. I always found an option appear in list after enabling the module Enqueue the operation instead of executing it directly , this make me appealing to learn more about Drupal Q...
Make file private in drupal 7
To make file access by permission in drupal 7, use 'private_files_download_permission' module. This module provide features to drupal developers to download files by specific roles. For example:- In my requirement,there are multiple resume in a f...
How to use "Group By" in views 3
Hello All,
These are the following steps to use "Group By" in views 3
First create a new view.
Select your content type under Filter section.
Select style under "FORMAT" section in your page.
Go to the selected style settings there...