This commit introduces a more reliable and consistent approach to setting up the development environment using backups: - Add setup-from-backup.sh script for environment setup from existing backups - Standardize script naming and organization - Move obsolete scripts to bin/obsolete directory - Update documentation with new workflow instructions - Create migration guide for transitioning to new workflow - Update Memory Bank with workflow improvements The new workflow provides: - More reliable environment setup - Faster setup process - Offline development capability - Consistent development environments across team members Breaking changes: - setup-dev.sh is replaced by setup-from-backup.sh - sync-and-setup.sh is replaced by separate scripts - verify-with-wpcli.sh is no longer used Migration path is documented in MIGRATION_GUIDE.md
28 lines
No EOL
2.4 KiB
PHP
28 lines
No EOL
2.4 KiB
PHP
<?php if ( ! defined( 'ABSPATH' ) ) exit;
|
|
$images_url = WP_FM_SITE_URL.'/wp-content/uploads/2024/08';
|
|
?>
|
|
<style>
|
|
.buy-now:hover,
|
|
.buy-now:focus{ box-shadow:none !important; }
|
|
img{ max-width:100% !important; }
|
|
</style>
|
|
<div class="wrap">
|
|
<h3><?php _e('Settings - General', 'wp-file-manager');?></h3>
|
|
<p class="danger" style="color:#F00"><strong><?php _e('Note: This is just a demo screenshot. To get settings please buy our pro version.', 'wp-file-manager'); ?></strong>
|
|
<a href="https://filemanagerpro.io/product/file-manager" class="button button-primary buy-now" target="_blank" title="Click to Buy PRO"><?php _e('Buy PRO', 'wp-file-manager'); ?></a></p>
|
|
<p><?php _e('Here admin can give access to user roles to use filemanager. Admin can set Default Access Folder and also control upload size of filemanager.', 'wp-file-manager');?></p>
|
|
<img src="<?php echo $images_url.'/screenshot-general.png';?>" />
|
|
<h3><?php _e('Settings - Code-editor', 'wp-file-manager');?></h3>
|
|
<p><?php _e('File Manager has a code editor with multiple themes. You can select any theme for code editor. It will display when you edit any file. Also you can allow fullscreen mode of code editor.', 'wp-file-manager');?></p>
|
|
<img src="<?php echo $images_url.'/screenshot-code-editor.png';?>" />
|
|
<h3><?php _e('Code-editor View', 'wp-file-manager');?></h3>
|
|
<img src="<?php echo $images_url.'/code-editor.jpg';?>" />
|
|
<h3><?php _e('Settings - User Restrictions', 'wp-file-manager');?></h3>
|
|
<p><?php _e('Admin can restrict actions of any user. Also hide files and folders and can set different - different folders paths for different users.', 'wp-file-manager');?></p>
|
|
<img src="<?php echo $images_url.'/screenshot-user-restriction.jpg';?>" />
|
|
<h3><?php _e('Settings - User Role Restrictions', 'wp-file-manager');?></h3>
|
|
<p><?php _e('Admin can restrict actions of any userrole. Also hide files and folders and can set different - different folders paths for different users roles.', 'wp-file-manager');?></p>
|
|
<img src="<?php echo $images_url.'/screenshot-user-role-restriction.jpg';?>" />
|
|
<p class="danger" style="color:#F00"><strong><?php _e('Note: This is just a demo screenshot. To get settings please buy our pro version.', 'wp-file-manager'); ?></strong>
|
|
<a href="https://filemanagerpro.io/product/file-manager" class="button button-primary buy-now" target="_blank" title="Click to Buy PRO"><?php _e('Buy PRO', 'wp-file-manager'); ?></a></p>
|
|
</div>
|