Blocks
2 months ago
Concerns
6 months ago
Traits
2 weeks ago
Wordpress
1 year ago
AbandonedCheckout.php
1 year ago
AbandonedCheckoutProtocol.php
3 years ago
Account.php
10 months ago
AccountPortalSession.php
3 years ago
Activation.php
1 year ago
Affiliation.php
1 year ago
AffiliationProduct.php
1 year ago
AffiliationProtocol.php
2 years ago
AffiliationRequest.php
1 year ago
ApiToken.php
6 months ago
AutoFee.php
5 months ago
AutoFeeProtocol.php
5 months ago
BalanceTransaction.php
1 year ago
Batch.php
2 days ago
Brand.php
4 months ago
BulkAction.php
2 years ago
Bump.php
1 year ago
BuyLink.php
2 years ago
CancellationAct.php
1 year ago
CancellationReason.php
3 years ago
Charge.php
9 months ago
Checkout.php
2 months ago
Click.php
1 year ago
Collection.php
3 months ago
CommissionStructure.php
2 years ago
Component.php
4 months ago
Coupon.php
2 months ago
Customer.php
2 weeks ago
CustomerLink.php
3 years ago
CustomerNotificationProtocol.php
3 years ago
CustomerPortalProtocol.php
1 year ago
DatabaseModel.php
2 months ago
Discount.php
1 year ago
DisplayCurrency.php
1 year ago
Dispute.php
9 months ago
Download.php
3 years ago
Event.php
3 years ago
Export.php
2 years ago
ExternalApiModel.php
3 months ago
Fee.php
1 year ago
Form.php
3 years ago
Fulfillment.php
1 year ago
FulfillmentItem.php
1 year ago
GalleryItem.php
9 months ago
GalleryItemAttachment.php
5 months ago
GalleryItemImageAttachment.php
3 months ago
GalleryItemMedia.php
1 year ago
GalleryItemProductMedia.php
1 month ago
GalleryItemVideoAttachment.php
3 months ago
Import.php
6 months ago
ImportRow.php
2 months ago
IncomingWebhook.php
1 year ago
Integration.php
2 years ago
IntegrationCatalog.php
2 days ago
Invoice.php
1 year ago
License.php
1 year ago
LineItem.php
9 months ago
ManualPaymentMethod.php
1 year ago
Media.php
1 month ago
Model.php
2 days ago
ModelInterface.php
3 years ago
Order.php
2 weeks ago
OrderProtocol.php
3 years ago
ParcelTemplate.php
3 months ago
PaymentFailure.php
1 year ago
PaymentInstrument.php
2 months ago
PaymentIntent.php
1 year ago
PaymentMethod.php
1 year ago
Payout.php
1 year ago
PayoutGroup.php
2 years ago
Period.php
1 year ago
PlatformFee.php
1 year ago
PortalSession.php
3 years ago
Price.php
6 months ago
Processor.php
1 year ago
Product.php
2 days ago
ProductCollection.php
1 year ago
ProductCollectionImport.php
6 months ago
ProductGroup.php
1 year ago
ProductImport.php
6 months ago
ProductMedia.php
4 months ago
Promotion.php
1 year ago
ProvisionalAccount.php
2 months ago
Purchase.php
2 years ago
Referral.php
1 year ago
ReferralItem.php
2 years ago
Refund.php
1 year ago
RefundItem.php
1 year ago
RegisteredWebhook.php
2 months ago
ReturnItem.php
2 years ago
ReturnReason.php
2 years ago
ReturnRequest.php
1 year ago
Review.php
4 months ago
ReviewProtocol.php
4 months ago
RuleSchema.php
5 months ago
ServiceFee.php
1 year ago
ShippingChoice.php
1 year ago
ShippingMethod.php
3 years ago
ShippingProfile.php
3 years ago
ShippingProtocol.php
3 years ago
ShippingRate.php
3 years ago
ShippingZone.php
3 years ago
Statistic.php
3 years ago
Subscription.php
2 weeks ago
SubscriptionProtocol.php
3 years ago
Swap.php
1 year ago
TaxOverride.php
2 years ago
TaxProtocol.php
3 years ago
TaxRegistration.php
1 year ago
TaxZone.php
3 years ago
Upload.php
3 years ago
Upsell.php
1 year ago
UpsellFunnel.php
1 year ago
User.php
1 month ago
Variant.php
2 days ago
VariantOption.php
2 years ago
VariantOptionValue.php
1 year ago
VariantValue.php
2 years ago
VerificationCode.php
3 years ago
Webhook.php
1 year ago
WebhookRegistration.php
2 years ago
GalleryItemProductMedia.php
165 lines
| 1 | <?php |
| 2 | namespace SureCart\Models; |
| 3 | |
| 4 | use SureCart\Models\GalleryItem as ModelsGalleryItem; |
| 5 | use SureCart\Support\Contracts\GalleryItem; |
| 6 | |
| 7 | /** |
| 8 | * Gallery item model |
| 9 | */ |
| 10 | class GalleryItemProductMedia extends ModelsGalleryItem implements GalleryItem { |
| 11 | /** |
| 12 | * Create a new gallery item. |
| 13 | * This can accept a product media or a post. |
| 14 | * |
| 15 | * @param \SureCart\Models\ProductMedia $item The item. |
| 16 | * |
| 17 | * @return void |
| 18 | */ |
| 19 | public function __construct( \SureCart\Models\ProductMedia $item ) { |
| 20 | $this->item = $item; |
| 21 | } |
| 22 | |
| 23 | /** |
| 24 | * Get the thumbnail attribute markup. |
| 25 | * |
| 26 | * @param string $size The size of the image. |
| 27 | * @param array $attr The attributes for the tag. |
| 28 | * @param array $metadata Additional metadata. |
| 29 | * |
| 30 | * @return string |
| 31 | */ |
| 32 | public function thumbnail( $size = 'full', $attr = [], $metadata = [] ): string { |
| 33 | return $this->html( $size, $attr, $metadata ); |
| 34 | } |
| 35 | |
| 36 | /** |
| 37 | * Get the media attribute markup. |
| 38 | * |
| 39 | * @param string $size The size of the image. |
| 40 | * @param string|array $attr The attributes for the tag. WordPress allows either array or query-string form. |
| 41 | * @param array $metadata Additional metadata. |
| 42 | * |
| 43 | * @return string |
| 44 | */ |
| 45 | public function html( $size = 'full', $attr = array(), $metadata = array() ): string { |
| 46 | // Normalise $attr — WordPress allows the attr arg of get_the_post_thumbnail() to be a query string (e.g. Enfold theme passes 'class=foo&id=bar'). |
| 47 | $attr = wp_parse_args( $attr ); |
| 48 | |
| 49 | $image = ''; |
| 50 | |
| 51 | // Handle media. |
| 52 | if ( isset( $this->item->media ) ) { |
| 53 | return $this->item->media->html( $size, $attr ); |
| 54 | } |
| 55 | |
| 56 | // Handle media url. |
| 57 | if ( isset( $this->item->url ) ) { |
| 58 | $attributes = $this->attributes( $size, $attr ); |
| 59 | |
| 60 | // build the image tag. |
| 61 | $image = '<img'; |
| 62 | foreach ( $attributes as $key => $value ) { |
| 63 | $image .= sprintf( ' %s="%s"', $key, esc_attr( $value ) ); |
| 64 | } |
| 65 | $image .= ' />'; |
| 66 | } |
| 67 | |
| 68 | // add any styles. |
| 69 | $tags = new \WP_HTML_Tag_Processor( $image ); |
| 70 | |
| 71 | // add inline styles. |
| 72 | if ( ! empty( $attr['style'] ) ) { |
| 73 | if ( $tags->next_tag( 'img' ) && ! empty( $attr['style'] ) ) { |
| 74 | $tags->set_attribute( 'style', $attr['style'] ); |
| 75 | } |
| 76 | } |
| 77 | |
| 78 | if ( $this->with_lightbox ) { |
| 79 | $this->with_lightbox = false; // reset to false. |
| 80 | |
| 81 | // get the image data. |
| 82 | $full_data = $this->attributes( 'full' ); |
| 83 | |
| 84 | // set the lightbox state. |
| 85 | wp_interactivity_state( |
| 86 | 'surecart/lightbox', |
| 87 | array( |
| 88 | 'metadata' => array( |
| 89 | // metadata keyed by unique image id. |
| 90 | $this->id => wp_parse_args( |
| 91 | $metadata, |
| 92 | array( |
| 93 | 'uploadedSrc' => $full_data->src, |
| 94 | 'imgClassNames' => $full_data->class, |
| 95 | 'scaleAttr' => false, // false or 'contain'. |
| 96 | 'alt' => $full_data->alt, |
| 97 | // translators: %s is the image title. |
| 98 | 'screenReaderText' => sprintf( __( 'Viewing image: %s.', 'surecart' ), $full_data->alt ), |
| 99 | 'galleryId' => get_the_ID(), |
| 100 | ), |
| 101 | ), |
| 102 | ), |
| 103 | ) |
| 104 | ); |
| 105 | |
| 106 | $tags->set_attribute( 'data-wp-on--load', 'callbacks.setImageRef' ); |
| 107 | $tags->set_attribute( 'data-wp-init', 'callbacks.setImageRef' ); |
| 108 | $tags->set_attribute( 'data-wp-on--click', 'actions.showLightbox' ); |
| 109 | $tags->set_attribute( 'data-wp-class--sc-hide', 'state.isContentHidden' ); |
| 110 | $tags->set_attribute( 'data-wp-class--sc-show', 'state.isContentVisible' ); |
| 111 | $tags->add_class( 'has-image-lightbox' ); |
| 112 | |
| 113 | // add the lightbox trigger button. |
| 114 | return $tags->get_updated_html() . |
| 115 | '<button |
| 116 | class="lightbox-trigger" |
| 117 | type="button" |
| 118 | aria-haspopup="dialog" |
| 119 | aria-label="' . esc_attr__( 'Expand image', 'surecart' ) . '" |
| 120 | data-wp-init="callbacks.initTriggerButton" |
| 121 | data-wp-on--click="actions.showLightbox" |
| 122 | data-wp-style--right="state.imageButtonRight" |
| 123 | data-wp-style--top="state.imageButtonTop" |
| 124 | > |
| 125 | ' . \SureCart::svg()->get( |
| 126 | 'maximize', |
| 127 | [ |
| 128 | 'width' => 16, |
| 129 | 'height' => 16, |
| 130 | 'aria-hidden' => 'true', |
| 131 | ] |
| 132 | ) . ' |
| 133 | </button>'; |
| 134 | } |
| 135 | |
| 136 | // return updated html. |
| 137 | return $tags->get_updated_html(); |
| 138 | } |
| 139 | |
| 140 | /** |
| 141 | * Get the image data. |
| 142 | * |
| 143 | * @param string $size The size of the image. |
| 144 | * @param string|array $attr The attributes for the tag. WordPress allows either array or query-string form. |
| 145 | * |
| 146 | * @return object |
| 147 | */ |
| 148 | public function attributes( $size = 'full', $attr = array() ): object { |
| 149 | // Normalise $attr — WordPress allows the attr arg of get_the_post_thumbnail() to be a query string (e.g. Enfold theme passes 'class=foo&id=bar'). |
| 150 | $attr = wp_parse_args( $attr ); |
| 151 | |
| 152 | if ( isset( $this->item->media ) ) { |
| 153 | return $this->item->media->attributes( $size, $attr ); |
| 154 | } |
| 155 | |
| 156 | $attachment_class = 'attachment-' . $size . ' size-' . $size; |
| 157 | |
| 158 | return (object) array( |
| 159 | 'src' => $this->item->url, |
| 160 | 'class' => $attachment_class . ' ' . ( ! empty( $attr['class'] ) ? $attr['class'] : '' ), |
| 161 | 'alt' => get_the_title(), |
| 162 | ); |
| 163 | } |
| 164 | } |
| 165 |