Home
XtGem-
Templates-
XtScript-
Translate this page
Unavailable
Microsoft
®
Translator
Check out this page in {0} translated from {1}
translated from
Original:
Translated:
Automatic translation powered by Microsoft® Translator
Start translating
Stop translating
Close
Close and show original page
Select
Main Index
Predefined Functions
Scripts
Xtforum post
Short Url
custom paging
Xtgems blog filelist and paged content functions
can use paging customised by a special Xtscript function
The xtscript custom paging function is called once for each page in the content
it must go in a code block ABOVE the function being paged
Example code
Show as text
<!--parser:xtscript--> # Paging function function paging_template $url;$page;$active_page;$total_pages; # Only one page so exit if $total_pages == 1 return endif # Paging container if $page == 1 print <div class="custom_paging"> # First page button if $page == $active_page print <span>«</span> elseif $page == 1 print <a href="$url">«</a> endif # Previous four pages buttons if ($page+1) == $active_page or ($page+2) == $active_page or ($page+3) == $active_page or ($page+4) == $active_page print <a href="$url">$page</a> endif # Current page button if $page == $active_page print <span>$page</span> endif # Next four pages buttons if ($page-1) == $active_page or ($page-2) == $active_page or ($page-3) == $active_page or ($page-4) == $active_page print <a href="$url">$page</a> endif # Last page button if not $page == $total_pages goto @skip endif if $page==$active_page print <span>»</span></div> else print <a href="$url">»</a></div> endif @skip endfunction <!--/parser:xtscript-->
Show as text
Example output
Reload
Paged content function
Test page 1
«
1
2
3
»
Filelist function
20th.mid
3D_GOLD_NOKIA.sis
BOOKOSBI.TTF
BlueCrystal.nth
Crazy_Frog-740.mp3
«
1
2
3
4
5
»
Css used in demo
.custom_paging { display:inline-block; border:3px double #7070a0; border-radius:3px; padding:1px; margin:1px; color:#ccc !important; background:#555; } .custom_paging span { display:inline-block; text-align:center; border:3px double #7070a0; color:#ccc !important; background:#999; border-radius:6px; padding:0 1px; margin:0px; } .custom_paging a { display:inline-block; text-align:center; border:3px double #7070a0; color:#000 !important; background:#999; border-radius:6px; padding:0 1px; margin:0px; }
Quick index
assign
basic syntax
comments
concatenation
cookies
custom paging
debugging tools
del
delete
get
goto
if
if and
if elseif
if not or
if not or not
if or
includes
js in xtscript
print
return
source
user defined functions
var
xt files
xtfunctions in xtscript
About us
Contact
Forum