Skip to main content

Home/ Drupal for Developers/ Group items tagged drupal-module

Rss Feed Group items tagged

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
Daniel Gregoire

AJAX-ifying Drupal Node Forms | Stella's Website - 8 views

  •  
    Another tutorial on adding AJAX to Drupal 6 forms with FAPI. Based on poll.module like others. This process is not as straightforward as some, which is why it has been improved upon in D7.
Daniel Gregoire

node_example.module | Drupal API - 0 views

  •  
    Basic creation of programmatic custom content type
Hendy Irawan

Social Networking Sites | groups.drupal.org - 0 views

  •  
    "This is the group for people who want to discuss Drupal's social networking tools. These tools include modules like Buddylist, Organic Groups, Invite, FOAF, Private message, and so forth. Sites that currently do successful social networking are: * Orkut * Facebook * MySpace * LinkedIn * Xing The goal of this group is to foster communication between the developers of Drupal's social networking modules, discuss roadmaps, and collect community input."
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.
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
Bensan George

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

  •  
    Setting up a calendar view in Drupal
Daniel Gregoire

Programatic CCK Now Possible! | groups.drupal.org - 2 views

  • <?phpfunction mymodule_enable() {     // Get the files content   $filename = drupal_get_path('module','mymodule') . "/mymodule.cck";  $content = implode ('', file ($filename));      // Build form state    $form_state = array(       'values' => array(            'type_name' => '<create>',            'macro' => $content,      ),     );    // Put it in there     drupal_execute("content_copy_import_form", $form_state);}?>
  •  
    Start with comment 54181 - "This works for me in Drupal 6" and read along.
Daniel Gregoire

3 Tips For Using External Libraries With Drupal | Engineered Web - 4 views

  •  
    Good tips for using external libraries with Drupal.
Bensan George

Organic Groups modules | drupal.org - 0 views

shared by Bensan George on 08 Apr 09 - Cached
  •  
    Drupal organic groups
Scott Blackburn

Content Profile | drupal.org - 0 views

  •  
    Fago's Drupal6 answer to his node profile module. I'll be testing this in the near future.
Scott Blackburn

running og forum with mysql 4 | drupal.org - 0 views

Daniel Gregoire

Wiki Pages - drupal-chart-api - Project Hosting on Google Code - 2 views

  •  
    Chart API module documentation
anonymous

The Great Pretender: Making your data act like a field | Lullabot - 7 views

  • Now, though, it's possible for any module to tie into CCK's field management page to control the positioning of custom content. The key is hook_content_extra_fields(), and in this article we'll show you how to use it.
  • Now, though, it's possible for any module to tie into CCK's field management page to control the positioning of custom content. The key is hook_content_extra_fields(), and in this article we'll show you how to use it.
  •  
    Dubai Independent Escorts Service Dubai Independent Escorts Agency Independent Escort In Dubai Independent Escort In UAE Independent Escort Service Dubai Independent Escort Agency In Dubai Independent Model Escort In Dubai Independent Indian Escort In Dubai Arab Call Girls In Dubai
Scott Blackburn

How to make CCK fields do some of the same tricks as taxonomy terms | !&# - 0 views

  • In Drupal, taxonomy.module implements hook_term to provide links among content which shares a given term. Site builders often use this feature to provide indexes and RSS feeds of their content. Taxonomy.module's purpose is to support the creation of controlled vocabularies which we can use to classify our site's content. If taxonomy.module were a prescription drug, this would be its "on-label" or indicated use. Using taxonomy.module vocabularies and terms to store essential data about our content is what I call an "off-label" use. You're not really creating a controlled vocabulary, and the term-node relationship in these cases isn't always classificatory. However, a clever web developer will use the tools that get the job done, and often taxonomy.module is the perfect tool for making this happen. Because this information is essential to your node's content, CCK fields are indicated for this use. However, CCK fields don't have built-in linking among nodes which share values for the same field. Also absent is any built-in RSS feed for a CCK field's value. This requires some theming and Views.
Josh Beauregard

Drupal modules api site - 2 views

  •  
    Api documentation for contributed modules
Daniel Gregoire

Searchlight: A Views-driven Approach to Pluggable Search in Drupal | Development Seed - 5 views

  •  
    Write-up and video on Development Seed's new "Searchlight" module, which brings the power of Solr or Sphinx as Views backends. A la Views 3.x, but with some differences. Also nice demo of Health Market Innovation's site which Dev. Seed did.
Scott Blackburn

Form generation | drupaldocs.org - 0 views

  •  
    Functions to enable output of HTML forms and form elements. Drupal uses these functions to achieve consistency in its form presentation, while at the same time simplifying code and reducing the amount of HTML that must be explicitly generated by modules.
‹ Previous 21 - 40 of 96 Next › Last »
Showing 20 items per page