芝麻web文件管理V1.00
编辑当前文件:/home/pulsehostuk9/public_html/cloud.pulsehost.co.uk/modules/Mail/Classes/MessageCollection.php
clear(); } /** * Removes all messages from the collection. * * @return MessageCollection */ public function clear() { parent::clear(); $this->MessageCount = 0; $this->MessageUnseenCount = 0; $this->MessageResultCount = 0; $this->FolderName = ''; $this->Offset = 0; $this->Limit = 0; $this->Search = ''; $this->Filters = ''; $this->UidNext = ''; $this->FolderHash = ''; $this->Uids = array(); $this->New = array(); return $this; } /** * Creates new instance of the object. * * @return MessageCollection */ public static function createInstance() { return new self(); } public function toResponseArray($aParameters = array()) { return array_merge( \Aurora\System\Managers\Response::CollectionToResponseArray($this, $aParameters), array( 'Uids' => $this->Uids, 'UidNext' => $this->UidNext, 'FolderHash' => $this->FolderHash, 'MessageCount' => $this->MessageCount, 'MessageUnseenCount' => $this->MessageUnseenCount, 'MessageResultCount' => $this->MessageResultCount, 'FolderName' => $this->FolderName, 'Offset' => $this->Offset, 'Limit' => $this->Limit, 'Search' => $this->Search, 'Filters' => $this->Filters, 'New' => $this->New ) ); } }