当前位置: 首页>>代码示例>>PHP>>正文


PHP Dashboard::getCount方法代码示例

本文整理汇总了PHP中Dashboard::getCount方法的典型用法代码示例。如果您正苦于以下问题:PHP Dashboard::getCount方法的具体用法?PHP Dashboard::getCount怎么用?PHP Dashboard::getCount使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Dashboard的用法示例。


在下文中一共展示了Dashboard::getCount方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: testDeleteDashboardAndRelatedPortlets

 /**
  * testGetRowsByUserId
  */
 public function testDeleteDashboardAndRelatedPortlets()
 {
     Yii::app()->user->userModel = User::getByUsername('billy');
     $dashboardCount = Dashboard::getCount();
     $this->assertTrue($dashboardCount > 0);
     $user = User::getByUserName('billy');
     Yii::app()->user->userModel = $user;
     $dashboard = new Dashboard();
     $dashboard->name = "Dashboard TESTING";
     $dashboard->layoutId = 3;
     $dashboard->owner = $user;
     $dashboard->layoutType = '100';
     $dashboard->isDefault = false;
     $this->assertTrue($dashboard->save());
     $this->assertEquals(Portlet::getCount(), 0);
     $this->assertEquals(Dashboard::getCount(), $dashboardCount + 1);
     for ($i = 1; $i <= 3; $i++) {
         $portlet = new Portlet();
         $portlet->column = 1;
         $portlet->position = 1 + $i;
         $portlet->layoutId = 'TEST' . $dashboard->layoutId;
         $portlet->collapsed = false;
         $portlet->viewType = 'TasksMyList';
         $portlet->user = $user;
         $this->assertTrue($portlet->save());
     }
     $this->assertEquals(Portlet::getCount(), 3);
     $portlets = Portlet::getByLayoutIdAndUserSortedById('TEST' . $dashboard->layoutId, $user->id);
     foreach ($portlets as $portlet) {
         $portlet->delete();
     }
     $dashboard->delete();
     $this->assertEquals(Portlet::getCount(), 0);
     $this->assertEquals(Dashboard::getCount(), $dashboardCount);
 }
开发者ID:RamaKavanan,项目名称:InitialVersion,代码行数:38,代码来源:DashboardTest.php

示例2: testCreateAndEditDashboardByChangingLayoutType

 public function testCreateAndEditDashboardByChangingLayoutType()
 {
     $super = $this->logoutCurrentUserLoginNewUserAndGetByUsername('super');
     $dashboardCount = Dashboard::getCount();
     //Add new dashboard using dashboard add action
     $this->resetGetArray();
     $this->setPostArray(array('Dashboard' => array('name' => 'myDataDashboard', 'layoutType' => '50,50')));
     // Not Coding Standard
     $this->runControllerWithRedirectExceptionAndGetContent('home/default/createDashboard');
     $dashboards = Dashboard::getAll();
     $this->assertEquals(intval($dashboardCount + 1), count($dashboards));
     $myDataDashboard = $dashboards[$dashboardCount];
     $this->assertEquals('myDataDashboard', $myDataDashboard->name);
     $this->assertEquals($super, $myDataDashboard->owner);
     $this->assertEquals('50,50', $myDataDashboard->layoutType);
     // Not Coding Standard
     //Add portlet on 2nd column of recently added dashboard
     $uniqueLayoutId = 'HomeDashboard' . $myDataDashboard->layoutId;
     $this->setGetArray(array('dashboardId' => $myDataDashboard->id, 'portletType' => 'ContactsMyList', 'uniqueLayoutId' => $uniqueLayoutId));
     $this->resetPostArray();
     $this->runControllerWithRedirectExceptionAndGetContent('home/defaultPortlet/add');
     //Edit dashboard and change it to one column layout
     $this->resetGetArray();
     $this->setGetArray(array('id' => $myDataDashboard->id));
     $this->runControllerWithNoExceptionsAndGetContent('home/default/editDashboard');
     $this->setPostArray(array('Dashboard' => array('layoutType' => '100')));
     $editActionContent = $this->runControllerWithRedirectExceptionAndGetContent('home/default/editDashboard');
     $this->assertNotContains('Undefined variable: maxPositionInColumn1', $editActionContent);
     $this->resetGetArray();
     $this->setGetArray(array('id' => $myDataDashboard->id));
     $this->resetPostArray();
     $this->runControllerWithNoExceptionsAndGetContent('home/default/dashboardDetails');
     $this->assertNotContains('Undefined offset: 2', $editActionContent);
 }
开发者ID:RamaKavanan,项目名称:InitialVersion,代码行数:34,代码来源:HomeSuperUserWalkthroughTest.php


注:本文中的Dashboard::getCount方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。