當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。