Ejemplo n.º 1
0
        echo getCommentDateTime();
        ?>
</span>
 							</div>
								<div class="commentbody"><?php 
        echo getCommentBody();
        ?>
</div>
						</div>
						<?php 
    }
    ?>

						<div class="imgcommentform">
				<?php 
    if (OpenedForComments(ALBUM)) {
        ?>
							<!-- If comments are on for this album... -->
							<h3>
								<?php 
        echo gettext("Add a comment:");
        ?>
							</h3>
							<form id="commentform" action="#comments" method="post">
									<input type="hidden" name="comment" value="1" />
									<input type="hidden" name="remember" value="1" />
										<?php 
        printCommentErrors();
        $stored = getCommentStored();
        ?>
									<table border="0">
Ejemplo n.º 2
0
            printf(gettext('%s wrote:'), printCommentAuthorLink());
            ?>
</em>
							</dt>
							<dd><p><?php 
            echo getCommentBody();
            printEditCommentLink(gettext('Edit'), ' | ', '');
            ?>
</p></dd>
							<?php 
        }
        ?>
						</dl>

						<?php 
        if (OpenedForComments()) {
            ?>
							<p class="mainbutton" id="addcommentbutton"><a href="#addcomment" class="btn"><img src="<?php 
            echo $_zp_themeroot;
            ?>
/images/btn_add_a_comment.gif" alt="" width="116" height="21" /></a></p>
						<?php 
        } else {
            echo '<h2>' . gettext('Comments are closed') . '</h2>';
        }
        ?>

						<!-- BEGIN #addcomment -->
						<?php 
        if ($_zp_comment_error) {
            echo '<div id="addcomment" style="display: block;">';
Ejemplo n.º 3
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 
}