Skip to main content

Home/ Drupal for Developers/ Group items matching "drupal" in title, tags, annotations or url

Group items matching
in title, tags, annotations or url

Sort By: Relevance | Date Filter: All | Bookmarks | Topics Simple Middle
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

Multi-step Forms in Drupal 6 using variable functions | pingVision - 1 views

  •  
    Unique method for handling multistep forms in Drupal.
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

The New Way To Generate Hashes In Drupal 7 | Engineered Web - 0 views

  •  
    Explanation of shift away from md5 to sha-2. See links to Drupal 7 api for (really easy) functions for generating url-safe sha-2 hashes.
Daniel Gregoire

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

  •  
    Good tips for using external libraries with Drupal.
Richard Sheppard

Backpack: Debugging Drupal - 4 views

  •  
    This page is linked from the Devel Module's project page http://drupal.org/project/devel . I don't know how long the link has been on the project page, but it looks very handy indeed.
Bartłomiej Małysz

best free drupal 6 themes - 2 views

  •  
    my private collection of absolutely free best drupal 6 templates all themes are categorized
Bensan George

Organic Groups modules | drupal.org - 0 views

shared by Bensan George on 08 Apr 09 - Cached
  •  
    Drupal organic groups
Bartłomiej Małysz

Drupal Database Documentation - 0 views

  •  
    This is png picture from Drupal Database's Documentation
Bensan George

Coding standards | drupal.org - 0 views

  •  
    Drupal coding standards
Daniel Gregoire

Restrict specific folders from public download (via .htaccess) | drupal.org - 0 views

  • If you set "public" as the download method, you can still protect some of your folders by settings in your .htaccess file, if you have mod_rewrite enabled. For instance, if your files live in sites/default/files, and you want to protect everything in sites/default/files/protected_download_dir, then you can add the following line to your central .htaccess file: RewriteRule ^sites\/default\/files\/(protected_download_dir\/.*)$ index.php?q=system/files/$1 The files in this folder (or, all files that match the regular expression) will not be served directly by apache, but by a full drupal request using the file_download() callback. The routing for system/files is defined in system_menu(). Access Checking for File Downloads Modules can do access checking on files downloaded through file_download(), by implementing hook_file_download(). For instance, the filefield module will do access checking for all files that you upload via filefield. It will only give access to people who are allowed to see the node and the field the file belongs to. In addition, you can look for modules that restrict file downloads based on the folder name or other criteria. Access Checking built-in with Filefield The filefield module has access checking built-in. To make use of this, please Make sure to use the latest dev version of filefield (for now). The current offical release (08/2009) has a bug in access checking. Have a look into filefield issue 516104. Configure the filefield you want to protect. Use the filefield path module, to define where the files for the filefield should be stored by default. Add a line to your .htaccess to protect this folder (see above). Use whatever modules to restrict node or field access.
innoraft

Composerizing a non-composerized Drupal site to a Composerized Drupal site - 1 views

https://www.innoraft.com/blogs/composerizing-non-composerized-drupal-site-composerized-drupal-site

drupal composer

started by innoraft on 26 Jun 19 no follow-up yet
innoraft

How does entity cache work in Drupal 8 - 0 views

The Drupal Cache API is used to store data that takes a long time to compute. Caching can either be permanent or valid only for a certain time span, and the cache can contain any type of data.&nbsp...

drupal drupal8

started by innoraft on 05 Aug 19 no follow-up yet
specbee

Front-End Frameworks for Drupal - Helping you to Make a Better Choice | Specbee - 0 views

  •  
    Front-end frameworks offer exceptional flexibility to developers to build highly interactive, dynamic and complicated client-side interfaces. Drupal works great with frameworks like React, Angular and Vue. Learn more about them in this article.
Bartłomiej Małysz

Drupal 5.x | Drupal Themes, Joomla Templates, PHPKIT Styles - 0 views

  •  
    nice themes for games like wow, guildwars, etc.
Scott Blackburn

Feed API + Emfield Recipe | drupaltherapy.com - 0 views

  •  
    Here is a quick recipe that uses Drupal's Feed API, Feed Element Mapper, CCK and the Embedded Media Field to create independent embedded video nodes on your Drupal site by RSS. This is our first screencast and first contribution to the Drupal Dojo, hopefully you will find this interesting and try it out yourself.
« First ‹ Previous 61 - 80 of 494 Next › Last »
Showing 20 items per page