Scripts that is used within the plugin is located in the ResursBank\Module\Data class.
Variable | Script description |
---|---|
$jsLoaders | Default loaders that is usually added to the user sections for WordPress. |
$jsLoadersCheckout | Scripts that is only loaded in the head, at checkout section. |
$jsLoadersAdmin | Script loaded in the admin section. |
$jsDependencies | Every script that has dependencies in other scripts should be added here. For example if some of the basic scripts needs jquery it is added like this: private static $jsDependencies = ['resursbank' => ['jquery']]; |
$jsDependenciesAdmin | As the regular dependency variable above, but for admin section. |
$styles | Every css that needs to be loaded. |
$stylesAdmin | Css that resides in the admin section. |