コード例 #1
0
ファイル: Toolbar.php プロジェクト: pradeep-wagento/magento2
 /**
  * Return current page from request
  *
  * @return int
  */
 public function getCurrentPage()
 {
     return $this->_toolbarModel->getCurrentPage();
 }
コード例 #2
0
ファイル: ToolbarTest.php プロジェクト: Doability/magento2dev
 public function testGetCurrentPageNoParam()
 {
     $this->requestMock->expects($this->once())->method('getParam')->with(Toolbar::PAGE_PARM_NAME)->will($this->returnValue(false));
     $this->assertEquals(1, $this->toolbarModel->getCurrentPage());
 }