Conditions
1 year ago
Documents
1 year ago
DynamicTags
4 months ago
Widgets
2 months ago
assets
4 months ago
ElementorBlockAdapterService.php
4 months ago
ElementorCoreBlockStylesService.php
1 year ago
ElementorDocumentsService.php
1 year ago
ElementorDynamicTagsService.php
1 year ago
ElementorEditorService.php
1 year ago
ElementorFseScriptLoaderService.php
1 year ago
ElementorServiceProvider.php
8 months ago
ElementorShortcodeService.php
1 year ago
ElementorTemplatesService.php
4 months ago
ElementorWidgetsService.php
8 months ago
ElementorDocumentsService.php
101 lines
| 1 | <?php |
| 2 | |
| 3 | namespace SureCart\Integrations\Elementor; |
| 4 | |
| 5 | use SureCart\Integrations\Elementor\Conditions\Conditions; |
| 6 | use SureCart\Integrations\Elementor\Documents\ProductDocument; |
| 7 | use SureCart\Models\Product; |
| 8 | /** |
| 9 | * Elementor documents service. |
| 10 | */ |
| 11 | class ElementorDocumentsService { |
| 12 | /** |
| 13 | * Bootstrap the service. |
| 14 | * |
| 15 | * @return void |
| 16 | */ |
| 17 | public function bootstrap() { |
| 18 | add_action( 'elementor/documents/register', [ $this, 'registerDocument' ] ); |
| 19 | add_action( 'elementor/theme/register_conditions', [ $this, 'productThemeConditions' ] ); |
| 20 | add_filter( 'elementor/query/get_autocomplete/surecart-product', [ $this, 'getAutoComplete' ], 10, 2 ); |
| 21 | add_filter( 'elementor/query/get_value_titles/surecart-product', [ $this, 'getTitles' ], 10, 2 ); |
| 22 | } |
| 23 | |
| 24 | /** |
| 25 | * Add product theme condition. |
| 26 | * |
| 27 | * @param \ElementorPro\Modules\ThemeBuilder\Classes\Documents_Manager $documents_manager The documents manager. |
| 28 | * |
| 29 | * @return void |
| 30 | */ |
| 31 | public function registerDocument( $documents_manager ) { |
| 32 | $documents_manager->register_document_type( 'surecart-product', ProductDocument::get_class_full_name() ); |
| 33 | } |
| 34 | |
| 35 | /** |
| 36 | * Add product theme condition. |
| 37 | * |
| 38 | * @param \ElementorPro\Modules\ThemeBuilder\Classes\Conditions_Manager $conditions_manager The conditions manager. |
| 39 | * |
| 40 | * @return void |
| 41 | */ |
| 42 | public function productThemeConditions( $conditions_manager ) { |
| 43 | $conditions_manager->register_condition_instance( new Conditions() ); |
| 44 | } |
| 45 | |
| 46 | /** |
| 47 | * Get autocomplete |
| 48 | * |
| 49 | * @param array $results The results. |
| 50 | * @param array $data Request data. |
| 51 | * |
| 52 | * @return array |
| 53 | */ |
| 54 | public function getAutoComplete( $results, $data ) { |
| 55 | if ( 'surecart-product' !== $data['autocomplete']['object'] ) { |
| 56 | return $results; |
| 57 | } |
| 58 | |
| 59 | $products = Product::where( |
| 60 | [ |
| 61 | 'query' => $data['q'], |
| 62 | 'archived' => false, |
| 63 | ] |
| 64 | )->get(); |
| 65 | |
| 66 | foreach ( $products as $product ) { |
| 67 | $results[] = [ |
| 68 | 'id' => $product->id, |
| 69 | 'text' => $product->name, |
| 70 | ]; |
| 71 | } |
| 72 | return $results; |
| 73 | } |
| 74 | |
| 75 | /** |
| 76 | * Get the titles for the query control |
| 77 | * This is important as it shows the previously selected items when the conditions load in. |
| 78 | * |
| 79 | * @param array $results The results. |
| 80 | * @param array $request The request. |
| 81 | * |
| 82 | * @return array |
| 83 | */ |
| 84 | public function getTitles( $results, $request ) { |
| 85 | if ( 'surecart-product' !== $request['get_titles']['object'] || empty( $request['id'] ) ) { |
| 86 | return $results; |
| 87 | } |
| 88 | |
| 89 | $products = Product::where( |
| 90 | [ |
| 91 | 'ids' => [ $request['id'] ], |
| 92 | ] |
| 93 | )->get(); |
| 94 | |
| 95 | foreach ( $products as $product ) { |
| 96 | $results[ $product->id ] = $product->name; |
| 97 | } |
| 98 | return $results; |
| 99 | } |
| 100 | } |
| 101 |