Changeset 2465737
- Timestamp:
- 01/31/2021 04:05:02 AM (5 years ago)
- Location:
- secure-file-manager/trunk
- Files:
-
- 6 edited
-
assets/images/global.jpg (modified) (previous)
-
assets/images/restrict-user.jpg (modified) (previous)
-
assets/images/user-access.jpg (modified) (previous)
-
includes/admin.php (modified) (8 diffs)
-
readme.txt (modified) (2 diffs)
-
secure-file-manager.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
secure-file-manager/trunk/includes/admin.php
r2465565 r2465737 21 21 $sfm_file_manager = add_menu_page( $page_title, $menu_title, $capability, $menu_slug, $function, $icon_url, $position ); 22 22 23 global $sfm_ settings;24 $sfm_ settings= add_submenu_page(23 global $sfm_access_control; 24 $sfm_access_control = add_submenu_page( 25 25 $menu_slug, 26 26 __( 'Settings', 'secure-file-manager' ), 27 27 __( 'Settings', 'secure-file-manager' ), 28 28 'administrator', 29 'sfm_access_control', 30 'sfm_access_control_display' 31 ); 32 33 global $sfm_settings; 34 $sfm_settings = add_submenu_page( 35 $menu_slug, 36 __( 'Advanced Settings', 'secure-file-manager' ), 37 __( 'Advanced Settings', 'secure-file-manager' ), 38 'administrator', 29 39 'sfm_settings', 30 40 'sfm_settings_display' 31 41 ); 32 33 global $sfm_access_control;34 $sfm_access_control = add_submenu_page(35 $menu_slug,36 __( 'Access Control', 'secure-file-manager' ),37 __( 'Access Control', 'secure-file-manager' ),38 'administrator',39 'sfm_access_control',40 'sfm_access_control_display'41 );42 42 } 43 43 … … 45 45 function secure_file_manager_settings_link( $actions ){ 46 46 47 array_unshift( $actions, '<a href="'. esc_url( get_admin_url(null, 'admin.php?page=sfm_ settings') ) .'">Settings</a>' );47 array_unshift( $actions, '<a href="'. esc_url( get_admin_url(null, 'admin.php?page=sfm_access_control') ) .'">Settings</a>' ); 48 48 array_unshift( $actions, '<b><a href="'. esc_url( 'https://themexa.com/secure-file-manager-pro') .'" target="_blank">Get Pro</a></b>' ); 49 49 return $actions; … … 108 108 <div class="jumbotron" style="background-image: url( <?php echo plugin_dir_url( dirname( __FILE__ ) ); ?>assets/images/tinypixi_pluginman_head.png ); "> 109 109 <h1 class="display-3"><?php _e( 'Secure File Manager', 'secure-file-manager' ); ?></h1> 110 <p class="lead"><?php _e( ' Access Control', 'bwpse' ); ?></p>110 <p class="lead"><?php _e( 'Settings', 'bwpse' ); ?></p> 111 111 </div> 112 112 </div> … … 189 189 <div class="jumbotron" style="background-image: url( <?php echo plugin_dir_url( dirname( __FILE__ ) ); ?>assets/images/tinypixi_pluginman_head.png ); "> 190 190 <h1 class="display-3"><?php _e( 'Secure File Manager', 'secure-file-manager' ); ?></h1> 191 <p class="lead"><?php _e( ' Settings', 'bwpse' ); ?></p>191 <p class="lead"><?php _e( 'Advanced Pro Settings', 'bwpse' ); ?></p> 192 192 </div> 193 193 </div> … … 195 195 <div class="row alert alert-success mb-4"> 196 196 <div class="col-10 text-center pt-2"> 197 <h5>This is a demo screenshot of the pro features. To get the pro features, get Secure File Manager Pro.</h5>198 </div> 199 <div class="col-2 ">197 <h5>This is a screenshot of the Advanced Pro features. To get the Advanced Pro features, get <br><a href="https://themexa.com/secure-file-manager-pro" target="_blank">"Secure File Manager Pro"</a></h5> 198 </div> 199 <div class="col-2 pt-3"> 200 200 <a href="https://themexa.com/secure-file-manager-pro" target="_blank"> 201 201 <button type="button" class="btn btn-primary">Get Pro</button> … … 211 211 <div class="row alert alert-success mb-4"> 212 212 <div class="col-10 text-center pt-2"> 213 <h5>This is a demo screenshot of the pro features. To get the pro features, get Secure File Manager Pro.</h5>214 </div> 215 <div class="col-2 ">213 <h5>This is a screenshot of the Advanced Pro features. To get the Advanced Pro features, get <br><a href="https://themexa.com/secure-file-manager-pro" target="_blank">"Secure File Manager Pro"</a></h5> 214 </div> 215 <div class="col-2 pt-3"> 216 216 <a href="https://themexa.com/secure-file-manager-pro" target="_blank"> 217 217 <button type="button" class="btn btn-primary">Get Pro</button> … … 227 227 <div class="row alert alert-success mb-4"> 228 228 <div class="col-10 text-center pt-2"> 229 <h5>This is a demo screenshot of the pro features. To get the pro features, get Secure File Manager Pro.</h5>230 </div> 231 <div class="col-2 ">229 <h5>This is a screenshot of the Advanced Pro features. To get the Advanced Pro features, get <br><a href="https://themexa.com/secure-file-manager-pro" target="_blank">"Secure File Manager Pro"</a></h5> 230 </div> 231 <div class="col-2 pt-3"> 232 232 <a href="https://themexa.com/secure-file-manager-pro" target="_blank"> 233 233 <button type="button" class="btn btn-primary">Get Pro</button> … … 243 243 <div class="row alert alert-success mb-4"> 244 244 <div class="col-10 text-center pt-2"> 245 <h5>This is a demo screenshot of the pro features. To get the pro features, get Secure File Manager Pro.</h5>246 </div> 247 <div class="col-2 ">245 <h5>This is a screenshot of the Advanced Pro features. To get the Advanced Pro features, get <br><a href="https://themexa.com/secure-file-manager-pro" target="_blank">"Secure File Manager Pro"</a></h5> 246 </div> 247 <div class="col-2 pt-3"> 248 248 <a href="https://themexa.com/secure-file-manager-pro" target="_blank"> 249 249 <button type="button" class="btn btn-primary">Get Pro</button> -
secure-file-manager/trunk/readme.txt
r2465565 r2465737 6 6 Tested up to: 5.6 7 7 Requires PHP: 7.1 8 Stable tag: 2.9 8 Stable tag: 2.9.1 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 162 162 * Settings and Other Plugin Links Added 163 163 164 = 2.9.1 = 165 * Advanced Pro Features Display Added 166 164 167 == Upgrade Notice == 165 168 = 1.0 = -
secure-file-manager/trunk/secure-file-manager.php
r2465565 r2465737 3 3 /** 4 4 * @package Secure File Manager 5 * @version 2.9 5 * @version 2.9.1 6 6 */ 7 7 … … 11 11 Description: Most Beautiful and Secure WordPress File Manager 12 12 Author: Themexa 13 Version: 2.9 13 Version: 2.9.1 14 14 Author URI: https://www.themexa.com 15 15 License: GPL2 … … 25 25 * Current plugin version. 26 26 */ 27 define( 'secure-file-manager', '2.9 ' );27 define( 'secure-file-manager', '2.9.1' ); 28 28 29 29 /**
Note: See TracChangeset
for help on using the changeset viewer.