🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-18 11:28:56 | PHP 8.1.34
📂
/ (Root)
/
home
/
therahul
/
ramailobhela.com
/
wp-content
/
plugins
/
wp-event-solution
/
core
/
Admin
/
Role
📍 /home/therahul/ramailobhela.com/wp-content/plugins/wp-event-solution/core/Admin/Role
🔄 Refresh
✏️
Editing: CustomerRole.php
Writable
<?php /** * Custoer Role Class */ namespace Eventin\Admin\Role; /** * Customer role class */ class CustomerRole implements RoleInterfacace { /** * Get role name * * @return string */ public function get_name() { return 'etn-customer'; } /** * Get role display name * * @return string */ public function get_display_name() { return __( 'Eventin Customer', 'eventin' ); } /** * Get all capabilities a role * * @return array Customer role capabilities */ public function get_capabilities() { return [ 'read' => true, ]; } }
💾 Save Changes
❌ Cancel