Skip to main content

Home/ Drupal for Developers/ Group items tagged modules

Rss Feed Group items tagged

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

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

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

  •  
    Good tips for using external libraries with Drupal.
Hans-Peter Zahno

Directory of Public Features Servers | groups.drupal.org - 3 views

  •  
    Considering the power of the Features module I'm surprised this list of public features servers is so small. Hopefully it will grow. Currently there isn't even a decent image gallery feature on any of these public features servers.
Graham Sutcliffe

Delivery Information not showing up when using uc_cart_add_item | Ubercart - 0 views

    • Graham Sutcliffe
       
      When adding cart items through a custom module ensure auc_cart_add_item() function has attribltes but calling module_invoke_all().
  •  
    How to make Drupal ubercart retain shipping rules when using uc_cart_add_item()
samantha armstrong

FixComputerpProblemsSite Surely Knows How to Fix Computer Problems! - 1 views

I was having problems with my laptop before. Good thing FixComputerpProblemsSite helped me fix it. And they are really the experts when it comes to solving any computer related issues. They can eas...

fix computer problems Drupal drupal_howto drupal_best_modules drupal_performance drupal_theme drupal_problems_solved drupal_modules_to_watch drupal_sites drupal_module module

started by samantha armstrong on 07 Jun 11 no follow-up yet
webExplorations

Top Drupal SEO Modules, Tips and Tricks to increase traffic | My Drupal - 0 views

  •  
    SEO
Scott Blackburn

Defining Spaces Features in Code in Drupal | Development Seed - 0 views

  •  
    I've been starting to make my way through using the Spaces and Context modules put together by developmentseed. It is interesting to start thinking more in terms of re-usable context driven features.
Bensan George

Organic Groups modules | drupal.org - 0 views

shared by Bensan George on 08 Apr 09 - Cached
  •  
    Drupal organic groups
Daniel Gregoire

Apache Solr and Drupal Default's Search | Trellon - 0 views

  • One issue that comes up from ApacheSolr being a separate search page is that the search form does not go to it by default. This is the $search_box in the page.tpl.php template. The way we change this behavior is to add a new submission handler to that form. You can create a custom module for this or put it in your custom theme. <?php/*** Implementation of hook_form_alter()*/function custommodule_form_alter(&$form, $form_state, $form_id) {  // Add submission handler to redirect to apachesolr  if ($form_id == 'search_theme_form') {    // Add a submit, because the search form redirects to a specific place    $form['#submit'][] = 'custommodule_search_submit';  }}/*** Implementation of form submit function*/function custommodule_search_submit($form, &$form_state) {  // Get form ID  $form_id = $form['form_id']['#value'];  // Create new redirect  $form_state['redirect'] = 'search/apachesolr_search/'. trim($form_state['values'][$form_id]);}?>
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
« First ‹ Previous 81 - 100 of 100
Showing 20 items per page