Video on how to setup the Nice Menus module
Here is a video on how to setup the nice menus module:
Here is a video on how to setup the nice menus module:
The following JQuery code if put into your simple_module.js file will work:
If I have this HTML:
Here is a video tutorial on how to install views slideshow on our linux box drupalessentials.babson.edu. If you are installing on your local machine the same basic instructions will work if you install drush (there is another video on this site about that), or you can manually download the modules and files to you machine.
These are some great questions a student recently emailed to me. My answers are in green. Thank you for letting me share your questions! I've been hearing some of these often, which always says to me, it's time to blog about it :)
Professor,
I have some questions about the terminal application on my mac. I am very confused about the terminology and processes.
usermod -g group user
This will also allow them to use chgrp to change the group ownership of any files.
Here is a quick video introducing you to Drush and drush aliases in Drupal. Drush allows you to quickly interract with your Drupal site from the command line, allowing you to add or modify users, dump your mysql database, check the status of your drupal instance, etc.
If you're in my class and want to install views on the linux box I already have drush installed so you just need to follow the 6 steps below: (if you're not in my class but just are following along in the book to install views on your local machine skip to after step 6 to the video -- If you're in my class and want to install views on your own machine you can use the video and instructions after step 6 as well).
1.) use putty on a pc or terminal on a mac to login to drupalessentials.babson.edu
Hello,
Welcome to Drupal Web Programming Essentials. This is the first video for the book Drupal Web Programming Essentials, and class for Babson College. This video has a basic intoduction and a recommendation for a code editor so we can get started learning Drupal and all essential technologies. The book teaches basic HTML, CSS, JavaSript, LAMP (Linux, Apache, PHP, MYSQL) and Drupal programming -- everything you need to launch a career as a web programmer / Drupal programmer. The book is or will be available shortly.
In Drupal7 with entities there are some cooler ways of manipulating entity objects than using node_save and user_save, now this code for instance will allow you to add a value to the cck machine name field "field_user_terms" which takes multiple values -- many taxonomy terms can be assigned to this field so you'll notice it's an array:
$user = user_load($current_row->uid); $obj = entity_metadata_wrapper('user', $user); $obj->field_user_terms[] = $current_row->tid; $obj->save();