0byt3m1n1
Path:
/
home
/
kassiope
/
OLD
/
00-OLD
/
components
/
com_phocagallery
/
views
/
comment
/
tmpl
/
[
Home
]
File: default.php
<?php defined('_JEXEC') or die('Restricted access'); if ($this->tmpl['backbutton'] != '') { echo $this->tmpl['backbutton']; } ?><div id="phocagallery-comments"><?php if ($this->tmpl['detailwindow'] == 7) { echo '<div id="image-box" style="text-align:center">'.JHTML::_( 'image.site', $this->item->linkthumbnailpath, '').'</div>'; } if (JComponentHelper::isEnabled('com_jcomments', true) && $this->tmpl['externalcommentsystem'] == 1) { include_once(JPATH_BASE.DS.'components'.DS.'com_jcomments'.DS.'jcomments.php'); echo JComments::showComments( $this->tmpl['id'], 'com_phocagallery_images', JText::_('PHOCAGALLERY_IMAGE') .' '. $this->tmpl['imgtitle']); } else { if (!empty($this->commentitem)){ $userImage = JHTML::_( 'image.site', 'components/com_phocagallery/assets/images/icon-user.'.$this->tmpl['formaticon'],'', '', '', '', ''); $smileys = PhocaGalleryComment::getSmileys(); foreach ($this->commentitem as $itemValue) { $date = JHTML::_('date', $itemValue->date, JText::_('DATE_FORMAT_LC2') ); $comment = $itemValue->comment; $comment = PhocaGalleryComment::bbCodeReplace($comment); foreach ($smileys as $smileyKey => $smileyValue) { $comment = str_replace($smileyKey, JHTML::_( 'image.site', 'components/com_phocagallery/assets/images/'.$smileyValue .'.'.$this->tmpl['formaticon'],'', '', '', '', ''), $comment); } echo '<fieldset>' .'<legend>'.$userImage.' '.$itemValue->name.'</legend>' .'<p><strong>'.PhocaGalleryText::wordDelete($itemValue->title, 50, '...').'</strong></p>' .'<p style="overflow:auto;width:'.$this->tmpl['commentwidth'].'px;">'.$comment.'</p>' .'<p style="text-align:right"><small>'.$date.'</small></p>' .'</fieldset>'; } } echo '<fieldset>' .'<legend>'.JText::_('Add comment').'</legend>'; if ($this->tmpl['alreadycommented']) { echo '<p>'.JText::_('You have already submitted comment').'</p>'; } else if ($this->tmpl['notregistered']) { echo '<p>'.JText::_('Only registered and logged in user can submit a comment').'</p>'; } else { ?> <form action="<?php echo $this->tmpl['action'];?>" name="phocagallerycommentsform" id="phocagallery-comments-form" method="post" > <table> <tr> <td><?php echo JText::_('Name');?>:</td> <td><?php echo $this->tmpl['name']; ?></td> </tr> <tr> <td><?php echo JText::_('Title');?>:</td> <td><input type="text" name="phocagallerycommentstitle" id="phocagallery-comments-title" value="" maxlength="255" class="comment-input" /></td> </tr> <tr> <td> </td> <td> <a href="#" onclick="pasteTag('b', true); return false;"><?php echo JHTML::_('image', 'components/com_phocagallery/assets/images/icon-b.'.$this->tmpl['formaticon'], JText::_('Bold'));?></a> <a href="#" onclick="pasteTag('i', true); return false;"><?php echo JHTML::_('image', 'components/com_phocagallery/assets/images/icon-i.'.$this->tmpl['formaticon'], JText::_('Italic'));?></a> <a href="#" onclick="pasteTag('u', true); return false;"><?php echo JHTML::_('image', 'components/com_phocagallery/assets/images/icon-u.'.$this->tmpl['formaticon'], JText::_('Underline'));?></a> <a href="#" onclick="pasteSmiley(':)'); return false;"><?php echo JHTML::_('image', 'components/com_phocagallery/assets/images/icon-s-smile.'.$this->tmpl['formaticon'], JText::_('Smile'));?></a> <a href="#" onclick="pasteSmiley(':lol:'); return false;"><?php echo JHTML::_('image', 'components/com_phocagallery/assets/images/icon-s-lol.'.$this->tmpl['formaticon'], JText::_('Lol'));?></a> <a href="#" onclick="pasteSmiley(':('); return false;"><?php echo JHTML::_('image', 'components/com_phocagallery/assets/images/icon-s-sad.'.$this->tmpl['formaticon'], JText::_('Sad'));?></a> <a href="#" onclick="pasteSmiley(':?'); return false;"><?php echo JHTML::_('image', 'components/com_phocagallery/assets/images/icon-s-confused.'.$this->tmpl['formaticon'], JText::_('Confused'));?></a> <a href="#" onclick="pasteSmiley(':wink:'); return false;"><?php echo JHTML::_('image', 'components/com_phocagallery/assets/images/icon-s-wink.'.$this->tmpl['formaticon'], JText::_('Wink'));?></a> </td> </tr> <tr> <td> </td> <td> <textarea name="phocagallerycommentseditor" id="phocagallery-comments-editor" cols="30" rows="10" class= "comment-input" onkeyup="countChars();" ></textarea> </td> </tr> <tr> <td> </td> <td><?php echo JText::_('Characters written');?> <input name="phocagallerycommentscountin" value="0" readonly="readonly" class="comment-input2" /> <?php echo JText::_('and left for comment');?> <input name="phocagallerycommentscountleft" value="<?php echo $this->tmpl['maxcommentchar'];?>" readonly="readonly" class="comment-input2" /> </td> </tr> <tr> <td> </td> <td align="right"> <input type="submit" id="phocagallerycommentssubmit" onclick="return(checkCommentsForm());" value="<?php echo JText::_('Submit Comment'); ?>"/> </td> </tr> </table> <input type="hidden" name="task" value="comment"/> <input type="hidden" name="view" value="comment"/> <input type="hidden" name="controller" value="comment"/> <input type="hidden" name="id" value="<?php echo $this->tmpl['id'] ?>"/> <input type="hidden" name="catid" value="<?php echo $this->tmpl['catid'] ?>"/> <input type="hidden" name="Itemid" value="<?php echo JRequest::getVar('Itemid', 1, 'get', 'int') ?>"/> <?php echo JHTML::_( 'form.token' ); ?> </form> <?php } ?> </fieldset> <?php } echo '</div>'; if ($this->tmpl['detailwindow'] == 7) { echo $this->tmpl['psd']; }