Changeset 1417007
- Timestamp:
- 05/14/2016 02:42:52 PM (10 years ago)
- Location:
- katracker/trunk
- Files:
-
- 2 edited
-
README.txt (modified) (1 diff)
-
katracker.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
katracker/trunk/README.txt
r1416933 r1417007 38 38 Note that torrents view best in list view and not in grid view. 39 39 40 = Requirements = 41 * php 5.3 or later 42 40 43 = View uploaded torrents = 41 44 To view a single torrent use the [torrent] shortcode, you can tweak the shortcode with the following attributes: 42 <ul> 43 <li>id=(torrent id) *required</li> 44 <li>stats=(1 or 0, shows torrent stats)</li> 45 <li>files=(1 or 0, shows a torrent file list)</li> 46 </ul> 45 <ul><li>id=(torrent id) *required</li> 46 <li>stats=(1 or 0, shows torrent stats)</li> 47 <li>files=(1 or 0, shows a torrent file list)</li></ul> 47 48 48 49 To view a list of uploaded torrents, use the [torrents] shortcode: 49 50 50 <ul> 51 <li>id=(list of torrent ids seperated by commas)</li> 52 <li>category=(if set, lists the torrents in a specific category, otherwise lists all categories)</li> 53 <li>stats=(1 or 0, shows torrent stats)</li> 54 <li>files=(1 or 0, shows a torrent file list)</li> 55 </ul> 51 <ul><li>id=(list of torrent ids seperated by commas)</li> 52 <li>category=(if set, lists the torrents in a specific category, otherwise lists all categories)</li> 53 <li>stats=(1 or 0, shows torrent stats)</li> 54 <li>files=(1 or 0, shows a torrent file list)</li></ul> 56 55 By default shows all enabled torrents. 57 56 -
katracker/trunk/katracker.php
r1416912 r1417007 81 81 unset( $current, $katracker_slug ); 82 82 83 load_plugin_textdomain( 'katracker' );83 load_plugin_textdomain( 'katracker', false, dirname( plugin_basename(__FILE__) ) . '/lang/' ); 84 84 85 85 // Check if there is a tracker page, and set it's link according to the main tracker link
Note: See TracChangeset
for help on using the changeset viewer.