Merge "HTMLForm: Don't render 'mw-htmlform-submit-buttons' if there aren't any buttons"
[lhc/web/wiklou.git] / includes / LinkTarget.php
index 8246f7d..b7132a8 100644 (file)
@@ -44,4 +44,14 @@ interface LinkTarget {
         */
        public function getText();
 
+       /**
+        * Creates a new LinkTarget for a different fragment of the same page.
+        * It is expected that the same type of object will be returned, but the
+        * only requirement is that it is a LinkTarget.
+        *
+        * @param string $fragment The fragment name, or "" for the entire page.
+        *
+        * @return LinkTarget
+        */
+       public function createFragmentTarget( $fragment );
 }