Home
last modified time | relevance | path

Searched refs:attachmentId (Results 1 – 25 of 175) sorted by relevance

1234567

/dports/www/nextcloud-deck/deck/lib/Controller/
H A DAttachmentController.php55 public function display($cardId, $attachmentId) { argument
56 if (strpos($attachmentId, ':') === false) {
59 [$type, $attachmentId] = explode(':', $attachmentId);
78 public function update($cardId, $attachmentId) { argument
79 if (strpos($attachmentId, ':') === false) {
82 [$type, $attachmentId] = explode(':', $attachmentId);
90 public function delete($cardId, $attachmentId) { argument
91 if (strpos($attachmentId, ':') === false) {
94 [$type, $attachmentId] = explode(':', $attachmentId);
103 if (strpos($attachmentId, ':') === false) {
[all …]
H A DAttachmentApiController.php61 public function display($cardId, $attachmentId, $type = 'deck_file') { argument
62 return $this->attachmentService->display($cardId, $attachmentId, $type);
82 public function update($cardId, $attachmentId, $data, $type = 'deck_file') { argument
83 $attachment = $this->attachmentService->update($cardId, $attachmentId, $data, $type);
93 public function delete($cardId, $attachmentId, $type = 'deck_file') { argument
94 $attachment = $this->attachmentService->delete($cardId, $attachmentId, $type);
104 public function restore($cardId, $attachmentId, $type = 'deck_file') { argument
105 $attachment = $this->attachmentService->restore($cardId, $attachmentId, $type);
/dports/net-im/signal-cli/signal-cli-0.9.0/lib/src/main/java/org/asamk/signal/manager/
H A DAttachmentStore.java20 final SignalServiceAttachmentRemoteId attachmentId, final AttachmentStorer storer in storeAttachmentPreview() argument
22 storeAttachment(getAttachmentPreviewFile(attachmentId), storer); in storeAttachmentPreview()
26 final SignalServiceAttachmentRemoteId attachmentId, final AttachmentStorer storer in storeAttachment() argument
28 storeAttachment(getAttachmentFile(attachmentId), storer); in storeAttachment()
38 private File getAttachmentPreviewFile(SignalServiceAttachmentRemoteId attachmentId) { in getAttachmentPreviewFile() argument
39 return new File(attachmentsPath, attachmentId.toString() + ".preview"); in getAttachmentPreviewFile()
42 public File getAttachmentFile(SignalServiceAttachmentRemoteId attachmentId) { in getAttachmentFile() argument
43 return new File(attachmentsPath, attachmentId.toString()); in getAttachmentFile()
/dports/mail/nextcloud-mail/mail/lib/
H A DAttachment.php36 * @param string $attachmentId
38 public function __construct($conn, $mailBox, $messageUid, $attachmentId) { argument
42 $this->attachmentId = $attachmentId;
57 private $attachmentId; variable in OCA\\Mail\\Attachment
66 $fetch_query->bodyPart($this->attachmentId);
67 $fetch_query->mimeHeader($this->attachmentId);
78 …$mimeHeaders = $fetch->getMimeHeader($this->attachmentId, Horde_Imap_Client_Data_Fetch::HEADER_PAR…
113 $body = $fetch->getBodyPart($this->attachmentId);
/dports/finance/prestashop/prestashop/src/PrestaShopBundle/Resources/config/routing/admin/sell/catalog/
H A Dattachment.yml28 path: /{attachmentId}/edit
35 id_attachment: attachmentId
37 attachmentId: \d+
40 path: /{attachmentId}/view
47 id_attachment: attachmentId
49 attachmentId: \d+
60 path: /{attachmentId}/delete
67 id_attachment: attachmentId
69 attachmentId: \d+
/dports/finance/prestashop/prestashop/src/Core/Domain/Attachment/Command/
H A DDeleteAttachmentCommand.php39 private $attachmentId; variable in PrestaShop\\PrestaShop\\Core\\Domain\\Attachment\\Command\\DeleteAttachmentCommand
42 * @param int $attachmentId
44 public function __construct(int $attachmentId) argument
46 $this->attachmentId = new AttachmentId($attachmentId);
54 return $this->attachmentId;
H A DEditAttachmentCommand.php39 private $attachmentId; variable in PrestaShop\\PrestaShop\\Core\\Domain\\Attachment\\Command\\EditAttachmentCommand
72 * @param AttachmentId $attachmentId
74 public function __construct(AttachmentId $attachmentId) argument
76 $this->attachmentId = $attachmentId;
84 return $this->attachmentId;
/dports/finance/prestashop/prestashop/src/Core/Domain/Attachment/Query/
H A DGetAttachment.php39 private $attachmentId; variable in PrestaShop\\PrestaShop\\Core\\Domain\\Attachment\\Query\\GetAttachment
42 * @param int $attachmentId
44 public function __construct(int $attachmentId) argument
46 $this->attachmentId = new AttachmentId($attachmentId);
54 return $this->attachmentId;
/dports/finance/prestashop/prestashop/src/Core/Domain/Product/Command/
H A DAssociateProductAttachmentCommand.php47 private $attachmentId; variable in PrestaShop\\PrestaShop\\Core\\Domain\\Product\\Command\\AssociateProductAttachmentCommand
51 * @param int $attachmentId
53 public function __construct(int $productId, int $attachmentId) argument
56 $this->attachmentId = new AttachmentId($attachmentId);
72 return $this->attachmentId;
/dports/finance/prestashop/prestashop/src/Core/Domain/Attachment/QueryResult/
H A DAttachmentInformation.php36 private $attachmentId; variable in PrestaShop\\PrestaShop\\Core\\Domain\\Attachment\\QueryResult\\AttachmentInformation
54 * @param int $attachmentId
59 public function __construct(int $attachmentId, string $name, string $fileName, string $type) argument
61 $this->attachmentId = $attachmentId;
72 return $this->attachmentId;
/dports/finance/prestashop/prestashop/src/Adapter/Attachment/
H A DAttachmentRepository.php43 * @param AttachmentId $attachmentId
50 public function get(AttachmentId $attachmentId): Attachment argument
54 $attachmentId->getValue(),
63 * @param AttachmentId $attachmentId
67 public function assertAttachmentExists(AttachmentId $attachmentId): void argument
69 …$this->assertObjectModelExists($attachmentId->getValue(), 'attachment', AttachmentNotFoundExceptio…
H A DAbstractAttachmentHandler.php111 * @param AttachmentId $attachmentId
117 protected function getAttachment(AttachmentId $attachmentId): Attachment argument
119 $attachmentIdValue = $attachmentId->getValue();
123 …entNotFoundException(sprintf('Attachment with id "%s" was not found.', $attachmentId->getValue()));
126 if ($attachment->id !== $attachmentId->getValue()) {
127 …entNotFoundException(sprintf('Attachment with id "%s" was not found.', $attachmentId->getValue()));
/dports/www/owncloud/owncloud/apps/files_external/3rdparty/google/apiclient-services/src/Google/Service/Mirror/Resource/
H A DTimelineAttachments.php32 * @param string $attachmentId The ID of the attachment.
35 public function delete($itemId, $attachmentId, $optParams = array()) argument
37 $params = array('itemId' => $itemId, 'attachmentId' => $attachmentId);
46 * @param string $attachmentId The ID of the attachment.
50 public function get($itemId, $attachmentId, $optParams = array()) argument
52 $params = array('itemId' => $itemId, 'attachmentId' => $attachmentId);
/dports/www/orangehrm/orangehrm-4.9/symfony/lib/vendor/google/apiclient-services/src/Google/Service/Mirror/Resource/
H A DTimelineAttachments.php32 * @param string $attachmentId The ID of the attachment.
35 public function delete($itemId, $attachmentId, $optParams = array()) argument
37 $params = array('itemId' => $itemId, 'attachmentId' => $attachmentId);
46 * @param string $attachmentId The ID of the attachment.
50 public function get($itemId, $attachmentId, $optParams = array()) argument
52 $params = array('itemId' => $itemId, 'attachmentId' => $attachmentId);
/dports/mail/nextcloud-mail/mail/lib/Service/Attachment/
H A DAttachmentStorage.php67 * @param int $attachmentId
74 public function save(string $userId, int $attachmentId, UploadedFile $uploadedFile): void { argument
77 $file = $folder->newFile((string) $attachmentId);
97 * @param int $attachmentId
101 public function retrieve(string $userId, int $attachmentId) { argument
105 return $folder->getFile((string) $attachmentId);
111 public function delete(string $userId, int $attachmentId): void { argument
/dports/finance/prestashop/prestashop/classes/webservice/
H A DWebserviceSpecificManagementAttachments.php58 protected $attachmentId; variable in WebserviceSpecificManagementAttachmentsCore
214 $this->getWsObject()->urlSegment[1] = $this->attachmentId;
255 $attachmentId = (int) $this->getWsObject()->urlSegment[2];
256 $attachment = new Attachment($attachmentId);
261 $attachmentId
277 $attachmentId
306 $attachmentId = null;
308 $attachmentId = (int) $this->getWsObject()->urlSegment[2];
311 $attachment = new Attachment($attachmentId);
344 $this->attachmentId = $attachment->id;
/dports/www/orangehrm/orangehrm-4.9/symfony/lib/vendor/google/apiclient-services/src/Google/Service/Gmail/
H A DMessagePartBody.php20 public $attachmentId; variable in Google_Service_Gmail_MessagePartBody
24 public function setAttachmentId($attachmentId) argument
26 $this->attachmentId = $attachmentId;
30 return $this->attachmentId;
/dports/www/owncloud/owncloud/apps/files_external/3rdparty/google/apiclient-services/src/Google/Service/Gmail/
H A DMessagePartBody.php20 public $attachmentId; variable in Google_Service_Gmail_MessagePartBody
24 public function setAttachmentId($attachmentId) argument
26 $this->attachmentId = $attachmentId;
30 return $this->attachmentId;
/dports/finance/prestashop/prestashop/src/Adapter/Product/Update/
H A DProductAttachmentUpdater.php69 * @param AttachmentId $attachmentId
74 … public function associateProductAttachment(ProductId $productId, AttachmentId $attachmentId): void argument
77 $this->attachmentRepository->assertAttachmentExists($attachmentId);
80 $attachmentIdValue = $attachmentId->getValue();
114 foreach ($attachmentIds as $attachmentId) {
115 $this->attachmentRepository->assertAttachmentExists($attachmentId);
116 $attachmentIdValues[] = $attachmentId->getValue();
/dports/finance/prestashop/prestashop/src/PrestaShopBundle/Controller/Admin/Sell/Catalog/
H A DAttachmentController.php127 * @param int $attachmentId
131 public function editAction($attachmentId, Request $request) argument
144 $attachmentForm = $attachmentFormBuilder->getFormFor((int) $attachmentId);
147 $result = $attachmentFormHandler->handleFor((int) $attachmentId, $attachmentForm);
180 'attachmentId' => $attachmentId,
194 public function viewAction(int $attachmentId): Response argument
198 $attachment = $this->getCommandBus()->handle(new GetAttachment((int) $attachmentId));
214 public function deleteAction(int $attachmentId): RedirectResponse argument
217 $this->getCommandBus()->handle(new DeleteAttachmentCommand((int) $attachmentId));
339 foreach ($attachmentIds as $i => $attachmentId) {
[all …]
/dports/finance/prestashop/prestashop/src/Core/Domain/Attachment/ValueObject/
H A DAttachmentId.php62 * @param int $attachmentId
66 private function assertIsValidId(int $attachmentId): void argument
68 if (0 >= $attachmentId) {
69 …intException(sprintf('Invalid Attachment id %s supplied', var_export($attachmentId, true)), Attach…
/dports/finance/prestashop/prestashop/src/Core/Form/IdentifiableObject/DataHandler/
H A DAttachmentFormDataHandler.php62 $attachmentId = $this->commandBus->handle($command);
64 return $attachmentId->getValue();
84 * @param AttachmentId $attachmentId
90 AttachmentId $attachmentId, argument
96 $command = new EditAttachmentCommand($attachmentId);
/dports/www/nextcloud-deck/deck/lib/Service/
H A DAttachmentService.php229 public function display($cardId, $attachmentId, $type = 'deck_file') { argument
238 $attachment = $this->attachmentMapper->find($attachmentId);
251 $attachment->setId($attachmentId);
269 public function update($cardId, $attachmentId, $data, $type = 'deck_file') { argument
279 $attachment->setId($attachmentId);
295 $attachment = $this->attachmentMapper->find($attachmentId);
327 public function delete(int $cardId, int $attachmentId, string $type = 'deck_file'): Attachment { argument
336 $attachment->setId($attachmentId);
342 $attachment = $this->attachmentMapper->find($attachmentId);
365 public function restore(int $cardId, int $attachmentId, string $type = 'deck_file'): Attachment { argument
[all …]
/dports/mail/davmail/davmail-src-6.0.1-3390/src/java/davmail/exchange/ews/
H A DDeleteAttachmentMethod.java30 public DeleteAttachmentMethod(String attachmentId) { in DeleteAttachmentMethod() argument
32 this.attachmentId = attachmentId; in DeleteAttachmentMethod()
H A DGetAttachmentMethod.java31 public GetAttachmentMethod(String attachmentId) { in GetAttachmentMethod() argument
33 this.attachmentId = attachmentId; in GetAttachmentMethod()

1234567