public function onDiscussionDisplay($row)
 {
     CError::assert($row->message, '', '!empty', __FILE__, __LINE__);
     // @rule: Only nl2br text that doesn't contain html tags
     if (!CStringHelper::isHTML($row->message)) {
         $row->message = CStringHelper::nl2br($row->message);
     }
 }
Exemple #2
0
 public function onMessageDisplay($row)
 {
     CFactory::load('helpers', 'string');
     CError::assert($row->body, '', '!empty', __FILE__, __LINE__);
     // @rule: Only nl2br text that doesn't contain html tags
     if (!CStringHelper::isHTML($row->body)) {
         $row->body = CStringHelper::nl2br($row->body);
     }
 }
Exemple #3
0
 public function onWallDisplay($row)
 {
     //CFactory::load( 'helpers' , 'string' );
     CError::assert($row->comment, '', '!empty', __FILE__, __LINE__);
     // @rule: Only nl2br text that doesn't contain html tags
     if (!CStringHelper::isHTML($row->comment)) {
         $row->comment = CStringHelper::nl2br($row->comment);
     }
 }
 public function onWallDisplay($row)
 {
     //CFactory::load( 'helpers' , 'string' );
     CError::assert($row->comment, '', '!empty', __FILE__, __LINE__);
     // @rule: Only nl2br text that doesn't contain html tags
     //@since 4.1 new rule added, to ignore newline replace
     if (!CStringHelper::isHTML($row->comment) && !isset($row->newlineReplace)) {
         $row->comment = CStringHelper::nl2br($row->comment);
     }
 }
echo JText::_('COM_COMMUNITY_GROUPS_BODY_TIPS');
?>
">
					<?php 
if ($config->get('htmleditor') == 'none' && $config->getBool('allowhtml')) {
    ?>
						<div class="htmlTag"><?php 
    echo JText::_('COM_COMMUNITY_HTML_TAGS_ALLOWED');
    ?>
</div>
					<?php 
}
?>

					<?php 
if (!CStringHelper::isHTML($group->description) && $config->get('htmleditor') != 'none' && $config->getBool('allowhtml')) {
    //$event = new stdClass();
    $group->description = CStringHelper::nl2br($group->description);
}
?>

					<?php 
echo $editor->displayEditor('description', $group->description, '90%', '300', '10', '20', false);
?>
					</span>
				</div>

				<script type="text/javascript">
					joms.jQuery(window).load(function() {

						if(joms.jQuery(this).width() <= 980) {
 * @subpackage 	Template 
 * @copyright (C) 2008 by Slashes & Dots Sdn Bhd - All rights reserved!
 * @license		GNU/GPL, see LICENSE.php
 * 
 * @params	isMine		boolean is this group belong to me
 * @params	members		An array of member objects 
 */
defined('_JEXEC') or die;
?>

<form name="jsform-groups-discussionform" action="<?php 
echo CRoute::getURI();
?>
" method="post">
<?php 
if (!CStringHelper::isHTML($discussion->message) && $config->get('htmleditor') != 'none' && $config->getBool('allowhtml')) {
    $discussion->message = CStringHelper::nl2br($discussion->message);
}
?>
<script type="text/javascript">
function saveContent()
{
	<?php 
echo $editor->saveText('message');
?>
	return true;
}
</script>	
<table class="formtable">
	<?php 
echo $beforeFormDisplay;
Exemple #7
0
    $status->render();
    echo $streamHTML;
    ?>
        </div>
            <?php 
}
?>

        <div id="joms-event--details" class="joms-tab__content" style="<?php 
echo $config->get('default_event_tab') == 0 ? 'display:none;' : '';
?>
">

            <ul class="joms-list__row">
                <?php 
if (!CStringHelper::isHTML($event->description)) {
    ?>
                <li><?php 
    echo CStringHelper::nl2br($event->description);
    ?>
</li>
                <?php 
} else {
    ?>
                <li><?php 
    echo $event->description;
    ?>
</li>
                <?php 
}
?>