PluginProbe
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses / 4.1.7
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses v4.1.7
4.4.7 4.4.6 4.4.5 4.4.4 4.4.3 4.4.2 4.4.1 4.4.0 4.3.9.1 4.3.9 4.3.8 4.3.7 4.1.6.9 4.1.6.9.1 4.1.6.9.2 4.1.6.9.3 4.1.6.9.4 4.1.7 4.1.7.1 4.1.7.2 4.1.7.3 4.1.7.3.1 4.1.7.3.2 4.2.0 4.2.1 All 138 releases
learnpress / inc / admin / views / tools / html-cron.php

html-cron.php in LearnPress – WordPress LMS Plugin for Create and Sell Online Courses 4.1.7, at inc/admin/views/tools/html-cron.php

35 lines 1.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Template for displaying outdated template files in theme/child-themes
4 *
5 * @author ThimPress
6 * @package LearnPress/Admin/Views
7 * @version 3.0.0
8 */
9
10 defined( 'ABSPATH' ) or die();
11
12 ?>
13 <table class="form-table">
14 <tr>
15 <th><?php esc_attr_e( 'Cron url', 'learnpress' ); ?></th>
16 <td>
17 <input type="text" class="widefat" value="<?php echo esc_attr( learn_press_get_cron_url() ); ?>">
18 <p class="description"><?php esc_html_e( 'Use this url to setup cronjob on your server.', 'learnpress' ); ?></p>
19 <br/>
20 <a class="button" href="<?php echo wp_nonce_url( esc_url_raw( add_query_arg( 'generate-cron-url', '1' ) ) ); ?>"><?php esc_html_e( 'Generate new url', 'learnpress' ); ?></a>
21 </td>
22 </tr>
23
24 <!-- <tr>-->
25 <!-- <th>--><?php // esc_attr_e( 'Schedule', 'learnpress' ); ?><!--</th>-->
26 <!-- <td>-->
27 <!-- <input type="text" class="widefat" value="--><?php // echo esc_attr( learn_press_get_cron_url() ); ?><!--">-->
28 <!-- <p class="description">--><?php // esc_html_e( 'Enable .', 'learnpress' ); ?><!--</p>-->
29 <!-- <br/>-->
30 <!-- <a class="button"-->
31 <!-- href="--><?php // echo wp_nonce_url( add_query_arg( 'generate-cron-url', '1' ) ); ?><!--">--><?php // esc_html_e( 'Generate new url', 'learnpress' ); ?><!--</a>-->
32 <!-- </td>-->
33 <!-- </tr>-->
34 </table>
35