Current File : /home/kelaby89/muzza.fit/wp-content/plugins/mp-timetable/templates/settings/general.php |
<div class="wrap">
<h1><?php _e('General Settings', 'mp-timetable'); ?></h1>
<div class="motopress-offer-primary">
<?php settings_errors('mpTimetableSettings', false); ?>
<form method="POST">
<table class="form-table">
<tr>
<td><label for="template_source"><?php _e('Template Mode', 'mp-timetable'); ?></label></td>
<td>
<?php $theme_mode = !empty($settings['theme_mode']) ? $settings['theme_mode'] : 'theme'; ?>
<select id="theme_mode" name="theme_mode" <?php echo ( $theme_supports == TRUE ) ? ' disabled' : ''; ?>>
<option value="theme" <?php selected($theme_mode, 'theme'); ?>><?php _e('Theme Mode', 'mp-timetable'); ?></option>
<option value="plugin" <?php selected($theme_mode, 'plugin'); ?>><?php _e('Developer Mode', 'mp-timetable'); ?></option>
</select>
<p class="description"><?php _e("Choose Theme Mode to display the content with the styles of your theme. Choose Developer Mode to control appearance of the content with custom page templates, actions and filters.", 'mp-timetable'); ?><br/><?php _e("This option can't be changed if your theme is initially integrated with the plugin.", 'mp-timetable'); ?></p>
</td>
</tr>
<?php
if ( apply_filters('mptt_permalinks_enabled', true) ) {
?>
<tr>
<td><?php _e('Permalink Settings', 'mp-timetable'); ?></td>
<td><?php echo sprintf( __('Configure permalink settings in <a href="%s">Settings > Permalinks</a>', 'mp-timetable'), admin_url('options-permalink.php') ); ?></td>
</tr>
<?php } ?>
</table>
<p class="submit">
<input type="submit" name="submit" id="submit" class="button-primary" value="<?php _e('Save', 'mp-timetable') ?>"/>
<input type="hidden" name="mp-timetable-save-settings" value="<?php echo wp_create_nonce('mp_timetable_nonce_settings') ?>">
</p>
</form>
<p><?php
$pluginObject = get_plugin_data( MP_TT_PLUGIN_FILE );
$name = $pluginObject[ 'Name' ];
echo sprintf(
/* translators: 1: Timetable and Event Schedule 2:: five stars rating */
__( 'If you like %1$s please leave us a %2$s rating.', 'mp-timetable' ),
sprintf( '<strong>%s</strong>', esc_html( $name ) ),
'<a href="https://wordpress.org/support/plugin/mp-timetable/reviews?rate=5#new-post" target="_blank">★★★★★</a>'
);
?></p>
</div>
<?php
/*
* Offer free plugins
*
*/
require_once Mp_Time_Table::get_plugin_path() . 'classes/class-offer.php';
$plugins_offer = new \mp_timetable\plugin_core\classes\Plugins_Offer();
$plugins_offer->render();
?>
</div>