Ejemplo n.º 1
0
/**
 * Prints a form for posting comments
 *
 * @param bool $showcomments defaults to true for showing list of comments
 * @param string $addcommenttext alternate text for "Add a comment:"
 * @param bool $addheader set true to display comment count header
 * @param string $comment_commententry_mod use to add styles, classes to the comment form div
 * @param bool $desc_order default false, set to true to change the comment order to descending ( = newest to oldest)
 */
function printCommentForm($showcomments = true, $addcommenttext = NULL, $addheader = true, $comment_commententry_mod = '', $desc_order = false)
{
    global $_zp_gallery_page, $_zp_current_admin_obj, $_zp_current_comment, $_zp_captcha, $_zp_authority, $_zp_HTML_cache, $_zp_current_image, $_zp_current_album, $_zp_current_page, $_zp_current_article;
    if (getOption('email_new_comments')) {
        $email_list = $_zp_authority->getAdminEmail();
        if (empty($email_list)) {
            setOption('email_new_comments', 0);
        }
    }
    if (is_null($addcommenttext)) {
        $addcommenttext = '<h3>' . gettext('Add a comment:') . '</h3>';
    }
    switch ($_zp_gallery_page) {
        case 'album.php':
            if (!getOption('comment_form_albums')) {
                return;
            }
            $obj = $_zp_current_album;
            break;
        case 'image.php':
            if (!getOption('comment_form_images')) {
                return;
            }
            $obj = $_zp_current_image;
            break;
        case 'pages.php':
            if (!getOption('comment_form_pages')) {
                return;
            }
            $obj = $_zp_current_page;
            break;
        case 'news.php':
            if (!getOption('comment_form_articles') || !is_NewsArticle()) {
                return;
            }
            $obj = $_zp_current_article;
            break;
        default:
            return;
            break;
    }
    $comments_open = $obj->getCommentsAllowed();
    ?>
	<!-- printCommentForm -->
	<div id="commentcontent">
		<?php 
    $num = getCommentCount();
    if ($showcomments) {
        if ($num == 0) {
            if ($addheader) {
                echo '<h3 class="empty">' . gettext('No Comments') . '</h3>';
            }
            $display = '';
        } else {
            if ($addheader) {
                echo '<h3>' . sprintf(ngettext('%u Comment', '%u Comments', $num), $num) . '</h3>';
            }
            if (getOption('comment_form_toggle')) {
                ?>
					<div id="comment_toggle"><!-- place holder for toggle button --></div>
					<script type="text/javascript">
						// <!-- <![CDATA[
						function toggleComments(hide) {
							if (hide) {
								$('div.comment').hide();
								$('.Pagination').hide();
								$('#comment_toggle').html('<button class="button buttons" onclick="toggleComments(false);"><?php 
                echo gettext('show comments');
                ?>
</button>');
							} else {
								$('div.comment').show();
								$('.Pagination').show();
								$('#comment_toggle').html('<button class="button buttons" onclick="toggleComments(true);"><?php 
                echo gettext('hide comments');
                ?>
</button>');
							}
						}
						$(document).ready(function () {
							toggleComments(window.location.hash.search(/#zp_comment_id_/));
						});
						// ]]> -->
					</script>
					<?php 
                $display = ' style="display:none"';
            } else {
                $display = '';
            }
        }
        $hideoriginalcomments = '';
        if (getOption('comment_form_pagination') && COMMENTS_PER_PAGE < $num) {
            $hideoriginalcomments = ' style="display:none"';
            // hide original comment display to be replaced by jQuery pagination
        }
        if (getOption('comment_form_pagination') && COMMENTS_PER_PAGE < $num) {
            ?>
				<div class="Pagination"></div><!-- this is the jquery pagination nav placeholder -->
				<div id="Commentresult"></div>
				<?php 
        }
        ?>
			<div id="comments"<?php 
        echo $hideoriginalcomments;
        ?>
>
				<?php 
        while (next_comment($desc_order)) {
            if (!getOption('comment_form_showURL')) {
                $_zp_current_comment['website'] = '';
            }
            ?>
					<div class="comment" <?php 
            echo $display;
            ?>
>
						<div class="commentinfo">
							<h4 id="zp_comment_id_<?php 
            echo $_zp_current_comment['id'];
            ?>
"><?php 
            printCommentAuthorLink();
            ?>
: <?php 
            echo gettext('on');
            ?>
 <?php 
            echo getCommentDateTime();
            printEditCommentLink(gettext('Edit'), ', ', '');
            ?>
</h4>
						</div><!-- class "commentinfo" -->
						<div class="commenttext"><?php 
            echo html_encodeTagged(getCommentBody(), false);
            ?>
</div><!-- class "commenttext" -->
					</div><!-- class "comment" -->
					<?php 
        }
        ?>
			</div><!-- id "comments" -->
			<?php 
    }
    if (getOption('comment_form_pagination') && COMMENTS_PER_PAGE < $num) {
        ?>
			<div class="Pagination"></div><!-- this is the jquery pagination nav placeholder -->
			<?php 
    }
    ?>
		<!-- Comment Box -->
		<?php 
    if ($comments_open) {
        if (MEMBERS_ONLY_COMMENTS && !zp_loggedin(POST_COMMENT_RIGHTS)) {
            echo gettext('Only registered users may post comments.');
        } else {
            $disabled = array('name' => '', 'website' => '', 'anon' => '', 'private' => '', 'comment' => '', 'street' => '', 'city' => '', 'state' => '', 'country' => '', 'postal' => '');
            $stored = array_merge(array('email' => '', 'custom' => ''), $disabled, getCommentStored());
            $custom = getSerializedArray($stored['custom']);
            foreach ($custom as $key => $value) {
                if (!empty($value)) {
                    $stored[$key] = $value;
                }
            }
            foreach ($stored as $key => $value) {
                $disabled[$key] = false;
            }
            if (zp_loggedin()) {
                if (extensionEnabled('userAddressFields')) {
                    $address = userAddressFields::getCustomData($_zp_current_admin_obj);
                    foreach ($address as $key => $value) {
                        if (!empty($value)) {
                            $disabled[$key] = true;
                            $stored[$key] = $value;
                        }
                    }
                }
                $name = $_zp_current_admin_obj->getName();
                if (!empty($name)) {
                    $stored['name'] = $name;
                    $disabled['name'] = ' disabled="disabled"';
                } else {
                    $user = $_zp_current_admin_obj->getUser();
                    if (!empty($user)) {
                        $stored['name'] = $user;
                        $disabled['name'] = ' disabled="disabled"';
                    }
                }
                $email = $_zp_current_admin_obj->getEmail();
                if (!empty($email)) {
                    $stored['email'] = $email;
                    $disabled['email'] = ' disabled="disabled"';
                }
                if (!empty($address['website'])) {
                    $stored['website'] = $address['website'];
                    $disabled['website'] = ' disabled="disabled"';
                }
            }
            $data = zp_apply_filter('comment_form_data', array('data' => $stored, 'disabled' => $disabled));
            $disabled = $data['disabled'];
            $stored = $data['data'];
            foreach ($data as $check) {
                foreach ($check as $v) {
                    if ($v) {
                        $_zp_HTML_cache->disable();
                        //	shouldn't cache partially filled in pages
                        break 2;
                    }
                }
            }
            if (!empty($addcommenttext)) {
                echo $addcommenttext;
            }
            ?>
				<div id="commententry" <?php 
            echo $comment_commententry_mod;
            ?>
>
					<?php 
            $theme = getCurrentTheme();
            $form = getPlugin('comment_form/comment_form.php', $theme);
            require $form;
            ?>
				</div><!-- id="commententry" -->
				<?php 
        }
    } else {
        ?>
			<div id="commententry">
				<h3><?php 
        echo gettext('Closed for comments.');
        ?>
</h3>
			</div><!-- id="commententry" -->
			<?php 
    }
    ?>
	</div><!-- id="commentcontent" -->
	<?php 
    if (getOption('comment_form_rss') && getOption('RSS_comments')) {
        ?>
		<br clear="all" />
		<?php 
        if (class_exists('RSS')) {
            switch ($_zp_gallery_page) {
                case "image.php":
                    printRSSLink("Comments-image", "", gettext("Subscribe to comments"), "");
                    break;
                case "album.php":
                    printRSSLink("Comments-album", "", gettext("Subscribe to comments"), "");
                    break;
                case "news.php":
                    printRSSLink("Comments-news", "", gettext("Subscribe to comments"), "");
                    break;
                case "pages.php":
                    printRSSLink("Comments-page", "", gettext("Subscribe to comments"), "");
                    break;
            }
        }
    }
    ?>
	<!-- end printCommentForm -->
	<?php 
}
Ejemplo n.º 2
0
			</div>

			<!-- Wrap Comments -->
			<div id="main3">
				<div id="comments">
					<?php 
    while (next_comment()) {
        ?>
						<div class="comment">
							<div class="commentinfo">
								<h4><?php 
        printCommentAuthorLink();
        ?>
</h4>: on <?php 
        echo getCommentDateTime();
        printEditCommentLink('Edit', ', ', '');
        ?>
							</div>
							<div class="commenttext">
								<?php 
        echo getCommentBody();
        ?>
							</div>
						</div>
					<?php 
    }
    ?>
				</div>

				<!-- Comment Box -->
				<?php 
Ejemplo n.º 3
0
    ?>
"><?php 
    echo $autonumber;
    ?>
.</a>
			<em>On <?php 
    echo getCommentDateTime();
    ?>
, <?php 
    printf(gettext('%s wrote:'), printCommentAuthorLink());
    ?>
</em>
		</dt>
		<dd><p><?php 
    echo getCommentBody();
    printEditCommentLink(gettext('Edit'), ' | ', '');
    ?>
</p></dd>
		<?php 
}
if ($autonumber) {
    ?>
			</dl>
			<?php 
}
?>
	<script type="text/javascript">
		// <!-- <![CDATA[
		var initstate = <?php 
echo $errors;
?>
Ejemplo n.º 4
0
/**
 * Prints a form for posting comments
 *
 * @param bool $showcomments defaults to true for showing list of comments
 * @param string $addcommenttext alternate text for "Add a comment:"
 * @param bool $addheader set true to display comment count header
 * @param string $comment_commententry_mod use to add styles, classes to the comment form div
 */
function printCommentForm($showcomments = true, $addcommenttext = NULL, $addheader = true, $comment_commententry_mod = '')
{
    global $_zp_gallery_page, $_zp_themeroot, $_zp_current_admin_obj, $_zp_current_comment;
    if (is_null($addcommenttext)) {
        $addcommenttext = '<h3>' . gettext('Add a comment:') . '</h3>';
    }
    switch ($_zp_gallery_page) {
        case 'album.php':
            if (!getOption('comment_form_albums')) {
                return;
            }
            $comments_open = OpenedForComments(ALBUM);
            $formname = '/comment_form.php';
            break;
        case 'image.php':
            if (!getOption('comment_form_images')) {
                return;
            }
            $comments_open = OpenedForComments(IMAGE);
            $formname = '/comment_form.php';
            break;
        case 'pages.php':
            if (!getOption('comment_form_pages')) {
                return;
            }
            $comments_open = zenpageOpenedForComments();
            $formname = '/comment_form.php';
            break;
        case 'news.php':
            if (!getOption('comment_form_articles')) {
                return;
            }
            $comments_open = zenpageOpenedForComments();
            $formname = '/comment_form.php';
            break;
        default:
            return;
            break;
    }
    $arraytest = '/^a:[0-9]+:{/';
    // this screws up Eclipse's brace count!!!
    ?>
<!-- printCommentForm -->
	<div id="commentcontent">
		<?php 
    $num = getCommentCount();
    if ($showcomments) {
        if ($num == 0) {
            if ($addheader) {
                echo '<h3 class="empty">' . gettext('No Comments') . '</h3>';
            }
            $display = '';
        } else {
            if ($addheader) {
                echo '<h3>' . sprintf(ngettext('%u Comment', '%u Comments', $num), $num) . '</h3>';
            }
            if (getOption('comment_form_toggle')) {
                ?>
					<script type="text/javascript">
						// <!-- <![CDATA[
						function toggleComments(hide) {
							if (hide) {
								$('div.comment').hide();
								$('#comment_toggle').html('<button type="button" onclick="javascript:toggleComments(false);"><?php 
                echo gettext('show comments');
                ?>
</button>');
							} else {
								$('div.comment').show();
								$('#comment_toggle').html('<button type="button" onclick="javascript:toggleComments(true);"><?php 
                echo gettext('hide comments');
                ?>
</button>');
							}
						}
						$(document).ready(function() {
							toggleComments(true);
						});
						// ]]> -->
					</script>
					<?php 
                $display = ' style="display:none"';
            } else {
                $display = '';
            }
        }
        ?>
		<div id="comments">
			<div id="comment_toggle"><!-- place holder for toggle button --></div>
			<?php 
        while (next_comment()) {
            if (!getOption('comment_form_showURL')) {
                $_zp_current_comment['website'] = '';
            }
            ?>
				<div class="comment" <?php 
            echo $display;
            ?>
>
					<a name="c_<?php 
            echo $_zp_current_comment['id'];
            ?>
"></a>
					<div class="commentinfo">
						<h4><?php 
            printCommentAuthorLink();
            ?>
: on <?php 
            echo getCommentDateTime();
            printEditCommentLink('Edit', ', ', '');
            ?>
</h4>
					</div><!-- class "commentinfo" -->
					<div class="commenttext"><?php 
            echo getCommentBody();
            ?>
</div><!-- class "commenttext" -->
				</div><!-- class "comment" -->
				<?php 
        }
        ?>
		</div><!-- id "comments" -->
		<?php 
    }
    ?>
		<!-- Comment Box -->
		<?php 
    if ($comments_open) {
        $stored = array_merge(getCommentStored(), array('street' => '', 'city' => '', 'state' => '', 'country' => '', 'postal' => ''));
        $raw = $stored['custom'];
        if (preg_match($arraytest, $raw)) {
            $custom = unserialize($raw);
            foreach ($custom as $key => $value) {
                if (!empty($value)) {
                    $stored[$key] = $value;
                }
            }
        }
        $disabled = array('name' => '', 'website' => '', 'anon' => '', 'private' => '', 'comment' => '', 'street' => '', 'city' => '', 'state' => '', 'country' => '', 'postal' => '');
        foreach ($stored as $key => $value) {
            $disabled[$key] = false;
        }
        if (zp_loggedin()) {
            $raw = $_zp_current_admin_obj->getCustomData();
            if (preg_match($arraytest, $raw)) {
                $address = unserialize($raw);
                foreach ($address as $key => $value) {
                    if (!empty($value)) {
                        $disabled[$key] = true;
                        $stored[$key] = $value;
                    }
                }
            }
            $name = $_zp_current_admin_obj->getName();
            if (!empty($name)) {
                $stored['name'] = $name;
                $disabled['name'] = ' disabled="disabled"';
            } else {
                $user = $_zp_current_admin_obj->getUser();
                if (!empty($user)) {
                    $stored['name'] = $user;
                    $disabled['name'] = ' disabled="disabled"';
                }
            }
            $email = $_zp_current_admin_obj->getEmail();
            if (!empty($email)) {
                $stored['email'] = $email;
                $disabled['email'] = ' disabled="disabled"';
            }
            if (!empty($address['website'])) {
                $stored['website'] = $address['website'];
                $disabled['website'] = ' disabled="disabled"';
            }
        }
        $data = zp_apply_filter('comment_form_data', array('data' => $stored, 'disabled' => $disabled));
        $disabled = $data['disabled'];
        $stored = $data['data'];
        if (MEMBERS_ONLY_COMMENTS && !zp_loggedin(POST_COMMENT_RIGHTS)) {
            echo gettext('Only registered users may post comments.');
        } else {
            if (!empty($addcommenttext)) {
                echo $addcommenttext;
            }
            ?>
				<div id="commententry" <?php 
            echo $comment_commententry_mod;
            ?>
>
				<?php 
            $theme = getCurrentTheme();
            $form = getPlugin('comment_form' . $formname, $theme);
            require $form;
            ?>
				</div><!-- id="commententry" -->
				<?php 
        }
    } else {
        ?>
			<div id="commententry">
				<h3><?php 
        echo gettext('Closed for comments.');
        ?>
</h3>
			</div><!-- id="commententry" -->
			<?php 
    }
    ?>
		</div><!-- id="commentcontent" -->
	<?php 
    if (getOption('comment_form_rss')) {
        ?>
	<br clear="all" />
	<?php 
        switch ($_zp_gallery_page) {
            case "image.php":
                printRSSLink("Comments-image", "", gettext("Subscribe to comments"), "");
                break;
            case "album.php":
                printRSSLink("Comments-album", "", gettext("Subscribe to comments"), "");
                break;
            case "news.php":
                printZenpageRSSLink("Comments-news", "", "", gettext("Subscribe to comments"), "");
                break;
            case "pages.php":
                printZenpageRSSLink("Comments-page", "", "", gettext("Subscribe to comments"), "");
                break;
        }
    }
    ?>
<!-- end printCommentForm -->
<?php 
}