url
stringlengths
50
196
text
stringlengths
3
17.2k
heading
stringlengths
2
103
embeddings
list
https://pimcore.com/docs/platform//Datahub_File_Export/Export_Setup#execution-via-cli-command
Execution via CLI Command The export command also can be setup and executed directly as cronjob by just executing the datahub:export:file command (for details see --help option). This might be useful, when more custom execution definitions are necessary or special infrastructure requirements exist. For this execution o...
Execution via CLI Command
[ -0.2952903211116791, 0.18354438245296478, -0.1257326900959015, -0.28852254152297974, -0.4056112766265869, -0.16078342497348785, 0.4792221486568451, 0.13229285180568695, 0.1372937709093094, 0.3355626165866852, -0.03934759646654129, 0.10868768393993378, -0.18688787519931793, 0.29340422153472...
https://pimcore.com/docs/platform//Datahub_File_Export/Customize_and_Extend#customize-and-extend
Customize and Extend There are multiple ways for extending the file export adapter. It is possible to add additional file types and transmitters (see below) and there are a couple of events that allow to further customize the export. In addition to that, it is also possible to completely customize the whole exporter by...
Customize and Extend
[ -0.3075828552246094, -0.1652674674987793, -0.2293791025876999, 0.0053863502107560635, -0.088432677090168, -0.07921323925256729, 0.2292943298816681, 0.27952173352241516, 0.17125999927520752, 0.4614541530609131, -0.2761736810207367, 0.19046765565872192, -0.017074700444936752, 0.3131257295608...
https://pimcore.com/docs/platform//Datahub_File_Export/Customize_and_Extend#additional-transmitters
Additional Transmitters Transmitters are responsible for delivering the file to its desired destination (local directory, remote location, etc.). If you want to add further transmitters just provide a PHP service class like this: <?php namespace AppBundle\DataHubFileExport\Exporter\Transmitter; class MyCustomTransm...
Additional Transmitters
[ -0.0020701964385807514, -0.20911875367164612, -0.014488356187939644, -0.1135093942284584, -0.042720239609479904, -0.33372747898101807, 0.39763951301574707, -0.07280586659908295, -0.2910020053386688, 0.30655479431152344, 0.1289864331483841, 0.425581693649292, 0.13130810856819153, 0.23638029...
https://pimcore.com/docs/platform//Datahub_File_Export/Customize_and_Extend#additional-exporter-types
Additional Exporter Types To add additional exporter types (besides CSV, XML and JSON) just have a look at the existing ones. You can create custom exporter types by just adding additional services add extend the Pimcore\Bundle\DataHubFileExportBundle\Exporter\Type\AbstractExporter class and register them with the tag ...
Additional Exporter Types
[ -0.18486478924751282, -0.08620920777320862, -0.22150170803070068, -0.03742869570851326, 0.05173785239458084, -0.05934014543890953, 0.2357294112443924, 0.31838035583496094, 0.03632499277591705, 0.314156711101532, -0.31110867857933044, 0.45049434900283813, 0.10946119576692581, 0.586490333080...
https://pimcore.com/docs/platform//Datahub_File_Export/Customize_and_Extend#customize-built-in-exporter-typestransmitters
Customize built in Exporter Types/Transmitters To customize the built in exporter/transmitter you can override the existing services. Please take a look at Service definition of the bundle on how they are defined. If you want to override the XML exporter type, you could do it like this: Create your service class e.g: &...
Customize built in Exporter Types/Transmitters
[ -0.23858018219470978, -0.19747905433177948, -0.11171990633010864, -0.03873724117875099, 0.16619238257408142, -0.26488006114959717, 0.24438190460205078, -0.03383196145296097, -0.25669339299201965, 0.28629663586616516, -0.23487284779548645, 0.5768575072288513, 0.03434903547167778, 0.41993755...
https://pimcore.com/docs/platform//Datahub_File_Export/Customize_and_Extend#custom-exporter-services
Custom exporter services The exporter service implements and controls the whole export process. The default bundle configuration for the file exporter looks like this. So you can override custom parts if you need it. pimcore_data_hub_file_export: defaultExporter: 'pimcore.datahub.fileExport.exporter.file' By defau...
Custom exporter services
[ -0.24096080660820007, -0.10984273254871368, -0.15346315503120422, -0.028103500604629517, -0.2379741668701172, -0.11308412253856659, 0.3893378674983978, 0.08981090039014816, -0.031585950404405594, 0.3693975508213043, -0.35255011916160583, 0.33779340982437134, 0.11737477779388428, 0.40120175...
https://pimcore.com/docs/platform//Datahub_File_Export/Customize_and_Extend#sample
Sample
Sample
[ -0.21339569985866547, -0.3895408511161804, -0.3681719899177551, 0.051203906536102295, 0.002697752555832267, 0.0057934969663619995, 0.31162816286087036, 0.3402099907398224, -0.03412046283483505, 0.31997087597846985, 0.42981094121932983, 0.0763174369931221, -0.2125997245311737, 0.32979312539...
https://pimcore.com/docs/platform//Datahub_File_Export/Customize_and_Extend#definition
Definition app.datahub.my-exporter: class: AppBundle\DataSyndicator\Exporter\File public: true shared: false tags: - { name: "pimcore.datahub.fileExport.exporter"} Please make sure it is public, not shared and tagged as in the sample above!
Definition
[ -0.35974636673927307, 0.016607148572802544, -0.1932833194732666, -0.0980127602815628, 0.029510879889130592, -0.27704769372940063, 0.453260213136673, 0.3050893247127533, 0.06690406054258347, 0.40395981073379517, -0.1025761291384697, 0.38556212186813354, 0.0059592160396277905, 0.464751750230...
https://pimcore.com/docs/platform//Datahub_File_Export/Customize_and_Extend#implementation
Implementation <?php namespace AppBundle\DataSyndicator\Exporter; class File extends \Pimcore\Bundle\DataHubFileExportBundle\Exporter\File { public function execute($data) { //var_dump($this->getDataHubConfiguration()->getName()); //do some custom stuff instead of calling the parent...
Implementation
[ -0.4348881244659424, -0.01808529905974865, -0.18612003326416016, 0.25435781478881836, 0.019854489713907242, -0.19959601759910583, 0.29860255122184753, 0.31191331148147583, -0.27123066782951355, 0.4320000410079956, -0.28664642572402954, 0.324921578168869, 0.0071587152779102325, 0.2842850685...
https://pimcore.com/docs/platform//Datahub_File_Export/Events#file-exporter---events
File exporter - Events There are a couple of events which you can use to modify the export. pimcore.dataobject.postCsvItemExport Pimcore\Bundle\DataHubFileExportBundle\Event\IsValidExportItemEvent Pimcore\Bundle\DataHubFileExportBundle\Event\FilterExistingDataEvent Pimcore\Bundle\DataHubFileExportBundle\Event\P...
File exporter - Events
[ -0.38847994804382324, 0.12796135246753693, -0.21451975405216217, -0.03723239153623581, -0.006428742315620184, -0.22382117807865143, 0.012557794339954853, 0.2338763028383255, -0.23034434020519257, 0.4969417452812195, -0.12441573292016983, 0.2700027823448181, 0.15709535777568817, 0.501559853...
https://pimcore.com/docs/platform//Datahub_File_Export/Events#sample-implementation
Sample implementation
Sample implementation
[ 0.02920866571366787, -0.5835044980049133, -0.2219708114862442, 0.0711018517613411, -0.18926845490932465, -0.3459518551826477, 0.34174877405166626, 0.06034952402114868, 0.03263115510344505, 0.4910392165184021, 0.533591628074646, 0.38926321268081665, -0.2539287507534027, 0.34903642535209656,...
https://pimcore.com/docs/platform//Datahub_File_Export/Events#sample-configuration-for-eventlistener
Sample configuration for EventListener AppBundle\EventListener\DataHubFileExportListener: tags: - { name: kernel.event_listener, event: pimcore.dataobject.postCsvItemExport, method: postCsvItemExport } - { name: kernel.event_listener, event: Pimcore\Bundle\DataHubFileExportBundle\Eve...
Sample configuration for EventListener
[ -0.3968680202960968, -0.09291719645261765, -0.12356375902891159, 0.055885400623083115, 0.09060061722993851, -0.2914784550666809, 0.2007582038640976, 0.10327300429344177, 0.05710932984948158, 0.21064411103725433, -0.12901854515075684, 0.3895076811313629, -0.07116660475730896, 0.244344845414...
https://pimcore.com/docs/platform//Datahub_File_Export/Events#the-appropriate-eventlistener-would-look-like-this
The appropriate EventListener would look like this <?php /** * Pimcore * * This source file is available under two different licenses: * - GNU General Public License version 3 (GPLv3) * - Pimcore Commercial License (PCL) * Full copyright and license information is available in * LICENSE.md which is distribut...
The appropriate EventListener would look like this
[ -0.5224123001098633, 0.1772051602602005, -0.14142166078090668, 0.2487592250108719, -0.12277695536613464, -0.4195892810821533, 0.25960686802864075, 0.2940390408039093, -0.007528992835432291, 0.22312438488006592, -0.09355629980564117, 0.22505518794059753, -0.19066745042800903, 0.112497434020...
https://pimcore.com/docs/platform//Datahub_File_Export#datahub_file_export
Datahub_File_Export
Datahub_File_Export
[ -0.43916934728622437, -0.0035188510082662106, -0.19771122932434082, -0.12544405460357666, -0.061756521463394165, -0.08047135174274445, 0.47248685359954834, 0.39019516110420227, 0.06790526956319809, 0.29598695039749146, -0.04213056340813637, -0.0185367614030838, 0.020936716347932816, 0.6539...
https://pimcore.com/docs/platform//Datahub_File_Export#title:-datahub-file-export
title: Datahub File Export
title: Datahub File Export
[ -0.1754470318555832, 0.10559356212615967, -0.3164879083633423, -0.19909822940826416, -0.0898185595870018, 0.024947740137577057, 0.47581881284713745, 0.25852808356285095, 0.07322489470243454, 0.3752741515636444, -0.0016749982023611665, -0.04000064730644226, 0.012662683613598347, 0.537929058...
https://pimcore.com/docs/platform//Datahub_File_Export#pimcore-datahub-file-export
Pimcore Datahub File Export This extension allows the publishing of the data stored in Pimcore automatically to flat CSV, XML, or JSON files with simple configurations inside Pimcore's Datahub. It represents a good solution for exporting data on a regular base.
Pimcore Datahub File Export
[ -0.35198748111724854, -0.2350161224603653, -0.2072911262512207, -0.04186292737722397, -0.13860195875167847, -0.07155197858810425, 0.14585815370082855, 0.3228326737880707, -0.08796903491020203, 0.2221657633781433, -0.241998553276062, 0.3728674352169037, 0.04846138879656792, 0.69633209705352...
https://pimcore.com/docs/platform//Datahub_File_Export#features-in-a-nutshell
Features in a Nutshell Schema and exposed data configuration like with other Datahub adapters via drag & drop Export format definition as csv, xml or json Data delivery to specific targets like local directory, SFTP upload or HTTP POST Caching of exported data to get high performance exports.
Features in a Nutshell
[ -0.23740385472774506, -0.49783647060394287, -0.3202517032623291, -0.11374178528785706, -0.07561980932950974, -0.028797732666134834, 0.11542057991027832, 0.08370019495487213, 0.19284792244434357, 0.19572195410728455, -0.2343204915523529, 0.132351353764534, -0.006271088030189276, 0.945434033...
https://pimcore.com/docs/platform//Datahub_File_Export#documentation-overview
Documentation Overview Installation Basic configuration Export setup Customize or extend the Bundle Events
Documentation Overview
[ -0.3398749530315399, -0.20425277948379517, -0.1529444307088852, 0.05552171915769577, -0.041186194866895676, 0.1536586731672287, 0.1493716835975647, -0.050266820937395096, -0.22123198211193085, 0.16379892826080322, 0.059899695217609406, 0.1905599981546402, 0.05791907757520676, 0.46863120794...
https://pimcore.com/docs/platform//Datahub_File_Export#further-information
Further Information On other Pimcore Datahub adapters: Datahub (GraphQL API) Datahub Simple Rest API Datahub Productsup Datahub CI Hub
Further Information
[ -0.3146616518497467, -0.23695120215415955, -0.24983729422092438, -0.1428256630897522, -0.14700976014137268, -0.2548523247241974, 0.4119192957878113, 0.03403659909963608, 0.15691858530044556, 0.22310957312583923, -0.4150400161743164, 0.4609137177467346, 0.22379884123802185, 0.79030716419219...
https://pimcore.com/docs/platform//Datahub_Simple_Rest/Installation/Upgrade_Notes#upgrade-notes
Upgrade Notes Things to consider before or when upgrading to new versions.
Upgrade Notes
[ -0.1076802983880043, -0.10577098280191422, -0.2649495005607605, -0.05663592368364334, 0.05037759989500046, 0.0696263313293457, -0.22298568487167358, 0.027105292305350304, -0.17597933113574982, -0.014418283477425575, 0.00872823316603899, -0.034465327858924866, 0.009204471483826637, -0.08411...
https://pimcore.com/docs/platform//Datahub_Simple_Rest/Installation/Upgrade_Notes#v2.0.0
v2.0.0 It is possible to add more than one API-key per configuration now. Therefore, the API-key gets stored as an array in the configuration. Configurations from previous versions are still supported, but they get converted to the new format as soon as they get saved. Removed Elasticsearch 6 and Elasticsearch 7 suppo...
v2.0.0
[ 0.1623860001564026, -0.2905964255332947, -0.23439393937587738, -0.13656815886497498, -0.17284555733203888, -0.16786624491214752, -0.06178915500640869, 0.1566184014081955, 0.22607757151126862, 0.0212237685918808, -0.08693096041679382, 0.23522990942001343, -0.05775320902466774, 0.30178800225...
https://pimcore.com/docs/platform//Datahub_Simple_Rest/Installation/Upgrade_Notes#v1.7.2
v1.7.2 Data type for asset fileSize was changed to long (was int). If you run into issues regarding the fileSize, please re-index your data.
v1.7.2
[ -0.20548442006111145, -0.30185627937316895, -0.2294226437807083, 0.2504723072052002, 0.18963868916034698, -0.10115087032318115, 0.17077989876270294, 0.49544447660446167, 0.01648211106657982, 0.24557828903198242, -0.025651318952441216, -0.030667416751384735, 0.019699634984135628, 0.10686694...
https://pimcore.com/docs/platform//Datahub_Simple_Rest/Installation/Upgrade_Notes#v1.5.x-to-v1.6.0
v1.5.x to v1.6.0 Default number of shards is now set to 1 (was 5). To change the value back to 5, see Indexing Options section in Indexing Details.
v1.5.x to v1.6.0
[ -0.2094147950410843, -0.5140406489372253, -0.20082858204841614, 0.20871102809906006, -0.057815805077552795, -0.2190803438425064, 0.3798576593399048, 0.1696571260690689, 0.031438522040843964, 0.4434133470058441, -0.08630134165287018, 0.011534115299582481, -0.03757490962743759, 0.07489527761...
https://pimcore.com/docs/platform//Datahub_Simple_Rest/Installation#installation
Installation
Installation
[ -0.06728437542915344, -0.4834894835948944, -0.3417288661003113, 0.20734061300754547, 0.06259846687316895, 0.09173910319805145, -0.07573223114013672, -0.07214274257421494, 0.15155638754367828, 0.1816904991865158, -0.07461769878864288, 0.14365136623382568, 0.041423697024583817, 0.05546558648...
https://pimcore.com/docs/platform//Datahub_Simple_Rest/Installation#required-bundles
Required Bundles This bundle depends on Pimcore Datahub bundle. This needs to be installed first.
Required Bundles
[ -0.3271258473396301, -0.21303868293762207, -0.19423209130764008, -0.01872885785996914, -0.07750827074050903, -0.005332225002348423, 0.2224234789609909, 0.13292168080806732, -0.18985703587532043, 0.07080167531967163, -0.11254754662513733, 0.26534873247146606, 0.07108276337385178, 0.33809244...
https://pimcore.com/docs/platform//Datahub_Simple_Rest/Installation#installation-process
Installation Process
Installation Process
[ 0.08020234853029251, -0.4312822222709656, -0.29270926117897034, 0.10546649992465973, -0.1146225556731224, 0.020290104672312737, -0.026727845892310143, -0.1865369826555252, 0.10249292105436325, 0.14968742430210114, -0.0016273048240691423, 0.1121966689825058, 0.1848244071006775, -0.010504826...
https://pimcore.com/docs/platform//Datahub_Simple_Rest/Installation#for-pimcore->=-10.5
For Pimcore >= 10.5 To install Datahub Simple Rest API for Pimcore 10.5 or higher version, follow the three steps below: Install the required dependencies: composer require pimcore/data-hub-simple-rest Make sure the bundle is enabled in the config/bundles.php file. The following lines should be added: use Pimco...
For Pimcore >= 10.5
[ -0.28568562865257263, -0.12330111116170883, -0.17887291312217712, -0.0640159621834755, -0.191641703248024, -0.12723171710968018, -0.0857941135764122, 0.28735485672950745, -0.23184485733509064, 0.21601137518882751, -0.19310975074768066, 0.5379334092140198, 0.2029959261417389, 0.131474882364...
https://pimcore.com/docs/platform//Datahub_Simple_Rest/Installation#for-older-versions
For Older Versions To install the Datahub Simple Rest API bundle for older versions of Pimcore, please run the following commands instead: composer require pimcore/data-hub-simple-rest bin/console pimcore:bundle:enable PimcoreDataHubSimpleRestBundle bin/console pimcore:bundle:install PimcoreDataHubSimpleRestBundle Ma...
For Older Versions
[ -0.2980289161205292, -0.021709155291318893, -0.18257653713226318, -0.030850041657686234, -0.10081560909748077, -0.07666587829589844, 0.1021227017045021, 0.191581591963768, -0.2935309112071991, 0.23641298711299896, -0.17398770153522491, 0.5176603198051453, 0.14644309878349304, 0.06379767507...
https://pimcore.com/docs/platform//Datahub_Simple_Rest/Installation#bundle-configuration
Bundle Configuration
Bundle Configuration
[ -0.1497521698474884, -0.7734434604644775, -0.1553780883550644, 0.29922330379486084, 0.2179914116859436, 0.0595809631049633, 0.41703736782073975, -0.20630677044391632, -0.17295368015766144, 0.117451973259449, -0.02126796543598175, 0.16865700483322144, -0.127521812915802, 0.2348327785730362,...
https://pimcore.com/docs/platform//Datahub_Simple_Rest/Installation#configure-elasticsearch-client
Configure Elasticsearch Client Elasticsearch client configuration takes place via Pimcore Elasticsearch Client Bundle and has two parts. Configuring an elasticsearch client. Define the client to be used by simple rest API. # Configure an elasticsearch client pimcore_elasticsearch_client: es_clients: def...
Configure Elasticsearch Client
[ -0.0831967443227768, -0.24186298251152039, -0.17328014969825745, -0.45275264978408813, -0.1326059103012085, -0.2895406484603882, 0.08827868103981018, -0.11615990102291107, -0.19281969964504242, 0.20908807218074799, -0.18081358075141907, 0.462337464094162, 0.20956316590309143, -0.1131496354...
https://pimcore.com/docs/platform//Datahub_Simple_Rest/Installation#further-configuration-options
Further Configuration Options Configure Elasticsearch hosts and index name prefix with symfony configuration: pimcore_data_hub_simple_rest: # Prefix for index names index_name_prefix: datahub_restindex_ # Limit of page size and offset when paging only works via page cursor (and not page numbers anymore...
Further Configuration Options
[ -0.24049793183803558, -0.1466890424489975, -0.20011454820632935, -0.18623094260692596, -0.18280735611915588, -0.2073744684457779, 0.14869824051856995, 0.32627248764038086, 0.11049536615610123, 0.3185916244983673, -0.14529888331890106, 0.1408883035182953, 0.19021441042423248, -0.01432508602...
https://pimcore.com/docs/platform//Datahub_Simple_Rest/Installation#index-processing
Index Processing To make sure indexing queue is processed and index is filled, there are two possible ways:
Index Processing
[ -0.014536983333528042, -0.24125705659389496, -0.30746567249298096, 0.017285557463765144, -0.19430311024188995, -0.007596511859446764, 0.0729290172457695, 0.0156294796615839, 0.2059863656759262, 0.4301566779613495, 0.06572063267230988, -0.0031289036851376295, 0.3149063289165497, 0.137648344...
https://pimcore.com/docs/platform//Datahub_Simple_Rest/Installation#command-based
Command Based For command based queue processing, following command has to be executed on regular base, e.g. every 5 minutes. */5 * * * * php /home/project/www/bin/console datahub:simple-rest:process-queue
Command Based
[ -0.15600700676441193, -0.2719785273075104, -0.2701207995414734, -0.3146549463272095, -0.3195698857307434, -0.2025727927684784, 0.20708192884922028, 0.17527388036251068, -0.1343681514263153, 0.20462752878665924, 0.23387813568115234, -0.007621451281011105, 0.10125141590833664, 0.140271186828...
https://pimcore.com/docs/platform//Datahub_Simple_Rest/Installation#symfony-messenger-based
Symfony Messenger Based For symfony messenger based queue processing, at least following configuration needs to be done in symfony configuration: pimcore_data_hub_simple_rest: messenger_queue_processing: activated: true If activated, the processing is kicked off automatically with the datahub_simplerest_up...
Symfony Messenger Based
[ -0.20841571688652039, -0.274952232837677, -0.11277913302183151, -0.04969745874404907, -0.18370944261550903, -0.3486965000629425, 0.3814028203487396, -0.016455862671136856, -0.018939241766929626, 0.34866073727607727, -0.025661218911409378, 0.18652120232582092, 0.12893830239772797, 0.0023295...
https://pimcore.com/docs/platform//Datahub_Simple_Rest/Endpoint_Configuration#endpoint-configuration-details
Endpoint Configuration Details Every Datahub configuration creates a separate endpoint with its own settings and its own data. Following configuration options are possible for each endpoint.
Endpoint Configuration Details
[ -0.07997100800275803, -0.31442326307296753, -0.2341805249452591, 0.002013777382671833, -0.13591979444026947, -0.28715988993644714, 0.18585576117038727, -0.3429122865200043, 0.08107548207044601, -0.07773153483867645, -0.40713828802108765, 0.2139236181974411, 0.2629527449607849, 0.3465096950...
https://pimcore.com/docs/platform//Datahub_Simple_Rest/Endpoint_Configuration#general
General See type and name of configuration and define description and if the endpoint is active or not.
General
[ -0.37210020422935486, -0.5691209435462952, -0.21477578580379486, -0.07074504345655441, -0.042506106197834015, -0.47465112805366516, 0.2219642996788025, -0.23651613295078278, 0.032021209597587585, 0.03249435871839523, 0.059603821486234665, 0.12794837355613708, 0.07388542592525482, 0.0981589...
https://pimcore.com/docs/platform//Datahub_Simple_Rest/Endpoint_Configuration#schema-definition
Schema Definition Define available data entities and their schema (= available fields) for the endpoint. Also define if assets should be considered in tree items and search requests and if originals and/or what thumbnails should be used for delivery.
Schema Definition
[ -0.042178042232990265, -0.19220085442066193, -0.1853286772966385, 0.09002173691987991, -0.04023168608546257, -0.3863477408885956, -0.2662980556488037, 0.029536044225096703, 0.1584252417087555, -0.1484088897705078, 0.06976654380559921, -0.22915978729724884, 0.027817027643322945, 0.356056541...
https://pimcore.com/docs/platform//Datahub_Simple_Rest/Endpoint_Configuration#workspaces
Workspaces Define workspaces for assets and data objects and so manage what data should be actually exposed via the endpoint. It is possible to include and explicitly exclude folders.
Workspaces
[ 0.09395389258861542, 0.10735783725976944, -0.3096606731414795, 0.14434607326984406, -0.1368928998708725, -0.32125338912010193, 0.23526622354984283, 0.0888170674443245, 0.09517733007669449, 0.23527424037456512, -0.3023079037666321, 0.014047477394342422, -0.0021244147792458534, 0.11036180704...
https://pimcore.com/docs/platform//Datahub_Simple_Rest/Endpoint_Configuration#label-settings
Label Settings Define nice looking labels for different languages for each field. Each request includes the labels for used fields in response in an additional data structure. They then can be used by the client application. Additionally define what fields will be considered for aggregation calculation for facet naviga...
Label Settings
[ 0.03454594314098358, -0.4512583911418915, -0.21313130855560303, 0.30598533153533936, 0.023109717294573784, -0.0810663104057312, 0.18677982687950134, -0.05300050601363182, 0.2008083015680313, 0.2569849491119385, -0.057128749787807465, -0.002552385674789548, 0.3558671176433563, 0.35962268710...
https://pimcore.com/docs/platform//Datahub_Simple_Rest/Endpoint_Configuration#delivery-settings
Delivery Settings Define (or generate) an API key for securing the endpoint. This API key needs to be sent as security header with every request.
Delivery Settings
[ -0.1273220330476761, -0.29494595527648926, -0.12269158661365509, -0.22757183015346527, 0.09215330332517624, -0.2006046026945114, 0.20240750908851624, -0.1969238817691803, -0.11059779673814774, 0.237418532371521, 0.3592382073402405, 0.16422118246555328, 0.32089516520500183, 0.37697011232376...
https://pimcore.com/docs/platform//Datahub_Simple_Rest/Indexing_Details#indexing-details
Indexing Details
Indexing Details
[ 0.053728073835372925, -0.22518286108970642, -0.3232469856739044, 0.44076985120773315, -0.16393683850765228, 0.10507682710886002, 0.3290131986141205, 0.08870777487754822, -0.279812216758728, 0.26163625717163086, -0.11547636240720749, -0.12346920371055603, 0.10956478863954544, 0.132248848676...
https://pimcore.com/docs/platform//Datahub_Simple_Rest/Indexing_Details#index-structure
Index Structure All data that is delivered by simple rest endpoints is indexed in elasticsearch indices. Queries and data delivery takes place directly out of the elasticsearch (not from Pimcore database). For each Datahub configuration separate elasticsearch indices will be created and updated. Indexing of data takes ...
Index Structure
[ -0.003970520570874214, -0.16223596036434174, -0.21452009677886963, 0.27500608563423157, -0.2593465745449066, -0.17658357322216034, -0.2009178251028061, -0.0014751804992556572, -0.14589467644691467, 0.13193970918655396, -0.3088657855987549, 0.1853722631931305, 0.17234936356544495, 0.0835452...
https://pimcore.com/docs/platform//Datahub_Simple_Rest/Indexing_Details#indexing-options
Indexing Options Via symfony configuration, detailed indexing options can be configured.
Indexing Options
[ -0.11261489242315292, -0.06428073346614838, -0.30357396602630615, 0.08304020762443542, -0.02452923357486725, -0.22445568442344666, 0.34099462628364563, 0.2873443365097046, 0.014080854132771492, 0.24429626762866974, -0.30709317326545715, -0.05563250184059143, -0.0712958574295044, 0.00153100...
https://pimcore.com/docs/platform//Datahub_Simple_Rest/Indexing_Details#global-options
Global Options Define some global options like automatic data type detection for dynamic objects. pimcore_data_hub_simple_rest: indexing_options: global_options: # Enable numeric detection for dynamic objects (like embedded asset meta data, etc.) numeric_detection: false ...
Global Options
[ -0.3990739583969116, -0.7193206548690796, -0.12389875948429108, 0.05460412800312042, 0.1613578200340271, -0.18853344023227692, -0.09691573679447174, 0.31796401739120483, -0.03793518990278244, 0.3607732653617859, -0.03967855125665665, 0.46002623438835144, -0.06712295860052109, 0.31670188903...
https://pimcore.com/docs/platform//Datahub_Simple_Rest/Indexing_Details#assets
Assets Define, if embedded metadata of assets should be indexed. If, they will be indexed as dynamic objects. pimcore_data_hub_simple_rest: indexing_options: assets: # Enable indexing for exif data enable_exif: true # Enable indexing for xmp data en...
Assets
[ -0.17174984514713287, -0.4361882209777832, -0.21759723126888275, 0.24415262043476105, 0.1751474291086197, -0.14466221630573273, 0.0031308482866734266, 0.3745369613170624, -0.10067662596702576, 0.2026098072528839, -0.30643901228904724, 0.41326406598091125, 0.05053998529911041, 0.03390750288...
https://pimcore.com/docs/platform//Datahub_Simple_Rest/Indexing_Details#number-of-shards
Number of Shards By default, number of shards for indexes is set to 1. Configurations allow to change that for all created indices via the default_number and on index level via the index_specific setting if needed. # Configure number of shards for created indices pimcore_data_hub_simple_rest: indexing_options: ...
Number of Shards
[ -0.3299429714679718, -0.5172531008720398, -0.13828586041927338, 0.2447885423898697, 0.01763094961643219, -0.19855497777462006, 0.29568010568618774, 0.1538745015859604, -0.22403118014335632, 0.352898508310318, -0.18561424314975739, 0.3060345947742462, 0.3416493237018585, 0.15991555154323578...
https://pimcore.com/docs/platform//Datahub_Simple_Rest/Filtering_and_Paging#filtering-and-paging
Filtering and Paging
Filtering and Paging
[ -0.021082939580082893, -0.5636098980903625, -0.3489544093608856, -0.19616948068141937, -0.08345644921064377, -0.24725483357906342, -0.1485915184020996, -0.062434419989585876, -0.24946020543575287, -0.06475597620010376, -0.022817131131887436, -0.037515778094530106, 0.015430103056132793, 0.2...
https://pimcore.com/docs/platform//Datahub_Simple_Rest/Filtering_and_Paging#query-filters
Query Filters Querying can be done using a limited and simplifed subset of the syntax described here. Note There might restrictions regarding nesting levels. If you are using Pimcore 11 you need to remove the o_ prefix. For example use where ((`modificationDate` = '1000') AND ((`id` = '3') OR (`key` = 'lorem-ipsum') ...
Query Filters
[ -0.2311360239982605, -0.08903899043798447, -0.27301889657974243, 0.14731112122535706, -0.30776703357696533, -0.39144331216812134, -0.23880532383918762, 0.36661991477012634, -0.30997636914253235, 0.05734463781118393, -0.30900460481643677, 0.34165433049201965, 0.123735211789608, 0.0938118472...
https://pimcore.com/docs/platform//Datahub_Simple_Rest/Filtering_and_Paging#supported-logic-operators
Supported Logic Operators $not $or $and
Supported Logic Operators
[ 0.00500172283500433, -0.13017494976520538, -0.27031975984573364, -0.06400085240602493, -0.0683111846446991, -0.39979109168052673, 0.16045579314231873, 0.1607203483581543, 0.15293510258197784, 0.3026154041290283, -0.053465813398361206, 0.2800803482532501, -0.2752368748188019, 0.130085587501...
https://pimcore.com/docs/platform//Datahub_Simple_Rest/Filtering_and_Paging#examples
Examples q={"modificationDate" : "1000"} ... SQL equivalent ... where ((`modificationDate` = '1000') ) q=[{"creationDate" : "1000"}, {"modificationDate" : "9999"}] ... where ( ((`creationDate` = '1000') ) AND ((`modificationDate` = '9999') ) ) q={"m...
Examples
[ -0.16438060998916626, 0.13200025260448456, -0.2828441858291626, 0.18567968904972076, -0.3396071195602417, -0.1961413472890854, -0.0741160586476326, 0.4130835235118866, -0.08668600022792816, 0.16939297318458557, 0.11858731508255005, 0.428562194108963, -0.1801740974187851, -0.020679794251918...
https://pimcore.com/docs/platform//Datahub_Simple_Rest/Filtering_and_Paging#paging
Paging The paging can be done via the page_cursor parameter in the query. When loading the next page of a result, use the value provided by the previous response for the page_cursor parameter. The value is available in the link header or via the data attribute page_cursor in the response content.
Paging
[ 0.0221180971711874, -0.4393845200538635, -0.23760151863098145, 0.0647672489285469, -0.4276878833770752, -0.013934512622654438, -0.3050159215927124, 0.05338357761502266, 0.0009137364104390144, 0.3563899099826813, 0.050652239471673965, 0.2373858243227005, 0.419602632522583, -0.05907139927148...
https://pimcore.com/docs/platform//Datahub_Simple_Rest/Filtering_and_Paging#technical-details
Technical Details The page_cursor has two operation modes: for pages below the configured max results window, it uses a numeric value and ES from query. for pages after the max results window, it uses the search_after option of ES - as also suggested here. The max results window can be configured via symfony configur...
Technical Details
[ -0.18766473233699799, -0.5495649576187134, -0.10905562341213226, -0.0895766094326973, -0.2557891309261322, -0.44240039587020874, -0.18509189784526825, 0.04264383390545845, -0.1677718162536621, 0.41561079025268555, -0.07748463749885559, 0.1438004970550537, 0.27296966314315796, -0.0155936274...
https://pimcore.com/docs/platform//Datahub_Simple_Rest#datahub_simple_rest
Datahub_Simple_Rest
Datahub_Simple_Rest
[ -0.02707122452557087, -0.3311344087123871, -0.2843935787677765, -0.05590073764324188, -0.06692541390657425, -0.1633388102054596, 0.1773725301027298, 0.29058539867401123, -0.032505739480257034, 0.20953287184238434, -0.01092915702611208, 0.14881737530231476, 0.24874483048915863, 0.3139364719...
https://pimcore.com/docs/platform//Datahub_Simple_Rest#title:-datahub-simple-rest-api
title: Datahub Simple Rest API
title: Datahub Simple Rest API
[ 0.08539646863937378, -0.12344608455896378, -0.4026844799518585, -0.2605735957622528, -0.13312280178070068, -0.08035815507173538, 0.279434472322464, 0.19417476654052734, 0.1002800390124321, 0.24636320769786835, 0.10102260857820511, 0.10338034480810165, 0.1829470843076706, 0.2910861968994140...
https://pimcore.com/docs/platform//Datahub_Simple_Rest#pimcore-datahub-simple-rest-api
Pimcore Datahub Simple Rest API This extension adds a simple read-only rest API endpoint to Pimcore Datahub for assets and data objects. All exposed data can be configured, is indexed in Elasticsearch and delivered from there for better query performance and scalability. Therefore, it can be used to connect Pimcore to ...
Pimcore Datahub Simple Rest API
[ -0.2091461718082428, -0.18458613753318787, -0.2544783353805542, -0.18220476806163788, -0.25901395082473755, -0.17875605821609497, -0.05852578207850456, 0.10078205168247223, -0.05536547675728798, 0.06329856067895889, -0.4846816062927246, 0.49978509545326233, 0.1991623193025589, 0.3027471899...
https://pimcore.com/docs/platform//Datahub_Simple_Rest#features-in-a-nutshell
Features in a Nutshell Schema and exposed data configuration like with other Datahub adapters Data indexed in and delivered from Elasticsearch indices (no additional load on database when accessing data via rest endpoints) Endpoint documentation and test via Swagger UI Three available endpoints: tree-items: loads al...
Features in a Nutshell
[ -0.017615552991628647, -0.3861328065395355, -0.2619491219520569, -0.07365749031305313, -0.15004204213619232, -0.17122617363929749, -0.15304312109947205, 0.009447125717997551, 0.15355704724788666, 0.08891677856445312, -0.17819912731647491, 0.25569915771484375, -0.08580165356397629, 0.401215...
https://pimcore.com/docs/platform//Datahub_Simple_Rest#documentation-overview
Documentation Overview Installation & Bundle Configuration Endpoint Configuration Details Indexing Details Filter Details
Documentation Overview
[ -0.25377795100212097, -0.38118240237236023, -0.2476494312286377, -0.046638429164886475, 0.04591945931315422, 0.030324209481477737, 0.01844666339457035, -0.20326292514801025, -0.05211203172802925, -0.11502747237682343, -0.03757333382964134, 0.24791240692138672, 0.1512446403503418, 0.3459174...
https://pimcore.com/docs/platform//Datahub_Simple_Rest#further-information
Further Information On other Pimcore Datahub extensions: Datahub (GraphQL API) Datahub File Export Datahub Productsup Datahub CI Hub
Further Information
[ -0.4307246804237366, 0.017385266721248627, -0.2568610906600952, -0.19169937074184418, -0.27376431226730347, -0.11940475553274155, 0.3343685269355774, 0.22018948197364807, 0.08782926946878433, 0.23503288626670837, -0.43664950132369995, 0.37085476517677307, 0.09174259006977081, 0.96682202816...
https://pimcore.com/docs/platform//Datahub_Productsup/Installation/Upgrade#upgrade-information
Upgrade Information Following steps are necessary during updating to newer versions.
Upgrade Information
[ -0.22016730904579163, -0.21716107428073883, -0.18844935297966003, 0.06598692387342453, 0.05852506309747696, -0.04944508150219917, 0.04977540299296379, 0.07004286348819733, -0.2696684002876282, -0.04550585895776749, -0.05604716017842293, 0.030289839953184128, 0.19013381004333496, 0.06546622...
https://pimcore.com/docs/platform//Datahub_Productsup/Installation/Upgrade#upgrade-to-2.0.0
Upgrade to 2.0.0 Added support for Pimcore v11 and dropped support for all previous Pimcore versions.
Upgrade to 2.0.0
[ -0.51540207862854, -0.33421120047569275, -0.159296452999115, -0.07825204730033875, -0.08396557718515396, -0.25175273418426514, 0.12673413753509521, 0.3931771516799927, -0.24677002429962158, 0.2582706809043884, -0.10260789841413498, 0.5807982683181763, -0.019403716549277306, 0.2058241814374...
https://pimcore.com/docs/platform//Datahub_Productsup/Installation/Upgrade#upgrade-to-1.1.0
Upgrade to 1.1.0 Execute all migrations of the bundle.
Upgrade to 1.1.0
[ -0.3606078028678894, -0.28820350766181946, -0.21636199951171875, -0.03308386728167534, 0.1089639887213707, 0.05171853303909302, 0.14973768591880798, 0.3632907569408417, -0.14371924102306366, 0.26242485642433167, -0.025727316737174988, 0.32761669158935547, -0.200162872672081, 0.150005802512...
https://pimcore.com/docs/platform//Datahub_Productsup/Installation/Upgrade#upgrade-to-pimcore-x
Upgrade to Pimcore X Update to latest (allowed) bundle version in Pimcore 6.9 and execute all migrations. Then update to Pimcore X.
Upgrade to Pimcore X
[ -0.5807572603225708, -0.20940947532653809, -0.1540290266275406, 0.007363408338278532, 0.04493528977036476, -0.16714733839035034, 0.046648457646369934, 0.2623489201068878, -0.2353164553642273, 0.23198316991329193, -0.19107705354690552, 0.5369307398796082, -0.01311113778501749, 0.18771138787...
https://pimcore.com/docs/platform//Datahub_Productsup/Installation#installation
Installation
Installation
[ -0.06728437542915344, -0.4834894835948944, -0.3417288661003113, 0.20734061300754547, 0.06259846687316895, 0.09173910319805145, -0.07573223114013672, -0.07214274257421494, 0.15155638754367828, 0.1816904991865158, -0.07461769878864288, 0.14365136623382568, 0.041423697024583817, 0.05546558648...
https://pimcore.com/docs/platform//Datahub_Productsup/Installation#required-bundles
Required Bundles This bundle depends on two other bundles that need to be installed first: Pimcore Datahub Pimcore Datahub file export
Required Bundles
[ -0.364398330450058, -0.13160398602485657, -0.17611345648765564, -0.05599253624677658, -0.06289181858301163, 0.0755486935377121, 0.20155197381973267, 0.2326286882162094, -0.19724148511886597, 0.17766478657722473, -0.11370866000652313, 0.2180393934249878, 0.1097579151391983, 0.46510171890258...
https://pimcore.com/docs/platform//Datahub_Productsup/Installation#installation-process
Installation Process
Installation Process
[ 0.08020234853029251, -0.4312822222709656, -0.29270926117897034, 0.10546649992465973, -0.1146225556731224, 0.020290104672312737, -0.026727845892310143, -0.1865369826555252, 0.10249292105436325, 0.14968742430210114, -0.0016273048240691423, 0.1121966689825058, 0.1848244071006775, -0.010504826...
https://pimcore.com/docs/platform//Datahub_Productsup/Installation#for-pimcore->=-10.5
For Pimcore >= 10.5 To install Datahub Productsup for Pimcore 10.5 or higher, follow the three steps below: Install the required dependencies: composer require pimcore/data-hub-productsup Make sure the bundle is enabled in the config/bundles.php file. The following lines should be added: use Pimcore\Bundle\Data...
For Pimcore >= 10.5
[ -0.37359005212783813, -0.17275811731815338, -0.1253918707370758, -0.07360835373401642, -0.14942283928394318, -0.21632063388824463, 0.1887122243642807, 0.05492332950234413, -0.2632428705692291, 0.05629904940724373, -0.08377891033887863, 0.604041337966919, -0.014118443243205547, 0.4068758487...
https://pimcore.com/docs/platform//Datahub_Productsup/Installation#for-older-versions
For Older Versions To install the Datahub Productsup bundle for older versions of Pimcore, please run the following commands instead: composer require pimcore/data-hub-productsup bin/console pimcore:bundle:enable PimcoreDataHubProductsupBundle bin/console pimcore:bundle:install PimcoreDataHubProductsupBundle Please m...
For Older Versions
[ -0.40907022356987, -0.21809956431388855, -0.13906161487102509, -0.15275342762470245, -0.08767524361610413, -0.2291404902935028, 0.28892984986305237, -0.08002914488315582, -0.25007733702659607, 0.1000981554389, -0.13202878832817078, 0.6058592796325684, -0.09324491024017334, 0.38075298070907...
https://pimcore.com/docs/platform//Datahub_Productsup/Basic_Configuration#basic-configuration
Basic configuration
Basic configuration
[ -0.08990374207496643, -0.7848793864250183, -0.2114167958498001, 0.03796647489070892, 0.24935659766197205, -0.012810018844902515, 0.2289038449525833, -0.1955823004245758, -0.33884769678115845, 0.32761746644973755, 0.18423748016357422, -0.13237307965755463, 0.062167078256607056, 0.3640154600...
https://pimcore.com/docs/platform//Datahub_Productsup/Basic_Configuration#general-settings
General settings Active: Enable/Disable the endpoint. Description: Provide a description for the endpoint.
General settings
[ -0.30738991498947144, -0.7662256360054016, -0.1631728708744049, -0.22388844192028046, -0.006975493859499693, -0.24741123616695404, 0.07946769893169403, -0.25226283073425293, 0.04416503757238388, 0.054567378014326096, -0.006384052336215973, 0.07270733267068863, 0.08280971646308899, 0.123041...
https://pimcore.com/docs/platform//Datahub_Productsup/Basic_Configuration#schema-definition
Schema definition Configure the exported data with drag & drop as you do it in the regular grid column definition in Pimcore. Optionally define image / video thumbnails if you are going to export assets - if no thumbnail is selected, the original asset path is used.
Schema definition
[ -0.3134411573410034, 0.06347422301769257, -0.2127249836921692, 0.05106982961297035, 0.10935809463262558, -0.09531255066394806, 0.15665633976459503, 0.20554807782173157, -0.10212008655071259, 0.23675233125686646, -0.3109007179737091, 0.42247357964515686, 0.11854863166809082, 0.4870143830776...
https://pimcore.com/docs/platform//Datahub_Productsup/Basic_Configuration#workspace-definition
Workspace definition Workspaces - restrict the export to specific folders. Custom export class - define a custom Class which should execute the export - default is to Pimcore\Bundle\DataHubProductsupBundle\Exporter\Productsup. If you want to filter further items you can use the pimcore.datahub.fileExport.isValidEx...
Workspace definition
[ -0.23998798429965973, 0.05987231805920601, -0.1677696704864502, 0.03872087970376015, -0.4043349027633667, -0.24886779487133026, 0.2641405463218689, 0.3304655849933624, -0.03488348796963692, 0.18138490617275238, -0.4674575626850128, 0.30825892090797424, 0.0356714092195034, 0.521908223628997...
https://pimcore.com/docs/platform//Datahub_Productsup/Basic_Configuration#trigger-for-delivery
Trigger for delivery Defines when the data should be written to the cache. Disabled: The export ist just done by the export command in the ProcessManger (more details later on). Each export is a full export. Deliver directly on save: When the object is saved, the data is directly written to the cache table. This ...
Trigger for delivery
[ -0.19771312177181244, -0.3407827615737915, -0.1356971710920334, 0.2515751123428345, -0.17196190357208252, -0.3575745224952698, 0.33733323216438293, -0.16416364908218384, 0.16479051113128662, 0.11870982497930527, 0.12083989381790161, 0.052504971623420715, 0.13302476704120636, 0.163977056741...
https://pimcore.com/docs/platform//Datahub_Productsup/Basic_Configuration#delivery-endpoint
Delivery endpoint Activate delivery endpoint: Generally enables the endpoint. productsup fetches the product data from this endpoint, the URL of the endpoint is shown in the configuration panel. Security Token: This token has to be sent as Bearer Token by productsup (HTTP Header with the name Authorization). Pleas...
Delivery endpoint
[ -0.18840990960597992, -0.38759851455688477, -0.09485436975955963, -0.3082464337348938, -0.2834874093532562, -0.42205026745796204, 0.09645403176546097, -0.3847127854824066, -0.13132017850875854, -0.061915818601846695, -0.1332072913646698, 0.6517927646636963, 0.41670578718185425, 0.591966152...
https://pimcore.com/docs/platform//Datahub_Productsup/Basic_Configuration#order-endpoint
Order endpoint Activate order endpoint: Generally enables the endpoint. productsup pushes the orders to this endpoint. Parent folder: The folder where to productsup orders should be saved to. Security Token: This token has to be sent as Bearer Token by productsup (HTTP Header with the name Authorization). Please ...
Order endpoint
[ 0.011707634665071964, -0.1655665636062622, -0.08890532702207565, -0.04460156708955765, -0.2214927226305008, -0.3251737058162689, 0.014469452202320099, -0.41850823163986206, -0.1545300930738449, -0.14203451573848724, -0.27684909105300903, 0.5388575196266174, 0.20817750692367554, 0.460148274...
https://pimcore.com/docs/platform//Datahub_Productsup/Basic_Configuration#saving-configurations
Saving Configurations There are two methods for saving configurations: Save: Only saves configuration, does not have any influence on cached data or queue entries. Save, reset and clear queue: Saves configurations, resets cache and resets and fills queue will all relevant elements for this export.
Saving Configurations
[ -0.3629854917526245, -0.1863802820444107, -0.18089671432971954, -0.005869252607226372, 0.1446099877357483, -0.05395055562257767, 0.28030359745025635, 0.01589128002524376, -0.22391249239444733, 0.4039500653743744, -0.289665549993515, -0.019455112516880035, 0.31779491901397705, 0.14671838283...
https://pimcore.com/docs/platform//Datahub_Productsup/Setup_Delivery#setup---delivery-endpoint
Setup - Delivery endpoint The delivery endpoint uses cached items, so you have to set up a command which calculates these cached items on a regular basis. If you have set the save hook to Deliver directly on save you can omit this step, but it is recommended to set up the process because you can rebuild the cache table...
Setup - Delivery endpoint
[ -0.3597927987575531, -0.042681917548179626, -0.16676069796085358, -0.1122189462184906, -0.23178017139434814, -0.13701854646205902, 0.1913769394159317, 0.00795485358685255, 0.1568727344274521, 0.13920870423316956, 0.21523848176002502, 0.3654592037200928, 0.08225540071725845, 0.6404368281364...
https://pimcore.com/docs/platform//Datahub_Productsup/Events#events
Events There are a couple of events which you can use to modify the exported data or to modify the imported order objects. pimcore.dataobject.postCsvItemExport Pimcore\Bundle\DataHubFileExportBundle\Event\IsValidExportItemEvent Pimcore\Bundle\DataHubProductsupBundle\Event\DeliveryModifyResultEvent Pimcore\Bundl...
Events
[ -0.15734058618545532, 0.11498674005270004, -0.2104920595884323, 0.07109430432319641, 0.04268171265721321, -0.24203653633594513, -0.011879654601216316, -0.14601461589336395, -0.20233865082263947, 0.34548816084861755, -0.26328736543655396, 0.1381644308567047, 0.2907775342464447, 0.5422767996...
https://pimcore.com/docs/platform//Datahub_Productsup/Events#sample-implementation
Sample implementation
Sample implementation
[ 0.02920866571366787, -0.5835044980049133, -0.2219708114862442, 0.0711018517613411, -0.18926845490932465, -0.3459518551826477, 0.34174877405166626, 0.06034952402114868, 0.03263115510344505, 0.4910392165184021, 0.533591628074646, 0.38926321268081665, -0.2539287507534027, 0.34903642535209656,...
https://pimcore.com/docs/platform//Datahub_Productsup/Events#sample-configuration-for-eventlistener
Sample configuration for EventListener AppBundle\EventListener\DataHubProductsupListener: tags: - { name: kernel.event_listener, event: pimcore.dataobject.postCsvItemExport, method: postCsvItemExport } - { name: kernel.event_listener, event: Pimcore\Bundle\DataHubFileExportBundle\Eve...
Sample configuration for EventListener
[ -0.38997316360473633, -0.16177600622177124, -0.11543609201908112, 0.0017449107253924012, 0.002235011663287878, -0.29023733735084534, 0.18615181744098663, -0.06141413003206253, -0.04445052519440651, 0.16534948348999023, -0.023622646927833557, 0.4446171820163727, -0.06387601792812347, 0.3098...
https://pimcore.com/docs/platform//Datahub_Productsup/Events#the-appropriate-eventlistener-would-look-like-this
The appropriate EventListener would look like this <?php namespace AppBundle\EventListener; use Pimcore\Bundle\DataHubProductsupBundle\Event\DeliveryModifyResultEvent; use Pimcore\Bundle\DataHubProductsupBundle\Event\OrderItemPreSaveEvent; use Pimcore\Bundle\DataHubProductsupBundle\Event\OrderPreSaveEvent; use Pimc...
The appropriate EventListener would look like this
[ -0.5163934826850891, 0.06521698832511902, -0.16413410007953644, 0.2600277066230774, -0.06592220813035965, -0.3046436309814453, 0.17300978302955627, 0.13896799087524414, 0.051356155425310135, 0.2584923207759857, -0.09616555273532867, 0.2732393145561218, -0.16286146640777588, 0.3486401736736...
https://pimcore.com/docs/platform//Datahub_Productsup#datahub_productsup
Datahub_Productsup
Datahub_Productsup
[ -0.22813256084918976, -0.27376696467399597, -0.23337997496128082, -0.15648651123046875, -0.2680560350418091, -0.35108262300491333, 0.4675406515598297, 0.004215290304273367, 0.027443094179034233, -0.06290245801210403, 0.07945793867111206, 0.34496009349823, -0.12733523547649384, 0.9047080278...
https://pimcore.com/docs/platform//Datahub_Productsup#title:-datahub-productsup
title: Datahub Productsup
title: Datahub Productsup
[ 0.04599969461560249, -0.13485996425151825, -0.30917447805404663, -0.2511872351169586, -0.1555008888244629, -0.14674045145511627, 0.412352591753006, -0.11818645149469376, 0.049467552453279495, -0.014364016242325306, 0.08668067306280136, 0.24120257794857025, -0.017919132485985756, 0.72453927...
https://pimcore.com/docs/platform//Datahub_Productsup#pimcore-datahub-productsup
Pimcore DataHub Productsup This bundle integrates product data syndication platform productsup to Pimcore Datahub and allows: to distribute product data to marketplaces and marketing channels to import order data to Pimcore.
Pimcore DataHub Productsup
[ -0.13206055760383606, -0.26913538575172424, -0.13338641822338104, -0.2995908260345459, -0.13909238576889038, -0.12637397646903992, 0.173555389046669, -0.15720731019973755, -0.1421298235654831, -0.14980968832969666, -0.2790394723415375, 0.2838020324707031, -0.02701282501220703, 0.8962406516...
https://pimcore.com/docs/platform//Datahub_Productsup#features-in-a-nutshell
Features in a Nutshell Schema and exposed data configuration like with other Datahub adapters via drag & drop. Caching of exported data to get a high performance API. URL service which can be used by Productsup to retrieve the product data URL service to import orders from Productsup.
Features in a Nutshell
[ 0.01418274361640215, -0.43766123056411743, -0.30732935667037964, -0.05697435140609741, -0.08040580153465271, -0.05544675514101982, 0.1370071917772293, -0.14485229551792145, 0.22960811853408813, -0.02209687978029251, -0.26388949155807495, 0.25635775923728943, -0.027267325669527054, 0.918208...
https://pimcore.com/docs/platform//Datahub_Productsup#documentation-overview
Documentation Overview Installation Basic configuration Setup Delivery Events
Documentation Overview
[ -0.3266651928424835, -0.30015814304351807, -0.1596575677394867, 0.0029724908526986837, 0.029957164078950882, -0.04349620267748833, 0.16625523567199707, -0.292010098695755, -0.23068028688430786, 0.05973769351840019, 0.2830021381378174, 0.1702468991279602, 0.09809200465679169, 0.380205422639...
https://pimcore.com/docs/platform//Datahub_Productsup#further-information
Further Information On other Pimcore Datahub adapters: Datahub (GraphQL API) Datahub Simple Rest API Datahub File Export Datahub CI Hub
Further Information
[ -0.4128083884716034, -0.15535180270671844, -0.24423477053642273, -0.1421189159154892, -0.13154685497283936, -0.17410236597061157, 0.4233682155609131, 0.20135566592216492, 0.14634902775287628, 0.3163238763809204, -0.4305741786956787, 0.4061203896999359, 0.16804994642734528, 0.90761291980743...
https://pimcore.com/docs/platform//Datahub_CI_Hub/Installation#installation
Installation
Installation
[ -0.06728437542915344, -0.4834894835948944, -0.3417288661003113, 0.20734061300754547, 0.06259846687316895, 0.09173910319805145, -0.07573223114013672, -0.07214274257421494, 0.15155638754367828, 0.1816904991865158, -0.07461769878864288, 0.14365136623382568, 0.041423697024583817, 0.05546558648...
https://pimcore.com/docs/platform//Datahub_CI_Hub/Installation#required-bundles
Required Bundles This bundle depends on two other bundles that need to be installed first: Pimcore Datahub Pimcore Datahub Simple Rest API
Required Bundles
[ -0.20986458659172058, -0.2146553099155426, -0.21268920600414276, -0.12893635034561157, -0.06548866629600525, 0.039012931287288666, 0.11165803670883179, 0.1505104899406433, -0.10825514793395996, 0.09656885266304016, -0.022601980715990067, 0.3226471543312073, 0.17515452206134796, 0.291188955...
https://pimcore.com/docs/platform//Datahub_CI_Hub/Installation#installation-process
Installation Process
Installation Process
[ 0.08020234853029251, -0.4312822222709656, -0.29270926117897034, 0.10546649992465973, -0.1146225556731224, 0.020290104672312737, -0.026727845892310143, -0.1865369826555252, 0.10249292105436325, 0.14968742430210114, -0.0016273048240691423, 0.1121966689825058, 0.1848244071006775, -0.010504826...
https://pimcore.com/docs/platform//Datahub_CI_Hub/Installation#for-pimcore->=-10.5
For Pimcore >= 10.5 To install Pimcore Datahub CI Hub for Pimcore 10.5 or higher, follow the three steps below: Install the required dependencies: composer require pimcore/data-hub-ci-hub Make sure the bundle is enabled in the config/bundles.php file. The following lines should be added: use Pimcore\Bundle\Data...
For Pimcore >= 10.5
[ -0.4235644042491913, -0.05620194226503372, -0.14094431698322296, -0.0486023835837841, -0.1911655217409134, -0.10548572987318039, 0.12238023430109024, 0.08891693502664566, -0.23317104578018188, 0.3008989691734314, -0.20899692177772522, 0.48047927021980286, 0.07733790576457977, 0.42837795615...
https://pimcore.com/docs/platform//Datahub_CI_Hub/Installation#for-older-versions
For Older Versions To install the Datahub CI Hub bundle for older versions of Pimcore, please run the following commands instead: composer require pimcore/data-hub-ci-hub bin/console pimcore:bundle:enable PimcoreDataHubCiHubBundle bin/console pimcore:bundle:install PimcoreDataHubCiHubBundle Please make sure, that the...
For Older Versions
[ -0.4194749593734741, -0.06467510759830475, -0.16986995935440063, -0.07916722446680069, -0.05805913731455803, -0.06803879141807556, 0.2555125951766968, 0.006336950231343508, -0.2610864043235779, 0.2694595754146576, -0.19061245024204254, 0.478142112493515, 0.03378426283597946, 0.289412796497...
https://pimcore.com/docs/platform//Datahub_CI_Hub/Upgrade_Notes#upgrade-notes
Upgrade Notes Things to consider before or when upgrading to new versions.
Upgrade Notes
[ -0.1076802983880043, -0.10577098280191422, -0.2649495005607605, -0.05663592368364334, 0.05037759989500046, 0.0696263313293457, -0.22298568487167358, 0.027105292305350304, -0.17597933113574982, -0.014418283477425575, 0.00872823316603899, -0.034465327858924866, 0.009204471483826637, -0.08411...
https://pimcore.com/docs/platform//Datahub_CI_Hub/Upgrade_Notes#v1.2.0
v1.2.0 It is possible to add more than one API-key per configuration now. Therefore, the API-key gets stored as an array in the configuration. Configurations from previous versions are still supported, but they get converted to the new format as soon as they get saved.
v1.2.0
[ 0.08670546859502792, -0.34976354241371155, -0.20461799204349518, 0.021994249895215034, 0.004646020941436291, -0.12679100036621094, -0.05365267023444176, 0.08688388764858246, 0.13143901526927948, 0.20065444707870483, -0.08594918996095657, 0.304383248090744, 0.012263383716344833, 0.431778490...
https://pimcore.com/docs/platform//Datahub_CI_Hub#datahub_ci_hub
Datahub_CI_Hub
Datahub_CI_Hub
[ -0.28559717535972595, -0.2154756486415863, -0.26363733410835266, -0.08639595657587051, -0.189633309841156, -0.15923504531383514, 0.4852813184261322, -0.02325136587023735, 0.05578625947237015, 0.22777993977069855, -0.17166359722614288, 0.20602940022945404, 0.19093871116638184, 0.84337520599...
https://pimcore.com/docs/platform//Datahub_CI_Hub#title:-datahub-ci-hub
title: Datahub CI Hub
title: Datahub CI Hub
[ -0.017450926825404167, -0.08058425039052963, -0.3542352020740509, -0.22723448276519775, -0.1133563295006752, 0.03245311230421066, 0.4863651692867279, -0.03046727366745472, 0.13721495866775513, 0.24043156206607819, -0.052111007273197174, 0.055158697068691254, 0.09336074441671371, 0.75204831...
https://pimcore.com/docs/platform//Datahub_CI_Hub#pimcore-datahub-ci-hub-integration
Pimcore Datahub CI Hub integration This bundle integrates CI Hub to Pimcore Datahub and therefore allows integrating Pimcore assets and data objects directly into Adobe and Microsoft Products.
Pimcore Datahub CI Hub integration
[ -0.3985777199268341, -0.27422016859054565, -0.20379965007305145, -0.1254415363073349, -0.35584720969200134, 0.008017921820282936, 0.24472981691360474, -0.08244771510362625, -0.06342831999063492, 0.02703666128218174, -0.3207370936870575, 0.408473938703537, 0.051401350647211075, 0.7976845502...
https://pimcore.com/docs/platform//Datahub_CI_Hub#features-in-a-nutshell
Features in a Nutshell Schema and exposed data configuration like with other Datahub adapters via drag & drop. Caching of exported data to get a high performance API. Possibility to use a token for connecting CI Hub with your Pimcore Datahub endpoint Note: The endpoint config requires Assets Delivery thumbnail...
Features in a Nutshell
[ -0.22484031319618225, -0.18071046471595764, -0.2208574116230011, -0.14698675274848938, -0.30941042304039, -0.046695005148649216, 0.006135197356343269, -0.006809778977185488, -0.0184648334980011, 0.18002617359161377, -0.3396158814430237, 0.4400770366191864, 0.08453599363565445, 0.7301782369...
https://pimcore.com/docs/platform//Datahub_CI_Hub#documentation-overview
Documentation Overview Since this bundle is based on the Pimcore Datahub Simple Rest API bundle, see its documentation for details on configuration and usage. For installation details see installation page.
Documentation Overview
[ -0.1643088459968567, -0.28496167063713074, -0.23865792155265808, 0.007630764041095972, -0.21691374480724335, -0.16242459416389465, 0.25134551525115967, 0.0020152656361460686, -0.29362621903419495, -0.0272873193025589, -0.1515955775976181, 0.3317722678184509, 0.18928062915802002, 0.26534515...
https://pimcore.com/docs/platform//Datahub_CI_Hub#further-information
Further Information On other Pimcore Datahub adapters: Datahub (GraphQL API) Datahub Simple Rest API Datahub File Export Datahub Productsup
Further Information
[ -0.37488070130348206, -0.1624666154384613, -0.24275417625904083, -0.1674955189228058, -0.14554336667060852, -0.23517398536205292, 0.43264806270599365, 0.20619335770606995, 0.15393315255641937, 0.23792235553264618, -0.38153350353240967, 0.48363474011421204, 0.04205608367919922, 0.9554967284...
https://pimcore.com/docs/platform//Datahub_Webhooks/Installation#installation
Installation :::info This bundle is only supported on Pimcore Core Framework 11. :::
Installation
[ -0.4241994321346283, -0.42160364985466003, -0.20330940186977386, 0.15933425724506378, 0.1070602685213089, -0.0724046379327774, -0.17030563950538635, 0.04479844123125076, -0.2477792203426361, 0.12073002755641937, -0.08562542498111725, 0.4577994644641876, -0.06025701016187668, 0.319434851408...