Accounts: Link List Templates
Top  Previous  Next

These internal templates are used within <!-- PLUGIN:BODY --> in the bidding account manager when the "List Links" link is clicked. Drawing out the list of links that the advertiser can manage is actually a merge of 2 internal templates ...

Link List:
This is the "wrapper" around the link list. By default, it's a simple table, but you can change it into a form, or whatever you want.  
 
Variables Understood:  
<<LISTINGS>> - This is where the list of links will show up.  
 
Example:  
 
<TABLE BGCOLOR="black" CELLSPACING=1 CELLPADDING=5>  
  <TR BGCOLOR="#efefef">  
     <TH>Listing</TH>  
     <TH COLSPAN=4>Actions</TH>  
  </TR>  
  <<LISTINGS>>  
</TABLE>  


Link List Detail:
This template is used to draw each link in the list, and is inserted into the space designated by "<<LISTINGS>>" in the above template. This template is evaluated for each link.  
 
Variables Understood:  
<<ID>> - The link ID  
<<TITLE>> - The title of the current link  
<<BIDS_LINK>> - The URL to the bid screen for this link  
<<DELETE_LINK>> - The URL to delete the link  
<<EDIT_LINK>> - The URL to edit the link's settings  
<<SPONSORBOX_LINK>> - The URL to let the bidder rent keywords for sponsor box display (different from keyword bidding)  
 
Example:  
 
<tr bgcolor="white">  
  <td><<TITLE>></td>  
  <td>  
     <a href="<<BIDS_LINK>>">Manage Bids</a>  
  </td>  
  <td>  
     <a href="<<SPONSORBOX_LINK>>">Rent Sponsor Boxes</a>  
  </td>  
  <td>  
     <a href="<<EDIT_LINK>>">Edit</a>  
  </td>  
  <td>  
     <a href="<<DELETE_LINK>>">Delete</a>  
  </td>  
</tr>