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

  • Can users promote own content when pay?
  • keeping text area or input field within its div
  • hook_views_query_alter not working with exposed filter form as block
  • Contextual links handler ignores existing query string
  • Fatal error: Cannot redeclare class views_join_subquery

Pages

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