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


PHP EmailUI::preflightUser方法代码示例

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


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

示例1: testCreationOnDeletedInboundFolder

 /**
  * Test to ensure that whenever the inboud folder is deleted, it will be created for a user
  * and the parent_id for the other folders will be updated accordingly.
  *
  */
 public function testCreationOnDeletedInboundFolder()
 {
     $this->createNewSugarFolder();
     // Call preflightUser() to re-create all folders
     $emailUI = new EmailUI();
     $emailUI->preflightUser($GLOBALS['current_user']);
     $error_message = "Unable to get user folders";
     $rootNode = new ExtNode('', '');
     // Delete one folder type
     $GLOBALS['db']->query("DELETE FROM folders WHERE folder_type = 'inbound' AND created_by='{$GLOBALS['current_user']->id}'");
     // Retrieve folders
     $ret = $this->folder->getUserFolders($rootNode, "", $GLOBALS['current_user'], true);
     $this->assertEquals(0, count($ret), $error_message);
     // Call preflightUser() to re-create missing folder
     $emailUI->preflightUser($GLOBALS['current_user']);
     // Retrieve folders
     $ret = $this->folder->getUserFolders($rootNode, "", $GLOBALS['current_user'], true);
     $this->assertEquals(1, count($ret));
     // Should contain all folders after preflightUser
     $folderTypes = array();
     foreach ($ret[0]['children'] as $p) {
         $folderTypes[] = $p['folder_type'];
     }
     $this->assertContains("draft", $folderTypes);
 }
开发者ID:thsonvt,项目名称:sugarcrm_dev,代码行数:30,代码来源:Bug62883Test.php

示例2: testGetListItemsForEmailXML

 /**
  * Test retreiving a list of emails for a particular folder.
  *
  */
 function testGetListItemsForEmailXML()
 {
     //Create the my Emails Folder
     $GLOBALS['mod_strings'] = return_module_language($GLOBALS['current_language'], "Emails");
     require_once 'modules/Emails/EmailUI.php';
     $emailUI = new EmailUI();
     $emailUI->preflightUser($GLOBALS['current_user']);
     $error_message = "Unable to get list items for email.";
     $rootNode = new ExtNode('', '');
     $folderOpenState = "";
     $ret = $this->folder->getUserFolders($rootNode, $folderOpenState, $GLOBALS['current_user'], true);
     $this->assertEquals(1, count($ret), $error_message);
     $folderID = $ret[0]['id'];
     //Create the Email Object
     $emailParams = array('status' => 'unread', 'assigned_user_id' => $GLOBALS['current_user']->id);
     $email = $this->_createEmailObject($emailParams);
     $this->emails[] = $email->id;
     //Add Email Object to My Email Folder
     $my_email = new SugarFolder();
     $my_email->retrieve($folderID);
     $my_email->addBean($email, $GLOBALS['current_user']);
     //Make sure the email was added to the folder.
     $emailExists = $my_email->checkEmailExistForFolder($email->id);
     $this->assertTrue($emailExists, $error_message);
     //Get the list of emails.
     $emailList = $my_email->getListItemsForEmailXML($folderID);
     $this->assertEquals($email->id, $emailList['out'][0]['uid'], $error_message);
 }
开发者ID:jgera,项目名称:sugarcrm_dev,代码行数:32,代码来源:SugarFoldersTest.php


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