• File: description.php
  • Full Path: /home/dealkatnwc/www/wp-content/plugins/types/application/models/wpml/field/group/string/description.php
  • Date Modified: 02/11/2019 2:36 PM
  • File size: 397 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php


class Types_Wpml_Field_Group_String_Description extends Types_Wpml_Field_Group_String {
	const DB_NAME_PATTERN = 'group %s description';

	public function __construct( Types_Field_Group $group ) {
		parent::__construct( $group );
		$this->string_to_translate = stripslashes( $this->group->get_description() );
	}

	protected function get_db_pattern() {
		return self::DB_NAME_PATTERN;
	}
}