mirror of
https://github.com/discourse/wp-discourse.git
synced 2025-10-03 08:59:21 +08:00
* Don't try to add url to <head> if it's not present * Update js config and formatting for comment block and sidebar * PHP Linting * FIX: Don't auto-publish updates to existing posts. See: https://meta.discourse.org/t/disable-posting-wordpress-articles-to-discourse-when-theyre-updated/204488 * Bump version and release notes. * Fix remote-post.php linting * Update tests.yml to install svn * Re-generate comments js build
235 lines
6.7 KiB
PHP
235 lines
6.7 KiB
PHP
<?php
|
|
/**
|
|
* Returns HTML templates used for publishing to Discourse and for displaying comments on the WordPress site.
|
|
*
|
|
* Templates and implementation copied from @aliso's commit:
|
|
* https://github.com/10up/wp-discourse/commit/5c9d43c4333e136204d5a3b07192f4b368c3f518.
|
|
*
|
|
* @link https://github.com/discourse/wp-discourse/blob/master/lib/html-templates.php
|
|
* @package WPDiscourse
|
|
*/
|
|
|
|
namespace WPDiscourse\Templates;
|
|
|
|
use WPDiscourse\Shared\PluginUtilities;
|
|
|
|
/**
|
|
* Class HTMLTemplates
|
|
*/
|
|
class HTMLTemplates {
|
|
use PluginUtilities;
|
|
|
|
/**
|
|
* Sets the value of the target attribute.
|
|
*
|
|
* @return string
|
|
*/
|
|
protected static function new_tab() {
|
|
$comment_options = get_option( 'discourse_comment' );
|
|
|
|
return ! empty( $comment_options['discourse-new-tab'] );
|
|
}
|
|
|
|
/**
|
|
* HTML template for replies.
|
|
*
|
|
* Can be customized from within a theme using the filter provided.
|
|
*
|
|
* Available tags:
|
|
* {comments}, {discourse_url}, {discourse_url_name},
|
|
* {topic_url}, {more_replies}, {participants}
|
|
*
|
|
* @static
|
|
*
|
|
* @return string
|
|
*/
|
|
public static function replies_html() {
|
|
ob_start();
|
|
?>
|
|
<div id="comments" class="comments-area discourse-comments-area">
|
|
<div class="comments-title-wrap">
|
|
<h2 class="comments-title discourse-comments-title"><?php echo esc_html( self::get_text_options( 'notable-replies-text' ) ); ?></h2>
|
|
</div>
|
|
<ol class="comment-list">{comments}</ol>
|
|
<div class="respond comment-respond">
|
|
<h3 id="reply-title" class="comment-reply-title">
|
|
<?php echo esc_html( self::get_text_options( 'continue-discussion-text' ) . ' ' ); ?>
|
|
<?php self::discourse_topic_link( self::new_tab() ); ?>
|
|
</h3>
|
|
<p class="more-replies">{more_replies}</p>
|
|
<div class="comment-reply-title">
|
|
<h4 class="discourse-participants"><?php echo esc_html( self::get_text_options( 'participants-text' ) ); ?></h4>
|
|
<p>{participants}</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php
|
|
$output = ob_get_clean();
|
|
|
|
return apply_filters( 'discourse_replies_html', $output );
|
|
}
|
|
|
|
/**
|
|
* HTML template for no replies.
|
|
*
|
|
* Can be customized from within a theme using the filter provided.
|
|
*
|
|
* Available tags:
|
|
* {comments}, {discourse_url}, {discourse_url_name}, {topic_url}
|
|
*
|
|
* @param null/string $discourse_comments_number The number of comments that are displayed on Discourse.
|
|
* @static
|
|
* @return string
|
|
*/
|
|
public static function no_replies_html( $discourse_comments_number = null ) {
|
|
ob_start();
|
|
?>
|
|
<div id="comments" class="comments-area">
|
|
<div class="respond comment-respond">
|
|
<h3 id="reply-title" class="comment-reply-title">
|
|
<?php
|
|
$text = $discourse_comments_number > 1 ? self::get_text_options( 'join-discussion-text' ) : self::get_text_options( 'start-discussion-text' );
|
|
?>
|
|
<?php echo esc_html( $text ) . ' '; ?>
|
|
<?php self::discourse_topic_link( self::new_tab() ); ?>
|
|
</h3>
|
|
</div>
|
|
</div>
|
|
<?php
|
|
$output = ob_get_clean();
|
|
|
|
return apply_filters( 'discourse_no_replies_html', $output );
|
|
}
|
|
|
|
/**
|
|
* The template that is displayed in the comments section after a post is created
|
|
* with bad credentials.
|
|
* This template is displayed in the comments section when there is no `discourse_permalink`
|
|
* index in the response returned from `Discourse::sync_to_discourse_work`
|
|
*
|
|
* Can be customized in the theme using the filter provided.
|
|
*
|
|
* @return string
|
|
*/
|
|
public static function bad_response_html() {
|
|
ob_start();
|
|
?>
|
|
<div class="respond comment-respond">
|
|
<div class="comment-reply-title discourse-no-connection-notice">
|
|
<p><?php echo esc_html( self::get_text_options( 'comments-not-available-text' ) ); ?></p>
|
|
</div>
|
|
</div>
|
|
<?php
|
|
$output = ob_get_clean();
|
|
|
|
return apply_filters( 'discourse_no_connection_html', $output );
|
|
}
|
|
|
|
/**
|
|
* HTML template for each comment
|
|
*
|
|
* Can be customized from within a theme using the filter provided.
|
|
*
|
|
* Available tags:
|
|
* {discourse_url}, {discourse_url_name}, {topic_url},
|
|
* {avatar_url}, {user_url}, {username}, {fullname},
|
|
* {comment_body}, {comment_created_at}, {comment_url}
|
|
*
|
|
* @param bool $even Whether it's an even comment number.
|
|
* @static
|
|
* @return string
|
|
*/
|
|
public static function comment_html( $even = true ) {
|
|
ob_start();
|
|
?>
|
|
<li class="comment <?php echo $even ? 'even' : 'odd'; ?> depth-1">
|
|
<article class="comment-body">
|
|
<footer class="comment-meta">
|
|
<div class="comment-author vcard">
|
|
<img alt="Avatar for {username}" src="{avatar_url}" class="avatar avatar-64 photo avatar-default"
|
|
height="64"
|
|
width="64">
|
|
<b class="fn"><a href="{topic_url}" rel="external"
|
|
class="url">{username}</a></b>
|
|
<span class="says screen-reader-text"><?php echo esc_html( 'says:', 'wp-discourse' ); ?></span><!-- screen reader text -->
|
|
</div>
|
|
<div class="comment-metadata">
|
|
<time datetime="{comment_created_at}">{comment_created_at}</time>
|
|
</div>
|
|
</footer>
|
|
<div class="comment-content">{comment_body}</div>
|
|
</article>
|
|
</li>
|
|
<?php
|
|
$output = ob_get_clean();
|
|
|
|
return apply_filters( 'discourse_comment_html', $output );
|
|
}
|
|
|
|
/**
|
|
* HTML template for each participant
|
|
*
|
|
* Can be customized from within a theme using the filter provided.
|
|
*
|
|
* Available tags:
|
|
* {discourse_url}, {discourse_url_name}, {topic_url},
|
|
* {avatar_url}, {user_url}, {username}
|
|
*
|
|
* @static
|
|
* @return string
|
|
*/
|
|
public static function participant_html() {
|
|
ob_start();
|
|
?>
|
|
<img alt="Avatar for {username}" src="{avatar_url}" class="avatar avatar-25 photo avatar-default" height="25" width="25">
|
|
<?php
|
|
$output = ob_get_clean();
|
|
|
|
return apply_filters( 'discourse_participant_html', $output );
|
|
}
|
|
|
|
/**
|
|
* HTML template for published byline
|
|
*
|
|
* Can be customized from within a theme using the filter provided.
|
|
*
|
|
* Available tags:
|
|
* {excerpt}, {blogurl}, {author}, {thumbnail}, {featuredimage}
|
|
*
|
|
* @param int|null $post_id The ID of the post being published.
|
|
* @static
|
|
* @return string
|
|
*/
|
|
public static function publish_format_html( $post_id = null ) {
|
|
ob_start();
|
|
?>
|
|
<small><?php echo esc_html( self::get_text_options( 'published-at-text' ) ); ?>
|
|
{blogurl}
|
|
</small><br>{excerpt}
|
|
<?php
|
|
$output = ob_get_clean();
|
|
|
|
return apply_filters( 'discourse_publish_format_html', $output, $post_id );
|
|
}
|
|
|
|
/**
|
|
* HTML template for the link to the Discourse topic.
|
|
*
|
|
* Available tags:
|
|
* {topic_url}, {discourse_url_name}
|
|
*
|
|
* @param bool $new_tab Whether or not to open the link in a new tab.
|
|
* @static
|
|
*/
|
|
public static function discourse_topic_link( $new_tab ) {
|
|
if ( $new_tab ) {
|
|
?>
|
|
<a class="wpdc-discourse-topic-link" target="_blank" rel="noreferrer noopener" href="{topic_url}">{discourse_url_name}</a>
|
|
<?php
|
|
} else {
|
|
?>
|
|
<a class="wpdc-discourse-topic-link" href="{topic_url}">{discourse_url_name}</a>
|
|
<?php
|
|
}
|
|
}
|
|
}
|