60 $this->CachedMultyFS =
get_package(
'cached_multy_fs' ,
'last' , __FILE__ );
61 $this->PageCSS =
get_package(
'page::page_css' ,
'last' , __FILE__ );
62 $this->PageJS =
get_package(
'page::page_js' ,
'last' , __FILE__ );
93 $this->PageJS->add_javascript(
"{http_host}/$Page/include/js/paginator3000.js" );
94 $this->PageCSS->add_stylesheet(
"{http_host}/$Page/res/css/paginator3000.css" );
128 $Code = $this->CachedMultyFS->get_template( __FILE__ ,
'paginator3000.tpl' );
129 $PlaceHolders = array(
130 '{id}' ,
'{page_count}' ,
'{visible_page_count}' ,
'{current_page}' ,
'{page_url}'
133 $Settings->get_setting(
'id' , md5( microtime(
true ) ) ) ,
134 $Settings->get_setting(
'page_count' ) ,
135 $Settings->get_setting(
'visible_page_count' , 10 ) ,
136 $Settings->get_setting(
'current_page' , 1 ) ,
137 $Settings->get_setting(
'page_url' )
140 return( str_replace( $PlaceHolders , $Values , $Code ) );
142 catch( Exception $e )