Adapter
1 week ago
Analytics
1 week ago
Assets
1 week ago
BackgroundProcessing
1 week ago
CloningProcess
1 week ago
Collection
1 week ago
Command
1 week ago
Component
1 week ago
DI
1 week ago
Database
1 week ago
DependencyResolver
1 week ago
Exceptions
2 years ago
Experiments
1 week ago
Facades
1 week ago
Filesystem
1 week ago
Interfaces
1 week ago
Job
1 week ago
Language
1 week ago
Logger
1 week ago
Mails
1 week ago
Network
1 week ago
Newsfeed
1 week ago
Notices
1 week ago
Onboarding
1 week ago
Performance
1 week ago
Permalinks
1 week ago
Queue
1 week ago
Rest
1 week ago
Security
1 week ago
Settings
1 week ago
TemplateEngine
1 week ago
ThirdParty
1 week ago
Traits
1 week ago
Upgrade
1 week ago
Utils
1 week ago
AnalyticsServiceProvider.php
1 week ago
AssetServiceProvider.php
1 year ago
CommonServiceProvider.php
1 week ago
ErrorHandler.php
1 week ago
NoticeServiceProvider.php
1 year ago
SettingsServiceProvider.php
4 months ago
SiteInfo.php
1 week ago
Url.php
1 week ago
AssetServiceProvider.php
24 lines
| 1 | <?php |
| 2 | |
| 3 | namespace WPStaging\Framework; |
| 4 | |
| 5 | use WPStaging\Framework\Assets\Assets; |
| 6 | use WPStaging\Framework\DI\ServiceProvider; |
| 7 | |
| 8 | class AssetServiceProvider extends ServiceProvider |
| 9 | { |
| 10 | protected function registerClasses() |
| 11 | { |
| 12 | $this->container->singleton(Assets::class); |
| 13 | } |
| 14 | |
| 15 | protected function addHooks() |
| 16 | { |
| 17 | add_action('admin_enqueue_scripts', $this->container->callback(Assets::class, 'enqueueElements'), 100, 1); |
| 18 | add_action('admin_enqueue_scripts', $this->container->callback(Assets::class, 'removeWPCoreJs'), 5, 1); |
| 19 | add_action('wp_enqueue_scripts', $this->container->callback(Assets::class, 'enqueueElements'), 100, 1); |
| 20 | add_action('admin_enqueue_scripts', $this->container->callback(Assets::class, 'dequeueNonWpstgElements'), 99); |
| 21 | add_action("wp_before_admin_bar_render", $this->container->callback(Assets::class, 'changeSiteName'), 100, 1); |
| 22 | } |
| 23 | } |
| 24 |