File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed
application/Modules/Web/Articles/Controller Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change 88
99namespace JetApplicationModule \Web \Articles ;
1010
11+ use Jet \Debug ;
1112use JetApplication \Content_Article ;
1213
1314use Jet \Http_Headers ;
@@ -107,6 +108,9 @@ function( $page_no ) {
107108 return MVC ::getPage ()->getURLPath ( ['page: ' . $ page_no ] );
108109 }
109110 );
111+
112+ Debug::varDump ( $ paginator , 'Paginator 1 ' );
113+ Debug::varDump ( $ page_no , 'Page NO ' );
110114
111115 $ paginator ->setDataSource ( Content_Article::getListForCurrentLocale () );
112116
@@ -129,7 +133,13 @@ function( $page_no ) {
129133 $ this ->view ->setVar ( 'paginator ' , $ paginator );
130134
131135 $ this ->output ( 'list ' );
132-
136+
137+ Debug::varDump ( $ articles_list );
138+ Debug::varDump ([
139+ 'a ' => 'aaaaa ' ,
140+ 'b ' => 'bbbbb ' ,
141+ 1 => null
142+ ] );
133143 }
134144
135145 /**
You can’t perform that action at this time.
0 commit comments