Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
types
/
application
/
models
/
wpml
/
field
/
group
/
string
:
name.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php class Types_Wpml_Field_Group_String_Name extends Types_Wpml_Field_Group_String { const DB_NAME_PATTERN = 'group %s name'; public function __construct( Types_Field_Group $group ) { parent::__construct( $group ); $this->string_to_translate = stripslashes( $this->group->get_name() ); } protected function get_db_pattern() { return self::DB_NAME_PATTERN; } }