%PDF- %PDF-
Direktori : /var/www/html/itworks/wp-content/plugins/learnpress-wishlist/templates/ |
Current File : /var/www/html/itworks/wp-content/plugins/learnpress-wishlist/templates/button.php |
<?php /** * Template for displaying button to toggle course wishlist on/off. * * This template can be overridden by copying it to yourtheme/learnpress/addons/wishlist/button.php. * * @author ThimPress * @package LearnPress/Wishlist/Templates * @version 3.0.1 */ // Prevent loading this file directly defined( 'ABSPATH' ) || exit; printf( '<button class="learn-press-course-wishlist learn-press-course-wishlist-button-%2$d wishlist-button %s" data-id="%s" data-nonce="%s" title="%s" data-text="%s">%s</button>', join( " ", $classes ), $course_id, wp_create_nonce( 'course-toggle-wishlist' ), $title, __( 'Processing...', 'learnpress-wishlist' ), $state == 'on' ? __( 'Remove from Wishlist', 'learnpress-wishlist' ) : __( 'Add to Wishlist', 'learnpress-wishlist' ) );