]> git.llucax.com Git - mecon/meconlib.git/commitdiff
Se agrega la posibilidad de elegir la posicion en la cual se agrega contenido al...
authorMartín Marrese <marrese@gmail.com>
Mon, 22 Mar 2004 20:14:00 +0000 (20:14 +0000)
committerMartín Marrese <marrese@gmail.com>
Mon, 22 Mar 2004 20:14:00 +0000 (20:14 +0000)
lib/MECON/HTML/Link.php

index 1252dffb9641e9f39c5b621bbb6e449da5dbe30d..d0131311b261c0422ec34d5fb960c81a5af2bced 100644 (file)
@@ -193,13 +193,19 @@ If they doesn't exists, they are added, if they exists, they are updated.
      * Adds contents to the link.
      *
      * @param  mixed &$contents Contents to add. Can be an object with a toHtml() method.
+     * @param  bool  $front     Tells where to put the new content.
      *
      * @return void
      * @access public
      */
-    function addContents($contents)
+    function addContents($contents, $front = false)
     {
-        $this->_contents[] = $contents;
+        if ($front) {
+            array_unshift($this->_contents, $contents);
+        }
+        else {
+            $this->_contents[] = $contents;
+        }
     }
 
     /**