| @@ 163-172 (lines=10) @@ | ||
| 160 | */ |
|
| 161 | public function set_label( $label ) { |
|
| 162 | // Try to guess field label from it's name |
|
| 163 | if ( is_null( $label ) ) { |
|
| 164 | // remove the leading underscore(if it's there) |
|
| 165 | $label = preg_replace( '~^_~', '', $this->name ); |
|
| 166 | ||
| 167 | // remove the leading "crb_"(if it's there) |
|
| 168 | $label = preg_replace( '~^crb_~', '', $label ); |
|
| 169 | ||
| 170 | // split the name into words and make them capitalized |
|
| 171 | $label = ucwords( str_replace( '_', ' ', $label ) ); |
|
| 172 | } |
|
| 173 | ||
| 174 | $this->label = $label; |
|
| 175 | } |
|
| @@ 461-470 (lines=10) @@ | ||
| 458 | **/ |
|
| 459 | public function set_label( $label ) { |
|
| 460 | // Try to guess field label from it's name |
|
| 461 | if ( is_null( $label ) ) { |
|
| 462 | // remove the leading underscore(if it's there) |
|
| 463 | $label = preg_replace( '~^_~', '', $this->name ); |
|
| 464 | ||
| 465 | // remove the leading "crb_"(if it's there) |
|
| 466 | $label = preg_replace( '~^crb_~', '', $label ); |
|
| 467 | ||
| 468 | // split the name into words and make them capitalized |
|
| 469 | $label = mb_convert_case( str_replace( '_', ' ', $label ), MB_CASE_TITLE ); |
|
| 470 | } |
|
| 471 | ||
| 472 | $this->label = $label; |
|
| 473 | } |
|