]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-includes/pomo/entry.php
WordPress 4.3
[autoinstalls/wordpress.git] / wp-includes / pomo / entry.php
index bb146a7d3e09c2551d909f7ac5ab6012d42321c4..ca706fca16c4022d37ff4b166acb1807f90a25b5 100644 (file)
@@ -2,12 +2,12 @@
 /**
  * Contains Translation_Entry class
  *
- * @version $Id: entry.php 13 2008-04-21 12:03:37Z nbachiyski $
+ * @version $Id: entry.php 718 2012-10-31 00:32:02Z nbachiyski $
  * @package pomo
  * @subpackage entry
  */
 
-
+if ( !class_exists( 'Translation_Entry' ) ):
 /**
  * Translation_Entry class encapsulates a translatable string
  */
@@ -40,17 +40,14 @@ class Translation_Entry {
         *      - references (array) -- places in the code this strings is used, in relative_to_root_path/file.php:linenum form
         *      - flags (array) -- flags like php-format
         */
-       function Translation_Entry($args=array()) {
+       function __construct( $args = array() ) {
                // if no singular -- empty object
                if (!isset($args['singular'])) {
                        return;
                }
                // get member variable values from args hash
-               $object_varnames = array_keys(get_object_vars($this));
                foreach ($args as $varname => $value) {
-                       if (in_array($varname, $object_varnames)) {
-                               $this->$varname = $value;
-                       }
+                       $this->$varname = $value;
                }
                if (isset($args['plural'])) $this->is_plural = true;
                if (!is_array($this->translations)) $this->translations = array();
@@ -58,6 +55,13 @@ class Translation_Entry {
                if (!is_array($this->flags)) $this->flags = array();
        }
 
+       /**
+        * PHP4 constructor.
+        */
+       public function Translation_Entry( $args = array() ) {
+               self::__construct( $args );
+       }
+
        /**
         * Generates a unique key for this entry
         *
@@ -68,5 +72,17 @@ class Translation_Entry {
                // prepend context and EOT, like in MO files
                return is_null($this->context)? $this->singular : $this->context.chr(4).$this->singular;
        }
+
+       /**
+        * @param object $other
+        */
+       function merge_with(&$other) {
+               $this->flags = array_unique( array_merge( $this->flags, $other->flags ) );
+               $this->references = array_unique( array_merge( $this->references, $other->references ) );
+               if ( $this->extracted_comments != $other->extracted_comments ) {
+                       $this->extracted_comments .= $other->extracted_comments;
+               }
+
+       }
 }
-?>
+endif;
\ No newline at end of file