Project:Image Title
Version:6.x-2.x-dev
Component:Code
Category:feature request
Priority:normal
Assigned:dksdev01
Status:active

Issue Summary

Hi,

like the module, but missing things:

- integration with views ans panels (so we can decide where to show the imagetitles)
- an approach like wp-sifr in wordpress (choose which titles you want to change to images, and which not)
- combination of imagetitle and sifr in that same approach?

Comments

#1

views integration:

function image_title_views_data() {
$data = array();
$data['image_title_node']['table']['group'] = t('imagetitles');
$data['image_title_node']['table']['base'] = array(
   'field' => 'nid',
   'title' => t('imagetitles'),
   'help' => t("een beetje hulp"),
);
$data['image_title_node']['table']['join'] = array(
  'node' => array(
    'left_field' => 'nid',
    'field' => 'nid',
  ),
); 

$data['image_title_node']['nid'] = array(
   'title' => t('image title nid'),
   'relationship' => array(
     'base' => 'node',
     'field' => 'nid',
     'handler' => 'views_handler_relationship',
     'label' => t('image title'),
    ),
);

$data['image_title_node']['image'] = array(
  'title' => t('image'),
  'help' => t('the image title image'),
  'field' => array(
   'handler' => 'views_handler_field',
  
  ),
);
return $data;
}

it's only a start. Being a newbie, I did not play with handlers yet. Maybe someone can do this for me? For now, just change "output" to Only local images are allowed. and things work out.

#2

Thanks guys - hoping to get control of this soon, since it's clearly abandoned and have formally requested access from the Drupal.org webmasters. Development of this module will continue (including an official D6 release) as soon as possible. =)

#3

Assigned to:Anonymous» dksdev01

#4

Version:5.x-1.x-dev» 6.x-2.x-dev

Guess this would happen in latest D6 branch? =)

#5

update, adding block title as image as well. with this and views integration we should be ready for official release. thanks for support.

#6

Title:feature requests for the unofficial D6 version» Error with Image Title Module

I get the following error message when installing this module:

• warning: pg_query(): Query failed: ERROR: column "admin/build" does not exist LINE 1: SELECT image FROM image_title_menu WHERE path = "admin/build... ^ in /var/pub/userweb/www.mystic-zen.com/htdocs/includes/database.pgsql.inc on line 139.
• user warning: query: SELECT image FROM image_title_menu WHERE path = "admin/build" in /var/pub/userweb/www.mystic-zen.com/htdocs/sites/all/modules/image_title/image_title.module on line 381.

Could you please advise on how to fix it?

I am a Drupal newbie with very little programming experience, so please forgive my inexperience.

#7

run update.php and check if that resolves your issue.