Working with JavaScript, jQuery and DOM Ready in Drupal 7
Posted by Sergei Porfenovich

As compared to Drupal 6, using Drupal 7 you can no longer rely on $() as the jQuery function because it’s simply not recognized. It should be taken into account in order to ensure that there are no conflicts between JavaScript libraries that are possibly used on a site.

Read MorePosted in
Drupal Development

Easy embedding of dynamic content into the text without using a PHP filter
Posted by Sergei Porfenovich

Some php generated content, for example, a view or some variable, is often to be inserted in the middle of the node or block.

Read MorePosted in
Drupal Development

Creating a date format by program means in Drupal
Posted by Sergei Porfenovich

Transferring configurations of one working site copy to another often can present difficulties. Particularly, date formats are not always correctly transferred with module features.

Read MorePosted in
Drupal Development

Output of data as a CSV file for Drupal download
Posted by Sergei Porfenovich

Oftentimes, possibility of exporting significant amounts of data into CSV file format should be provided.

Read MorePosted in
Drupal Development

Programming fields in Drupal
Posted by Sergei Porfenovich

During deployment there is often the need to create/edit/delete fields. Here are some examples below how this can be done with the help of code.

Read MorePosted in
Drupal Development