final move of files
[web.mtrack] / MTrack / Interface / WikiLinkHandler.php
1 <?php
2
3 /**
4  * This handles link creation for the wiki..
5  * 
6  * it get's registered by MTrackWeb as the link handler..
7  * 
8  */
9
10 interface MTrack_Interface_WikiLinkHandler /// implements MTrack_Interface_LinkHandler
11 {
12     
13  
14     function ticket($ticket, $opts); 
15
16     function milestone(  $target, $label); 
17      
18     
19     function help($target, $label, $anchor = ''); 
20     
21     function username($target, $opts); 
22                 
23     function browse($target, $label); 
24     function log($target, $label) ; 
25     
26     function branch($branch, $repo = null); 
27         
28       
29     
30     function changeset($cs, $repo = null); 
31     function wiki($pagename, $extras = array()); 
32
33     // all these are prtty much the same..    
34     function query($target, $label) ; 
35     function report($target, $label) ; 
36 }