Skip to content
Snippets Groups Projects
Select Git revision
  • d6c43c7620e631cedad0d608e92d9766809481e6
  • master default protected
  • devel
  • feature/add-escaping-to-templates
  • feature/add-priority-sorting
  • 3.3.0
  • 3.2.1
  • 3.2.0
  • 3.1.0
  • 3.0.0
  • 2.4.12
  • 2.4.11
  • 2.4.10
  • 2.4.9
  • 2.4.8
  • 2.4.7
  • 2.4.6
  • 2.4.5
  • 2.4.4
  • 2.4.2
  • 2.4.1
  • 2.4.0
  • 2.3.2
  • 2.3.1
  • 2.3
25 results

changelog.txt

Blame
  • To find the state of this project's repository at the time of any of these versions, check out the tags.
    html-text-petition.php 796 B
    <?php
    /**
     * @var string $text_align
     * @var string $plugin_author
     * @var string $plugin_title
     * @var string $rating_url
     */
    ?><div class="wpdesk-rating-petition" style="text-align: <?php echo esc_attr( $text_align ); ?>;">
    	<?php echo wp_kses_post(
            sprintf(
                __( 'Created with %1$s by %2$s - If you like %3$s you can %4$srate us %5$s in plugins repository &rarr;%6$s', 'wp-wpdesk-rating-petition' ),
                '<span class="heart">&hearts;</span>',
                $plugin_author,
                '<span class="plugin-title">' . $plugin_title . '</span>',
                '<a href="' . $rating_url . '" target="_blank">',
                '<span class="star">&#9733;&#9733;&#9733;&#9733;&#9733;</span><span class="plugins-repository">',
                '</span></a>'
            )
        ); ?>
    </div>