/[drupal]/contributions/modules/image_filter/image_filter.module
ViewVC logotype

Diff of /contributions/modules/image_filter/image_filter.module

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.24, Mon Oct 15 01:28:18 2007 UTC revision 1.25, Mon Oct 15 04:41:29 2007 UTC
# Line 1  Line 1 
1  <?php  <?php
2  // $Id: image_filter.module,v 1.23 2007/02/06 05:52:48 davidhull Exp $  // $Id: image_filter.module,v 1.24 2007/10/15 01:28:18 davidhull Exp $
3    
4  function image_filter_short_tip_translated() {  function image_filter_short_tip_translated() {
5    return t(    return t(
# Line 41  function image_filter_help($section = 'a Line 41  function image_filter_help($section = 'a
41   */   */
42  function image_filter_filter($op, $delta = 0, $format = -1, $text = '') {  function image_filter_filter($op, $delta = 0, $format = -1, $text = '') {
43    switch ($op) {    switch ($op) {
44    //    case 'no cache':
45    //      return TRUE;
46      case 'list':      case 'list':
47        return array(0 => t('Image filter'));        return array(0 => t('Image filter'));
48      case 'description':      case 'description':
# Line 205  function theme_image_inline_img($img) { Line 207  function theme_image_inline_img($img) {
207      ($img->hspace ? " hspace=\"$img->hspace\"" : '') .      ($img->hspace ? " hspace=\"$img->hspace\"" : '') .
208      ($img->vspace ? " vspace=\"$img->vspace\"" : '') .      ($img->vspace ? " vspace=\"$img->vspace\"" : '') .
209      " alt=\"$img->title\"" .      " alt=\"$img->title\"" .
210        " title=\"$img->title\"" .
211      ($img->class ? " class=\"$img->class\"" : '') .      ($img->class ? " class=\"$img->class\"" : '') .
212      ($img->style ? " style=\"$img->style\"" : '') . " />";      ($img->style ? " style=\"$img->style\"" : '') . " />";
213    return ($img->link    return ($img->link
# Line 216  function theme_image_inline_img($img) { Line 219  function theme_image_inline_img($img) {
219  // mode: php  // mode: php
220  // indent-tabs-mode: nil  // indent-tabs-mode: nil
221  // tab-width: 2  // tab-width: 2
222    // c-basic-offset: 2
223  // End:  // End:
224    
225  ?>  ?>

Legend:
Removed from v.1.24  
changed lines
  Added in v.1.25

  ViewVC Help
Powered by ViewVC 1.1.2