Files
kupshop/bundles/KupShop/CatalogBundle/Util/CampaignsUtil.php
2025-08-02 16:30:27 +02:00

23 lines
394 B
PHP

<?php
namespace KupShop\CatalogBundle\Util;
class CampaignsUtil
{
public function getCampaigns()
{
return getCampaigns();
}
public function getCampaignByUrl($url)
{
foreach ($this->getCampaigns() as $key => $campaign) {
if (getVal('url', $campaign) == $url) {
return $key;
}
}
return null;
}
}