-
AuthorPosts
-
Phill Moderator
Phill
- Join date:
- February 2014
- Posts:
- 7013
- Downloads:
- 40
- Uploads:
- 77
- Thanks:
- 917
- Thanked:
- 2206 times in 1818 posts
May 24, 2009 at 7:06 pm #141429I’m sure I could work it out eventually but it would take some time as my PHP skills are sadly lacking.
I need to make the _fp images in this site I am working on ( http://windwisedev.net.testing.windsurf.vm.bytemark.co.uk/ very early on the WIP stage) linkable. I’m sure it would be and easy edit to the code below but I am not 100% sure what to do.
<?php
// no direct access
defined('_JEXEC') or die('Restricted access'); ?>
<?php
global $mainframe;
$imageWidth = 120;
$imageHeight = 70;require_once (JPATH_SITE.DS.'templates'.DS.$mainframe->getTemplate().DS.'ja_templatetools_1.5.php');
$image = JA_Tools::extractImage ($this->item, true, $imageWidth, $imageHeight);
?><?php if ($this->user->authorize('com_content', 'edit', 'content', 'all') || $this->user->authorize('com_content', 'edit', 'content', 'own')) : ?>
<div class="contentpaneopen_edit<?php echo $this->item->params->get( 'pageclass_sfx' ); ?>" style="float: left;">
<?php echo JHTML::_('icon.edit', $this->item, $this->item->params, $this->access); ?>
</div>
<?php endif; ?>
<div class="contentpaneopen<?php echo $this->item->params->get( 'pageclass_sfx' ); ?> clearfix"><?php if (!$this->item->params->get('show_intro')) :
echo $this->item->event->afterDisplayTitle;
endif; ?><?php
if (
($this->item->params->get('show_create_date'))
|| (($this->item->params->get('show_author')) && ($this->item->author != ""))
|| (($this->item->params->get('show_section') && $this->item->sectionid) || ($this->item->params->get('show_category') && $this->item->catid))
|| ($this->item->params->get('show_pdf_icon') || $this->item->params->get('show_print_icon') || $this->item->params->get('show_email_icon'))
|| ($this->item->params->get('show_url') && $this->item->urls)
) :
?>
<div class="article-toolswrap">
<div class="article-tools clearfix"><?php if ($this->item->params->get('show_url') && $this->item->urls) : ?>
<span class="article-url">
<a href="http://<?php echo $this->item->urls ; ?>" target="_blank">
<?php echo $this->item->urls; ?></a>
</span>
<?php endif; ?>
</div>
</div>
<?php endif; ?><?php echo $this->item->event->beforeDisplayContent; ?>
<div class="article-content"><div class="ja-innerpad">
<?php if (isset ($this->item->toc)) : ?>
<?php echo $this->item->toc; ?>
<?php endif; ?>
<div class="img-desc">
<?php echo $image; ?>
</div><div class="content-desc">
<?php if ($this->item->params->get('show_title')) : ?>
<h2 class="contentheading<?php echo $this->item->params->get( 'pageclass_sfx' ); ?>">
<?php if ($this->item->params->get('link_titles') && $this->item->readmore_link != '') : ?>
<a href="<?php echo $this->item->readmore_link; ?>" class="contentpagetitle<?php echo $this->item->params->get( 'pageclass_sfx' ); ?>">
<?php echo $this->item->title; ?>
</a>
<?php else : ?>
<?php echo $this->item->title; ?>
<?php endif; ?>
</h2>
<?php endif; ?>
<?php echo $this->item->text; ?>
</div><?php if ($this->item->params->get('show_readmore') && $this->item->readmore) : ?>
<a href="<?php echo $this->item->readmore_link; ?>" title="<?php echo $this->item->title; ?>" class="readon<?php echo $this->item->params->get('pageclass_sfx'); ?>">
<?php if ($this->item->readmore_register) : ?>
<?php echo JText::_('Register to read more...'); ?>
<?php else : ?>
<?php echo JText::_('Read more...'); ?>
<?php endif; ?>
</a>
<?php endif; ?></div></div>
</div>
<span class="article_separator"> </span>
<?php echo $this->item->event->afterDisplayContent; ?>
scotty Friendscotty
- Join date:
- March 2008
- Posts:
- 2339
- Downloads:
- 0
- Uploads:
- 13
- Thanks:
- 76
- Thanked:
- 827 times in 595 posts
-
AuthorPosts
This topic contains 4 replies, has 3 voices, and was last updated by blickfeld 15 years, 5 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum