Files
2025-06-24 14:14:35 +02:00

23 lines
745 B
PHP

<?php
/**
* @author PrestaShop SA and Contributors <contact@prestashop.com>
* @copyright Since 2007 PrestaShop SA and Contributors
* @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
*/
if (!defined('_PS_VERSION_')) {
exit;
}
class StEasyVideoAjaxModuleFrontController extends ModuleFrontController
{
public function initContent()
{
$id_product = (int)Tools::getValue('id_product');
$product = new Product($id_product, false, Configuration::get('PS_LANG_DEFAULT'), $this->context->shop->id);
$video_data = $this->module->getVideosByProduct($product);
ob_end_clean();
header('Content-Type: application/json');
die(json_encode($video_data));
}
}