• File: name.php
  • Full Path: /home/dealkatnwc/www/wp-content/plugins/types/application/models/wpml/field/group/string/name.php
  • Date Modified: 02/11/2019 2:36 PM
  • File size: 378 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?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;
	}
}