Submit
Path:
~
/
home
/
contenidosenred
/
www
/
OD
/
wp-content
/
plugins
/
meta-box
/
inc
/
helpers
/
File Content:
string.php
<?php /** * String helper functions. * * @package Meta Box */ /** * String helper class. * * @package Meta Box */ class RWMB_Helpers_String { /** * Convert text to Title_Case. * * @param string $text Input text. * @return string */ public static function title_case( $text ) { $text = str_replace( array( '-', '_' ), ' ', $text ); $text = ucwords( $text ); $text = str_replace( ' ', '_', $text ); return $text; } }
Submit
FILE
FOLDER
INFO
Name
Size
Permission
Action
array.php
1837 bytes
0644
field.php
1471 bytes
0644
string.php
447 bytes
0644
value.php
677 bytes
0644
N4ST4R_ID | Naxtarrr