Skip to main content
Category

Development

Drupal Node Order module

By Development No Comments

“Node order” module allows users to sort the nodes of a selected content type via simple drag-and-drop interface in the admin area.

This is useful for sorting non-chronological nodes like bios, e-commerce products, testimonials , sliders or whatever you’d like.

Node order module uses default node sticky functionality, that’s why it’s easy to integrate it with your site. By default Drupal nodes are sorted by stickiness first, then by creation date.

Read More

jQuery TileZoom Plugin

By Development No Comments

The jQuery TileZoom Plugin is an image zoom plugin which uses image tiles and provides a convenient way to zoom in and zoom out of high-resolution images.

The plugin provides a method called tilezoom which is invoked on a container element.
It’s simple html and javascript. Plugin doesn’t use canvas element, that is why it works with IE browsers too!

Tiles for the image should be generated with TileGenerator (modified version of PHP Deep Zoom Tools) for this.

Read More

Drupal Highlighting module

By Development No Comments

Syntax highlighting is very important when we want to show our code example on the Drupal site. It may be useful in the portfolio, if you’re a programmer or in blog posts to highlight pieces of code.

This module integrates JQuery syntax Highlight plugin into Drupal for syntax highlighting of source code snippets in any Drupal contents.

Please feel free to check out and use our Drupal Highlighting module.

Read More

Cache Php Class

By Development No Comments

There are many ready solutions for caching data on php, but I will propose own Cache Php Class. It is quite simple and will help to understand the mechanism of caching.

We will not be caching whole pages, this solution is outdated. In reality, only caching of individual blocks is used. And if more precisely, we will cache only the pure data, no html.

Cacher allows you to cache variables (anything that can be put into a variable) for later use. This speeds up loading time, and reduces load on the data source.

Read More

Text Replace php script

By Development No Comments

When it’s needed to replace some text in multiple html files, first of all you’re starting thinking about this boring monotonous work.

For example, you have almost finished slicing about 30 pages from PSD to HTML. And the customer requests to replace JUST some of the links in the footer and one link in the header for example on each page. It’s cool if you could use PHP or SSI includes. But if the customer wants a clean and simple HTML markup. What would you to do in this case?

Please feel free to check out and use our Text Replace php script.

Read More