Skip to main content

Home/ Drupal for Developers/ Group items tagged drupal

Rss Feed Group items tagged

Daniel Gregoire

forms_api_reference.html | Drupal API - 0 views

  •  
    Drupal 6 Form API Reference
Daniel Gregoire

drupal_hash_base64 | Drupal API - 0 views

  •  
    Drupal 7 function for generating url-safe sha-2 hashes.
Daniel Gregoire

Create your own API Site in Drupal 6 | drupal.org - 2 views

  •  
    Method for setting up a local/mirror copy of api.drupal.org. Core and contrib explained (though see comments for more details).
webExplorations

The Drupal Cookbook (for beginners) | drupal.org - 0 views

  •  
    A nice summary giving an overview of what you can do with Drupal as well as the ability to zoom in on certain things such as menus and taxonomy. Great to help new folk get started with Drupal.
Bensan George

Applying Patches to Drupal Core | drupal.org - 0 views

shared by Bensan George on 02 Apr 09 - Cached
  •  
    Applying patches to Drupal Code
Bensan George

Drupal showcase | drupal.org - 0 views

shared by Bensan George on 09 Apr 09 - Cached
  •  
    A showcase of all Drupal sites
Fabola smith

Drupal Blogs,Do It with Drupal,Drupal Development Blogs | Ebizon NetInfo - 0 views

  •  
    Do It With Drupal - 2009 is coming up in New Orleans and is set to be bigger and more fruitful than the event held in 2008.
paresh sagar

Drupal Vs WordPress Vs Joomla: Settling The Debate Once And For All - 0 views

  •  
    If you are still confused about choosing the right one from Drupal vs WordPress vs Joomla, feel free to contact our experts.
andrew smith

Hire Drupal Developers | Drupal CMS Development company - 0 views

  •  
    Anubavam offers a wide range of Drupal consulting services meant to assist companies and organizations with various aspects of a Drupal development project
innoraft

Tips to Secure your Drupal Website with Ease: Basic Security checklist - 0 views

Drupal powers more than 7,00,000 sites across the internet, which increases the chance of a specific site owner being vulnerable to cyber attacks.  Although all third-party modules are heavily...

drupal drupal8

started by innoraft on 18 Nov 19 no follow-up yet
specbee

Some guiding light in Drupal to WordPress migration | Specbee - 0 views

  •  
    If you have made your decision on Drupal to WordPress migration for your website, here is a brief guide to help you through with this with lesser hassles
Shahriar Kabir

Drupal - An Open Source CMS - 0 views

  •  
    Drupal is a distributed platform made by a dynamic group and overflowing with potential. Use as-is or snap in any of a huge number of free designs and modules for fast site assembly. Designers cherish the all around archived APIs of Drupal. Creators cherish their adaptability. Site chairmen love their boundless adaptability.
anonymous

Create Drupal form using theme_table() like module list form - 0 views

  •  
    Create Drupal form using theme_table() like module list form
Daniel Gregoire

Setup of /sites directory for multi-site | drupal.org - 0 views

  •  
    Good overview of directory structure for setting up Drupal multisite installations.
Hendy Irawan

SELF Social Network | community.featureservers.org - 0 views

  •  
    "This feature was generated from the demonstration site for Isaac Sukin's SouthEast LinuxFest Drupal Day presentation on Social Networking in Drupal on June 13th, 2010. The original demo site is at http://sndemo.dev3.webenabled.net/"
Scott Blackburn

Views Help: How to get a field to "Link this field to its user" besides username | drup... - 0 views

  • Though one would think the $field object is what we wanted-- the actual object we needed is $row (even though we're only looking at one field in the row). Put the following into the field tpl file to see what the necessary info is: <?phpprint '<pre>';print_r($row);print '</pre>';?> Then, to actually make the link, put the following in your field tpl file: <?php$account = user_load($row->uid);print l($row->profile_values_profile_fullname_value, 'users/' . $account->name);?> Change 'profile_values_profile_fullname_value' to the proper field alias (based on the $row output). Also, be sure to change 'users' to whatever the path is for your user accounts. I also had another thought-- given your use case, you may want to consider the http://drupal.org/project/realname module as well. It will replace usernames with whatever field(s) you designate all over the site. EDIT: I had another thought. I'm not sure of the performance implications of doing a user_load in the template file. Another option is to add the 'User: name' field to the view but exclude it from display. Then you could avoid the user_load and change the code in the tpl file to: <?phpprint l($row->profile_values_profile_fullname_value, 'users/' . $row->users_name);?>
  •  
    theming the field tpl files for Views2
anonymous

Free your content of PHP: Moving PHP code out of blocks, views and nodes | 2bits.com, I... - 2 views

  • From the early days, Drupal had the ability to embed PHP code in its content. This provides flexibility and functionality, most importantly, nodes and blocks can contain dynamically fetched data from the database using custom queries and displayed them in other content. This is an easy approach to get such data without writing a module. All you need to do is assign the PHP input format filter to the node or block and paste your PHP code in it, and voila, you have dynamic content. Code in Content: the issues However, this approach is suboptimal and has serious drawbacks, including:
  •  
    From the early days, Drupal had the ability to embed PHP code in its content. This provides flexibility and functionality, most importantly, nodes and blocks can contain dynamically fetched data from the database using custom queries and displayed them in other content. This is an easy approach to get such data without writing a module. All you need to do is assign the PHP input format filter to the node or block and paste your PHP code in it, and voila, you have dynamic content.
Bensan George

Step by Step Setup of Calendar View | drupal.org - 0 views

  •  
    Setting up a calendar view in Drupal
« First ‹ Previous 41 - 60 of 494 Next › Last »
Showing 20 items per page