📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: Apache
2026-06-21 05:49:13
📂
/ (Root)
/
home
/
xeqi7597
/
cds.claireduwig.com
/
wp-content
/
plugins
/
ultimate-addons-for-gutenberg
/
admin-core
/
api
📍 /home/xeqi7597/cds.claireduwig.com/wp-content/plugins/ultimate-addons-for-gutenberg/admin-core/api
🔄 Refresh
✏️
Editing: api-base.php
Writable
<?php /** * Api Base. * * @package uag */ namespace UagAdmin\Api; // Exit if accessed directly. if ( ! defined( 'ABSPATH' ) ) { exit; } /** * Class Api_Base. */ abstract class Api_Base extends \WP_REST_Controller { /** * Endpoint namespace. * * @var string */ protected $namespace = 'uag/v1'; /** * Register API routes. */ public function get_api_namespace() { return $this->namespace; } }
💾 Save Changes
❌ Cancel