📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-03 03:18:38
📂
/ (Root)
/
home
/
orkouolp
/
web
/
orkofarms.com
/
wp-content
/
plugins
/
meta-box
/
inc
/
helpers
📍 /home/orkouolp/web/orkofarms.com/wp-content/plugins/meta-box/inc/helpers
🔄 Refresh
✏️
Editing: string.php
Writable
<?php /** * String helper functions. */ class RWMB_Helpers_String { public static function title_case( string $text ): string { $text = str_replace( [ '-', '_' ], ' ', $text ); $text = ucwords( $text ); $text = str_replace( ' ', '_', $text ); return $text; } }
💾 Save Changes
❌ Cancel