Advanced search  

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

Pages: [1]   Go Down

Author Topic: Show up all the blocks from an album caption by one in the file 'theme.php'  (Read 2992 times)

0 Members and 1 Guest are viewing this topic.

Name1996

  • Coppermine newbie
  • Country: ru
  • Offline Offline
  • Posts: 3

I would like to ask if there is a way to display all the blocks from an album caption by one in the file 'theme.php', without having to edit files from the 'include' folders. I found a way to show up such blocks like "Album Title", "File Size", "File Title" and "File Width & Height".

Code: [Select]
if (in_array($aid, $album_types['albums'])) {
     $params = array(
     '{CELL_WIDTH}' => $cell_width,
     '{LINK_TGT}'   => "thumbnails.php?album={$thumb['aid']}",
     '{THUMB}'      => $thumb['image'],
     '{CAPTION}'    => $thumb['caption'],
     '{ADMIN_MENU}' => $thumb['admin_menu'],
                   
     '{ALBUMS_TITLE}'    => $thumb['title'],
     '{IMAGE_TITLE_WIDTH}'    => $thumb['pwidth'],
     '{IMAGE_TITLE_HEIGHT}'    => $thumb['pheight'],
     '{FILE_TITLE}'    => floor($thumb['filesize']/1024),
   );
}


Code: [Select]
<span class="thumb_title thumb_title_title">
  {ALBUMS_TITLE}
</span>

<span class="imagesize">
  {IMAGE_TITLE_WIDTH} X {IMAGE_TITLE_HEIGHT}
</span>

<span class="filesize">
  {FILE_TITLE} KB
</span>


But I cannot show up such blocks like "Album Views" and "Album Time". I tried to get some pieces out of this code from the file "functions.inc.php", but nothing worked

Code: [Select]
if (in_array('ctime', $must_have)) {
    $caption .= '<span class="thumb_caption thumb_caption_ctime">' . localised_date($row['ctime'], $lang_date['lastup']) . '</span>';
}

Code: [Select]
if ($CONFIG['views_in_thumbview'] || in_array('hits', $must_have)) {
  $views = ($mode == 'albums') ? $row['alb_hits'] : $row['hits'];
  $caption .= '<span class="thumb_title thumb_title_views">' . sprintf($lang_get_pic_data['n_views'], $views) . '</span>';
}


Tell me, please, is there a way to do it by editing the file 'theme.php' of my theme? If I explained it badly, let me know.
Logged
Pages: [1]   Go Up
 

Page created in 0.016 seconds with 19 queries.