Home
last modified time | relevance | path

Searched refs:attachmentIds (Results 1 – 25 of 31) sorted by relevance

12

/dports/finance/prestashop/prestashop/src/Core/Domain/Product/Command/
H A DSetAssociatedProductAttachmentsCommand.php48 private $attachmentIds; variable in PrestaShop\\PrestaShop\\Core\\Domain\\Product\\Command\\SetAssociatedProductAttachmentsCommand
52 * @param int[] $attachmentIds
54 public function __construct(int $productId, array $attachmentIds) argument
57 $this->setAttachmentIds($attachmentIds);
73 return $this->attachmentIds;
77 * @param int[] $attachmentIds
79 private function setAttachmentIds(array $attachmentIds): void argument
81 if (empty($attachmentIds)) {
89 foreach ($attachmentIds as $attachmentId) {
90 $this->attachmentIds[] = new AttachmentId($attachmentId);
/dports/finance/prestashop/prestashop/src/Core/Domain/Attachment/Command/
H A DBulkDeleteAttachmentsCommand.php39 private $attachmentIds; variable in PrestaShop\\PrestaShop\\Core\\Domain\\Attachment\\Command\\BulkDeleteAttachmentsCommand
42 * @param int[] $attachmentIds
44 public function __construct(array $attachmentIds) argument
46 $this->setAttachmentIds($attachmentIds);
54 return $this->attachmentIds;
58 * @param array $attachmentIds
60 private function setAttachmentIds(array $attachmentIds) argument
62 foreach ($attachmentIds as $attachmentId) {
63 $this->attachmentIds[] = new AttachmentId($attachmentId);
/dports/finance/prestashop/prestashop/src/Core/Domain/Attachment/Exception/
H A DBulkDeleteAttachmentsException.php39 private $attachmentIds; variable in PrestaShop\\PrestaShop\\Core\\Domain\\Attachment\\Exception\\BulkDeleteAttachmentsException
42 * @param int[] $attachmentIds
47 …public function __construct(array $attachmentIds, $message = '', $code = 0, ?Exception $previous =… argument
51 $this->attachmentIds = $attachmentIds;
59 return $this->attachmentIds;
/dports/finance/prestashop/prestashop/src/PrestaShopBundle/Controller/Admin/Sell/Catalog/
H A DAttachmentController.php240 $attachmentIds = $this->getBulkAttachmentsFromRequest($request);
243 $this->getCommandBus()->handle(new BulkDeleteAttachmentsCommand($attachmentIds));
333 $attachmentIds = $request->request->get('attachment_files_bulk');
335 if (!is_array($attachmentIds)) {
339 foreach ($attachmentIds as $i => $attachmentId) {
340 $attachmentIds[$i] = (int) $attachmentId;
343 return $attachmentIds;
/dports/mail/nextcloud-mail/mail/lib/IMAP/
H A DMessageMapper.php484 ?array $attachmentIds = []): array { argument
497 $partsQuery = $this->buildAttachmentsPartsQuery($structure, $attachmentIds);
535 * @param array|null $attachmentIds
541 ?array $attachmentIds = []): array { argument
554 $partsQuery = $this->buildAttachmentsPartsQuery($structure, $attachmentIds);
592 * @param array $attachmentIds
595 …private function buildAttachmentsPartsQuery($structure, array $attachmentIds) : Horde_Imap_Client_… argument
604 if (!empty($attachmentIds) && !in_array($part->getMIMEId(), $attachmentIds, true)) {
/dports/finance/prestashop/prestashop/src/Adapter/Product/Update/
H A DProductAttachmentUpdater.php102 * @param AttachmentId[] $attachmentIds
107 public function setAttachments(ProductId $productId, array $attachmentIds): void argument
114 foreach ($attachmentIds as $attachmentId) {
/dports/www/sogo/SOGo-5.4.0/UI/MailPartViewers/
H A DUIxMailPartViewer.h58 NSDictionary *attachmentIds; variable
72 - (NSDictionary *) attachmentIds;
H A DUIxMailPartEncryptedViewer.m311 [(id)attachmentIds setObject: [NSString stringWithFormat: @"%@%@%@",
402 // attachmentIds is empty in an ecrypted email as the IMAP body structure
405 [viewer setAttachmentIds: attachmentIds];
448 // attachmentIds is empty in an ecrypted email as the IMAP body structure
451 [viewer setAttachmentIds: attachmentIds];
H A DUIxMailPartViewer.m53 attachmentIds = nil;
200 - (NSDictionary *) attachmentIds
202 return attachmentIds;
212 attachmentIds = newAttachmentIds;
H A DUIxMailPartTNEFViewer.m55 [(id)attachmentIds setObject: [NSString stringWithFormat: @"%@%@%@",
117 [viewer setAttachmentIds: attachmentIds];
H A DUIxMailPartHTMLViewer.m115 NSDictionary *attachmentIds; field
154 attachmentIds = nil;
181 attachmentIds = newAttachmentIds;
497 value = [attachmentIds objectForKey: cid];
787 [handler setAttachmentIds: attachmentIds];
936 [handler setAttachmentIds: attachmentIds];
H A DUIxMailPartMixedViewer.m127 [viewer setAttachmentIds: attachmentIds];
/dports/www/sogo-activesync/SOGo-5.4.0/UI/MailPartViewers/
H A DUIxMailPartViewer.h58 NSDictionary *attachmentIds; variable
72 - (NSDictionary *) attachmentIds;
H A DUIxMailPartEncryptedViewer.m311 [(id)attachmentIds setObject: [NSString stringWithFormat: @"%@%@%@",
402 // attachmentIds is empty in an ecrypted email as the IMAP body structure
405 [viewer setAttachmentIds: attachmentIds];
448 // attachmentIds is empty in an ecrypted email as the IMAP body structure
451 [viewer setAttachmentIds: attachmentIds];
H A DUIxMailPartViewer.m53 attachmentIds = nil;
200 - (NSDictionary *) attachmentIds
202 return attachmentIds;
212 attachmentIds = newAttachmentIds;
H A DUIxMailPartTNEFViewer.m55 [(id)attachmentIds setObject: [NSString stringWithFormat: @"%@%@%@",
117 [viewer setAttachmentIds: attachmentIds];
H A DUIxMailPartHTMLViewer.m115 NSDictionary *attachmentIds; field
154 attachmentIds = nil;
181 attachmentIds = newAttachmentIds;
497 value = [attachmentIds objectForKey: cid];
787 [handler setAttachmentIds: attachmentIds];
936 [handler setAttachmentIds: attachmentIds];
H A DUIxMailPartMixedViewer.m127 [viewer setAttachmentIds: attachmentIds];
/dports/www/sogo/SOGo-5.4.0/UI/MailerUI/
H A DUIxMailView.m205 NSMutableDictionary *attachmentIds;
220 attachmentIds = [NSMutableDictionary dictionaryWithCapacity: max];
225 [attachmentIds setObject: [attributes objectForKey: @"url"]
228 [attachmentIds setObject: [attributes objectForKey: @"url"]
233 [viewer setAttachmentIds: attachmentIds];
331 viewer = [self contentViewerComponent]; // set attachmentIds for common parts
332 renderedPart = [viewer renderedPart]; // set attachmentIds for encrypted & TNEF parts
/dports/www/sogo-activesync/SOGo-5.4.0/UI/MailerUI/
H A DUIxMailView.m205 NSMutableDictionary *attachmentIds;
220 attachmentIds = [NSMutableDictionary dictionaryWithCapacity: max];
225 [attachmentIds setObject: [attributes objectForKey: @"url"]
228 [attachmentIds setObject: [attributes objectForKey: @"url"]
233 [viewer setAttachmentIds: attachmentIds];
331 viewer = [self contentViewerComponent]; // set attachmentIds for common parts
332 renderedPart = [viewer renderedPart]; // set attachmentIds for encrypted & TNEF parts
/dports/www/orangehrm/orangehrm-4.9/symfony/plugins/orangehrmPimPlugin/lib/service/
H A DEmployeeService.php672 * @param array $attachmentIds Array of attachement IDs. Optional.
678 public function deleteEmployeeAttachments($empNumber, $attachmentIds = null) { argument
679 return $this->getEmployeeDao()->deleteEmployeeAttachments($empNumber, $attachmentIds);
/dports/mail/nextcloud-mail/mail/lib/Controller/
H A DMessagesController.php594 $attachmentIds = array_map(function ($a) {
598 $attachmentIds = [$attachmentId];
601 foreach ($attachmentIds as $aid) {
/dports/converters/wkhtmltopdf/qt-5db36ec/demos/mobile/qcamera/
H A Dmessagehandling.cpp127 QMessageContentContainerIdList attachments = message.attachmentIds(); in processIncomingMMS()
/dports/www/sogo2/SOGo-2.4.1/UI/MailPartViewers/
H A DUIxMailPartHTMLViewer.m117 NSDictionary *attachmentIds; field
156 attachmentIds = nil;
183 attachmentIds = newAttachmentIds;
352 value = [attachmentIds objectForKey: cid];
/dports/www/sogo2/SOGo-2.4.1/SoObjects/Mailer/
H A DSOGoMailObject.m740 - (void) _feedFileAttachmentIds: (NSMutableDictionary *) attachmentIds
754 [attachmentIds setObject: url forKey: cid];
762 [self _feedFileAttachmentIds: attachmentIds
771 NSMutableDictionary *attachmentIds;
774 attachmentIds = [NSMutableDictionary dictionary];
780 [self _feedFileAttachmentIds: attachmentIds
784 return attachmentIds;

12