]> 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 097e92ca55fcc62c04dbb0f859d554cfd9db7dbe..ca706fca16c4022d37ff4b166acb1807f90a25b5 100644 (file)
@@ -40,7 +40,7 @@ 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;
@@ -55,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
         *
@@ -66,6 +73,9 @@ class Translation_Entry {
                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 ) );