__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
namespace WPForms\Admin\Builder;
use WPForms\Helpers\CacheBase;
/**
* Form Builder Help Cache.
*
* @since 1.8.2
*/
class HelpCache extends CacheBase {
/**
* Remote source URL.
*
* @since 1.9.3
*
* @var string
*/
const REMOTE_SOURCE = 'https://wpformsapi.com/feeds/v1/docs/';
/**
* Determine if the class is allowed to load.
*
* @since 1.8.2
*
* @return bool
*/
protected function allow_load() {
if ( wp_doing_cron() || wpforms_doing_wp_cli() ) {
return true;
}
if ( ! wpforms_current_user_can( [ 'create_forms', 'edit_forms' ] ) ) {
return false;
}
return wpforms_is_admin_page( 'builder' );
}
/**
* Setup settings and other things.
*
* @since 1.8.2
*/
protected function setup() {
return [
'remote_source' => self::REMOTE_SOURCE,
'cache_file' => 'docs.json',
/**
* Allow modifying Help Docs cache TTL (time to live).
*
* @since 1.6.3
*
* @param int $cache_ttl Cache TTL in seconds. Defaults to 1 week.
*/
'cache_ttl' => (int) apply_filters( 'wpforms_admin_builder_help_cache_ttl', WEEK_IN_SECONDS ),
'update_action' => 'wpforms_builder_help_cache_update',
];
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Ajax | Folder | 0775 |
|
|
| Notifications | Folder | 0775 |
|
|
| Settings | Folder | 0775 |
|
|
| Addons.php | File | 10.16 KB | 0775 |
|
| AntiSpam.php | File | 12.49 KB | 0775 |
|
| ContextMenu.php | File | 953 B | 0775 |
|
| Help.php | File | 53.34 KB | 0775 |
|
| HelpCache.php | File | 1.16 KB | 0775 |
|
| ImageUpload.php | File | 789 B | 0775 |
|
| Shortcuts.php | File | 3.23 KB | 0775 |
|
| TemplateSingleCache.php | File | 5.38 KB | 0775 |
|
| Templates.php | File | 35.32 KB | 0775 |
|
| TemplatesCache.php | File | 5.66 KB | 0775 |
|