/**
* Topseller action for getting topsellers
* by category with perPage filtering
*
* @return void
*/
public function topSellerAction() { $perPage =
(int) $this->
Request()->
getParam('perPage', 4
);
$this->
View()->
assign('sCharts',
$this->container->
get('modules'
)->
Articles()->
sGetArticleCharts( $this->
Request()->
getParam('sCategory'
) ));
$this->
View()->
assign('perPage',
$perPage);
} /**
* @return void
*/
public function productsAction() { $numbers =
$this->
Request()->
getParam('numbers'
);