/
home
/
desid573
/
verdenaturopathy.com.au
/
site3
/
wp-content
/
plugins
/
meta-box
/
inc
/
helpers
/
/home/desid573/verdenaturopathy.com.au/site3/wp-content/plugins/meta-box/inc/helpers
mkdir
upload
Name
Size
Mode
Actions
array.php
1837
0644
edit
dl
rm
field.php
1471
0644
edit
dl
rm
string.php
447
0644
edit
dl
rm
value.php
677
0644
edit
dl
rm
Edit:
/home/desid573/verdenaturopathy.com.au/site3/wp-content/plugins/meta-box/inc/helpers/string.php
(447B)
<?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; } }
Save