當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Call::get_list_view_data方法代碼示例

本文整理匯總了PHP中Call::get_list_view_data方法的典型用法代碼示例。如果您正苦於以下問題:PHP Call::get_list_view_data方法的具體用法?PHP Call::get_list_view_data怎麽用?PHP Call::get_list_view_data使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Call的用法示例。


在下文中一共展示了Call::get_list_view_data方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: testget_list_view_data

 public function testget_list_view_data()
 {
     $call = new Call();
     $current_theme = SugarThemeRegistry::current();
     $call->assigned_user_id = 1;
     $call->created_by = 1;
     $call->modified_user_id = 1;
     //execute the method and verify that it retunrs expected results
     $expected = array('MODIFIED_USER_ID' => 1, 'CREATED_BY' => 1, 'DELETED' => 0, 'ASSIGNED_USER_ID' => 1, 'STATUS' => 'Planned', 'REMINDER_TIME' => '-1', 'EMAIL_REMINDER_TIME' => '-1', 'EMAIL_REMINDER_SENT' => '0', 'REPEAT_INTERVAL' => '1', 'SET_COMPLETE' => '~' . preg_quote('<a id=\'\' onclick=\'SUGAR.util.closeActivityPanel.show("Calls","","Held","listview","1");\'><img src="themes/' . $current_theme . '/images/close_inline.png?v=') . '[\\w-]+' . preg_quote('"     border=\'0\' alt="Close" /></a>') . '~', 'DATE_START' => '<font class=\'overdueTask\'></font>', 'CONTACT_ID' => null, 'CONTACT_NAME' => null, 'PARENT_NAME' => '', 'REMINDER_CHECKED' => false, 'EMAIL_REMINDER_CHECKED' => false);
     $actual = $call->get_list_view_data();
     foreach ($expected as $expectedKey => $expectedVal) {
         if ($expectedKey == 'SET_COMPLETE') {
             $this->assertRegExp($expected[$expectedKey], $actual[$expectedKey]);
         } else {
             $this->assertSame($expected[$expectedKey], $actual[$expectedKey]);
         }
     }
     $this->assertEquals('Administrator', $call->assigned_user_name);
     $this->assertEquals('Administrator', $call->created_by_name);
     $this->assertEquals('Administrator', $call->modified_by_name);
 }
開發者ID:recci,項目名稱:SuiteCRM,代碼行數:21,代碼來源:CallTest.php


注:本文中的Call::get_list_view_data方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。