admin
1 year ago
components
1 year ago
data
1 year ago
elementor
1 year ago
gutenberg
1 year ago
library
1 year ago
tours
1 year ago
class-config.php
1 year ago
class-plugin.php
1 year ago
class-config.php
18 lines
| 1 | <?php |
| 2 | |
| 3 | namespace SuperbAddons\Config; |
| 4 | |
| 5 | defined('ABSPATH') || exit(); |
| 6 | |
| 7 | class Config |
| 8 | { |
| 9 | // Available service API domains |
| 10 | const API_DOMAINS = array("https://superbdemo.com/api/wp-json/", "https://superbthemes.com/wp-json/"); |
| 11 | } |
| 12 | |
| 13 | class Capabilities |
| 14 | { |
| 15 | const CONTRIBUTOR = 'edit_posts'; |
| 16 | const ADMIN = 'manage_options'; |
| 17 | } |
| 18 |