/** * Render the security message section. * * @since 1.0 */ protected function render_security_message() { $hidden = $this->release->get_type() != Release::TYPE_SECURITY ? ' hidden' : ''; $m = $this->release->get_meta('security-message', true); ?> <div class="spacing-wrapper bottom-border security-message-block<?php echo $hidden; ?> "> <h4><?php _e("Security Message", Plugin::SLUG); ?> </h4> <p class="security-message" title="<?php _e("Click to Edit", Plugin::SLUG); ?> "><?php echo $m; ?> </p> </div> <?php }