PATH:
var
/
www
/
clients
/
client1
/
web1
/
web
/
wp-content
/
wpml-string-translation
/
classes
/
db-mappers
<?php class WPML_ST_Models_String { /** @var string */ private $language; /** @var string */ private $domain; /** @var string */ private $context; /** @var string */ private $value; /** @var int */ private $status; /** @var string */ private $name; /** @var string */ private $domain_name_context_md5; /** * @param string $language * @param string $domain * @param string $context * @param string $value * @param int $status * @param string|null $name */ public function __construct( $language, $domain, $context, $value, $status, $name = null ) { $this->language = (string) $language; $this->domain = (string) $domain; $this->context = (string) $context; $this->value = (string) $value; $this->status = (int) $status; if ( ! $name ) { $name = md5( $value ); } $this->name = (string) $name; $this->domain_name_context_md5 = md5( $domain . $name . $context ); } /** * @return string */ public function get_language() { return $this->language; } /** * @return string */ public function get_domain() { return $this->domain; } /** * @return string */ public function get_context() { return $this->context; } /** * @return string */ public function get_value() { return $this->value; } /** * @return int */ public function get_status() { return $this->status; } /** * @return string */ public function get_name() { return $this->name; } /** * @return string */ public function get_domain_name_context_md5() { return $this->domain_name_context_md5; } }
[-] Update.php
[edit]
[-] class-wpml-st-db-mappers-strings.php
[edit]
[-] class-wpml-st-db-mappers-string-positions.php
[edit]
[-] wpml-st-word-count-package-records.php
[edit]
[-] StringTranslations.php
[edit]
[-] class-wpml-st-models-string.php
[edit]
[-] StringsRetrieve.php
[edit]
[-] wpml-st-word-count-string-records.php
[edit]
[-] class-wpml-st-bulk-strings-insert.php
[edit]
[-] class-wpml-st-models-string-translation.php
[edit]
[+]
..
[-] class-wpml-st-bulk-update-strings-status.php
[edit]
[-] Hooks.php
[edit]
[-] DomainsRepository.php
[edit]