Skip to main content area
Home

User menu

  • Register

Main menu

  • Home
  • Modules
  • Themes
  • PHP
  • JQuery
  • WordPress
  • Joomla
  • HTML
  • Tips & Tricks

Business Insider: How Hard Is Drupal To Use?

admin's picture
Created by admin on Tue, 01/29/2013 - 18:15

  • Read more about Business Insider: How Hard Is Drupal To Use?
  • admin's blog

Drupal Login and registration links in popup.

admin's picture
Created by admin on Wed, 12/19/2012 - 12:35
  • Read more about Drupal Login and registration links in popup.
  • admin's blog

Installation of Drupal on CentOS Miriam Segondat

admin's picture
Created by admin on Thu, 11/22/2012 - 18:48

Its3 Drupal from guest954945a
  • Read more about Installation of Drupal on CentOS Miriam Segondat
  • admin's blog

Dries Buytaert's Software Powers A Million Important Websites — And He Built It From His Couch.

admin's picture
Created by admin on Fri, 11/09/2012 - 11:31

  • Read more about Dries Buytaert's Software Powers A Million Important Websites — And He Built It From His Couch.
  • admin's blog

How to get list of files and folders from Google Drive on my own website using PHP?

admin's picture
Created by admin on Thu, 11/08/2012 - 16:49

The first step is authentication. You can use Google's own example detailed here which runs you through the entire procedure of doing that.

Once you have authentication complete, you can do the following: Register for an API key here.

  • Read more about How to get list of files and folders from Google Drive on my own website using PHP?
  • admin's blog

Create node programmatically with CCK fields in drupal 6

admin's picture
Created by admin on Mon, 10/15/2012 - 13:29
<?php
// add node attributes
  $yourNode = new StdClass;
 
  //Set Node Type, as blog,page etc. 
  $yourNode->type = 'NODE TYPE';
         
  //set title of your node
  $yourNode->title = 'NODE_TITLE'
 
  //Set user or author of node, 1 for admin.
  $yourNode->uid = USER_ID;

  //Set node Status as published.
  $yourNode->status = 1;
 
  //Add node Body
  $yourNode->body = 'This is body Content';

    //add CCK field data
  • Read more about Create node programmatically with CCK fields in drupal 6
  • admin's blog

Pages

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • …
  • next ›
  • last »

Drupal Questions

  • Correct usage of "The length of time raw query results should be cached" and "The length of time rendered HTML output"
  • Numbers ver phone numbers
  • Add a field handler option to _all fields_ in a custom module
  • style-plugin: how to theme row?
  • Filter on boolean doesn't respect default values

Pages

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • …
  • next ›
  • last »