/home/sharedstore/public_html/prestashop.sharedstore.ma/src/Adapter/Meta
NameSizeModeActions
CommandHandler/-0755rm
QueryHandler/-0755rm
MetaDataProvider.php37510644editdlrm
MetaEraser.php23870644editdlrm
SEOOptionsDataConfiguration.php27140644editdlrm
SetUpUrlsDataConfiguration.php64040644editdlrm
ShopUrlDataConfiguration.php43460644editdlrm
UrlSchemaDataConfiguration.php37900644editdlrm
Edit: /home/sharedstore/public_html/prestashop.sharedstore.ma/src/Adapter/Meta/MetaEraser.php (2387B)
* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShop\PrestaShop\Adapter\Meta; use Meta; use PrestaShopCollection; use PrestaShopException; /** * Class MetaEraser is responsible for removing data from meta entity. */ final class MetaEraser { /** * Erases data from meta entity. * * @param array $metaIds * * @return array * * @throws PrestaShopException */ public function erase(array $metaIds) { $errors = []; if (empty($metaIds)) { $errors[] = [ 'key' => 'You must select at least one element to delete.', 'parameters' => [], 'domain' => 'Admin.Notifications.Error', ]; return $errors; } $metaData = new PrestaShopCollection(Meta::class); $metaData->where('id_meta', 'in', $metaIds); /** @var Meta $item */ foreach ($metaData->getResults() as $item) { if (!$item->delete()) { $errors[] = [ 'key' => 'Can\'t delete #%id%', 'parameters' => [ '%id%' => $item->id, ], 'domain' => 'Admin.Notifications.Error', ]; continue; } } return $errors; } }