Drupal Technical
| 2
min read
This tutorial shows you how to insert a form into a modal so it pops up on your site after a user clicks a link, without having to write any JavaScript at all. The functionality that supplies this is the CTools module and core ajax functionality in Drupal 7.
Drupal Technical
| 4
min read
For our Drupal site, a requirement were to use Facebook connect module and legal module. Once enabling both the modules and adding legal condition, Facebook connect module let us to login through Facebook on our Drupal site.
Drupal Technical
| 2
min read
I have a requirement to post a comment on a Facebook user's timeline from our Drupal website. In submitting a Drupal form, I have to post a comment on Facebook. We need to access Facebook api so we have to download Facebook SDK for PHP. Facebook SDk allows developers to access the Facebook api ie to post the comment on Facebook. Also create an app on Facebook, once you create an app it will generate a Facebook app id and Facebook secret code.
Drupal Technical
| 3
min read
I had a requirement to post videos on a Facebook fan page from our Drupal website. On submitting a Drupal form, I have to post an video on Facebook. We need to access Facebook api so we have to download Facebook SDK for PHP.
Drupal Technical
| 3
min read
In this article you can get an idea about how to share a link to user wall with the uploaded photo in Facebook from Drupal sites. To share a link on Facebook, we need to use the Facebook API so we have to download Facebook SDK for PHP. Facebook SDK allows developers to get access to the Facebook API. First, you need to create an app (https://developers.facebook.com/apps), because to reach Facebook we need app id and a secret code.
Drupal Technical
| 2
min read
I had a requirement to tag a friends/fans page on the photo uploaded in user wall on Facebook from a Drupal site. I have created a custom module on that create a form to uplaod the image. On page submit, I post the image on facebook user wall and tag the facebook fan's page with the same. If we need to work with facebook, we need PHP SDK. Facebook SDK allows developers to access the Facebook api.
News
| 4
min read
Highcharts is a charting library written in pure HTML5/JavaScript. Without generating the image we can display the graph. Download highcharts library from http://www.highcharts.com/. I have a requirement to generate a multiple-line graph. In my situation , I have to generate multiple-line graphs. So I choose javascript to generate multiple-line graphs, it will increase the performance also. Otherwise, it will increase the server load (if I generate a graph as an image). Javascript graphs allow interaction between the graph and elements in your html. It will also reduce the Server load. I have downloaded the high chart api, and include the js files. They give some sample graph, you can choose as per your requirement. To draw a graph we need to pass json value. And follow the steps given below.
Drupal Technical
| 5
min read
Highcharts is a charting library written in pure HTML5/JavaScript. Without generating the image we can display the graph. I had a requirement to generate a multiple graph on a single page in a Drupal site. Read on to know how to implement multiple graphs on single page in Drupal using highchart.
Drupal Technical
| 2
min read
I had a requirement to post an image on a Facebook user's timeline from our Drupal website. In submitting a Drupal form, I had to post an image on Facebook. We implemented this feature using the Facebook SDK for PHP and Drupal. Read on to know how to upload a photo to a user's timeline in Facebook from a Drupal website?
Drupal Technical
| 6
min read
Version control system is used to track the history of the files. Also we can revert the files to another version. Version control system will increase the potential of parallel and distributed work , ie it will track time , merge changes and manage the history of changes in the file.If you are a Drupal developer you might find Git a useful tool. Here a few commands that are to be familiar by a Drupal developer