| 1 |
<?php |
| 2 |
/** |
| 3 |
* All of our actions for administrators of our site. |
| 4 |
* |
| 5 |
* @package ForceRefresh |
| 6 |
*/ |
| 7 |
|
| 8 |
namespace JordanLeven\Plugins\ForceRefresh; |
| 9 |
|
| 10 |
require __DIR__ . '/inc.admin-css.php'; |
| 11 |
require __DIR__ . '/inc.admin-js.php'; |
| 12 |
require __DIR__ . '/inc.refresh-post.php'; |
| 13 |
require __DIR__ . '/inc.refresh-site-from-admin-bar.php'; |
| 14 |
require __DIR__ . '/inc.refresh-site.php'; |
| 15 |
require __DIR__ . '/inc.roles.php'; |
| 16 |
require __DIR__ . '/inc.save-options.php'; |
| 17 |
|