PHP Classes

File: drupal_tips.php

Recommend this page to a friend!
  Classes of Kabir Hossain   PHP CodeIgniter Tips Tricks   drupal_tips.php   Download  
File: drupal_tips.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: PHP CodeIgniter Tips Tricks
Collection of tips and examples to use CodeIgniter
Author: By
Last change:
Date: 21 days ago
Size: 242 bytes
 

Contents

Class file image Download
<?php
// image style usage
$image = theme(
 
'image_style',
  array(
   
'path' => 'public://my_example_image.jpg',
   
'style_name' => 'my_custom_image_style',
   
'alt' => 'Alternate Text',
   
'title' => 'Title Text',
  )
);
print
$image;