Hi everyone
If you are in Bangalore lets share our thoughts and learnings on Drupal.
Monthly Drupal Meet Bangalore
Hello all, welcome back to the monthly Drupal meet.
Our plan for the morning:
<
ul>
- Intro to Drupal & Site building.
- How to write your own module.
OR
<
ul>
Planned Drupal Meet ?
Hi all,
We have planned for a Drupal Meet on 30th March. Unfortunately I'll be out of town to attend http://devthon.org/ at Hyderabad.
I would appreciate if someone can volunteer and host this months Meetup. I can help you with the logistics & Venue with wifi @ Koramangala.
Tanay, Pavithra, Anil Sagar ??
Let me know if you guys can host the meetup.
Regards,
Chakrapani.
Global Drupal Training Days | R.N. Shetty Institute of Technology (RNSIT) - Bangalore
As part of the Drupal Training Days, Tridz Technologies in association with FSMK is conducting a workshop at RNSIT. Event is closed for about 100+ students from MCA & BCA departments. College has agreed to have some people as volunteers from the community. Any one free and ready to volunteer are most welcome.
Agenda for the Day
- Introduction to Drupal - Safwan Erooth
- Installing Drupal & Rapid Site Building with Drupal - Sandesh Yadav
- Q & A Session
Contact Details:
Read moreDrupal Bangalore
Events details @
http://www.meetup.com/drupalbangalore/events/97834682/
Venue will be posted soon by Chakri
Read moreMonthly Drupal Meet - Jan 26 - 2013
Hello guys, welcome back to the monthly drupal meet.
Please find below the agenda for the day:
-> Introduction
-> Hello Drupal - the ABCD of drupal. - Anil Sagar
Who can attend this: People who are new to drupal, who wants check how drupal works, who wants know what drupal can do and what you can do with it etc, etc
Read moreMonthly Drupal Meetup Feb 2nd
Hello everyone,
I hope everyone had a wonderful new year bash. Its time we meetup again to discuss the latest happenings in the Drupalsphere. Last time we had sessions for beginners and advanced users. Below is the agenda for Feb 2nd:
1.) Introduction to Drupal
2.) Session on Drupal 8 (Progress and contributions we can do as a community)
3.) Discussions regarding Drupal Camp Deccan Bangalore edition (Planned by our friends at Bangalore)
Venue: Azri Solutions, Plt no: 349, Jubliee Hills, Road No:80, Hyderabad.
Read moreDrupal Meetup Bangalore
Hello everyone,
Wish you a Very Happy New year to one and all.
Let us have the first meetup of the year on 5th of this month. Find below the agenda for the meetup:
1. Drupal + MongoDB : Kickstart by SaiTanay.
*Basics on Mongo DB
*Setting up MongoDB on a lampstack
*Getting Drupal to work with MongoDB
2. Code Sprint
3. Discussion about Drupal Camp Deccan, Bangalore Edition.
PS: If anybody has any interesting session and willing to speak please mail me at chakrapani[at]azrisolutions[dot]com
Venue:
Jaaga, No 68, KH Double Road
shoppica theme customisation
Hello friends,
I have created an e commerce website http://www.marvelenergytech.com. custom fields in product class appears in Description Tab and looks haphazard. can any of our member throw some light on this issue. If some body is ready to correct it i will pay. payment gateway integration support also needed.
Thanks & regards
K Krishnamurthy
+919442946688
Drupal Camp Bangalore
Hi All,
It was wonderful to meet everyone at the Drupal Training Day on 14th Dec. I believe there was a lot of discussion happening about having a Drupal Camp During Spring next year
(feb-mar). So what's the plan ?
@Tanay, Chakrapani, Anil: Maybe we can plan an IRC chat like last time to kick start this ?
Do not post the same job over and over
Looks like some are posting jobs here, the way they post on naukri,.
Posting the same thing over and over again
Ex:
Senior Drupal/PHP Developer | e24 Technologies, LLC (http://groups.drupal.org/node/274188)
Senior Drupal/PHP Developer | e24 Technologies, LLC (http://groups.drupal.org/node/273603)
Sr PHP/Drupal Developer | e24 Technologies, LLC (http://groups.drupal.org/node/273123)
Could you explain how the above are different from one another with the same content, except for different post-dates.
Read moreCorporate Website Revamp Project
Hi
This is Peter from IGS.
Our company wishes to revamp the corporate website. We wish engage a Bangalore based software consulting firm, specialized in Drupal to undertake the task.
Interested companies may send the response mail to peter.palal@indecomm.net . You may include your Website, URL, or PowerPoint deck detailing your capabilities, at the earliest.
Rgs
Peter, IGS
www.indecommtech.com
Drupal Training Day: Hyderabad - Dec 14th 2012
Hello Everyone,
As most of you aware, Drupal training days is back and it is going to held on Dec 14th world wide. During this day, there will be trainings conducted world wide.
Azri Solutions is going to organize drupal training workshop at Azri hyderabad premises on 14th Dec 2012.
Here is the agenda.
Dec 14th 2012, Friday
Timings: 2.30 PM - 7 PM.
-
Session on Drupal 8 - 2.30 PM - 3.30 PM
-
How to build your websites for different devices (desktops, mobile, IPAD, etc): 3.30PM - 4.30PM
Tea and snacks 4.30 - 5PM (Sponsored by Azri)
Read morehow to render content type form in drupal 7
Hi
How to get content type form in drupal_form_function();
I want render content type forum form in drupal 7.
Drupal Training Day : Bangalore - Dec 14 2012
As part of Drupal Training Day, Lets have a day-long workshop.
Here is the schedule and venue.
10:30 AM - 10:40 AM : Intro
10:45 AM - 11:15 AM : Learning by accident : The 3 secrets of nurturing technical talent- by Jacob Singh
11:15 AM - 11:30 AM : Q/A to JS
11:30 AM - 12:30 PM - Building your theme the OMEGA way by Hussain
12:30 PM - 01:30 PM - Lunch Break
01:30 PM - 02:30 PM - Drupal goes semantic with RDF : More humane web in making by Gokul
02:30 PM - 02:45 PM - Break
External Database connection Display results in Forms table as sortable pagination
<?php
/**
* @file
* This module is for example to connect external db and show result in form with table sortable and pagination
*
*/
/**
* Menu for Endpoint
*
* Implementation of hook_menu().
*/
function my_module_menu() {
$items['my-module'] = array(
'title' => t('My Module'),
'description' => t('Search form'),
'page callback' => 'drupal_get_form',
'page arguments' => array(my_module_page_form'),
'access arguments' => array('access content'), // permission can be added
'type' => MENU_NORMAL_ITEM,
);
Read more External Database connection Display results in Forms table as sortable pagination
<?php
/**
* @file
* This module is for core db search and send selected items via email.
*
* In this module, a user (registered) can search the url list and result will be displayed as list.
* The submitted data will be stored in custom table email_sents with user data , and emails will be sent.
*/
/**
* Menu for Endpoint
*
* Implementation of hook_menu().
*/
function my_module_menu() {
$items['my-module'] = array(
'title' => t('My Module'),
'description' => t('Search form'),
'page callback' => 'drupal_get_form',
Read more Drupal Camp Delhi 2012 [08-09 Dec] -- Updates
Thread for keeping all you folks on the Indian Drupal community updated on the developments at the upcoming Drupal Camp Delhi 2012 on 08 Dec at JNU Convention Centre, JNU, Munirka, New Delhi. We realized that our website (www.drupalcampdelhi.in) is not saying enough -- and that this group maybe the best method for you all to stay connected with us Dilli-walas and our hard work.
Developments so far:
a) We have about 15 paper submissions from around the country: http://drupalcampdelhi.in/program/sessions/proposed
Read moreJaipur Drupal Users Group (JaiDUG) meetup for DCD'12
Hi Friends,
As you all know "Drupal Camp Delhi, 12" is announced for 8-9 December. (http://drupalcampdelhi.in/) at JNU, Delhi. Previous years DCD had hosted Dries Buyateart (creator of Drupal and the CTO of Acquia) and Ronald C. Pruett (Former CMO @ Acquia) for the first time in India and was a super success. see pictures @ http://www.facebook.com/media/set/?set=a.197586536991355.48921.109565432...
Apart from all the learning, fun and networking in the DCD as last year, one of the key agenda for this year event would be to brainstorm and bring to shape an organisational structure to the Indian Drupal Community and form something like "Drupal Assocation of India" which would subsequently chase the Indian Community Dream of having a "Drupalcon India" in the next 1-2 years.
Highly experienced Drupal developers and trainers are traveling from various cities in India for this year's event to deliver sessions. Also, trainings are being conducted to help developers from other technologies and other CMSs to help them to learn and cross-over to Drupal. Case Studies of live websites would be presented, Birds of Feather (BoF) sessions would be organized as well.
For the Jaipur Drupal Users Group (JaiDUG) this is a great opportunity to 1) participate in the Delhi Camp b) use this opportunity to lay the foundations & bring life into the Jaipur Drupal Community. ( We are almost an extention of Delhi Drupal Community due to vicinity and culture reasons in my opinion )
I propose to start local meetups in Jaipur with the first of it being on this saturday - 10 Nov ' 12
Please register for the meetup @ http://groups.drupal.org/node/266243 to let us know how many of are coming and thus to change the venue or agenda, if required.
Read moreCall for Papers -- Drupalcamp Delhi 2012 :: 08 Dec
Hello everyone:
Submission for presentations at DrupalCamp Delhi 2012 on Saturday, 08 Dec has been opened: http://drupalcampdelhi.com/program/sessions/proposed
Re-iterating the message posted at the India group: http://groups.drupal.org/node/264918 - in other forums across India - to encourage participation.
We are looking to collect a enough funds, to sponsor return-flights for invited speakers and some key speakers from all over India.
Read moreYOURLS module for Drupal 6
Hi All,
There is a module in Drupal for Yourls ( http://drupal.org/project/yourls)... which allows automatic creation of short urls using a Yourls installation and allows storing in database and view stats but that's available only for Drupal 7. I would like to implement that feature for Drupal 6.. Any patch or any ideas??
Read more







