/home/sharedstore/public_html/prestashop.sharedstore.ma/src/Core/Addon
NameSizeModeActions
Module/-0755rm
Theme/-0755rm
AddonInterface.php13620644editdlrm
AddonListFilter.php42960644editdlrm
AddonListFilterOrigin.php14640644editdlrm
AddonListFilterStatus.php14300644editdlrm
AddonListFilterType.php13120644editdlrm
AddonListItem.php12720644editdlrm
AddonManagerInterface.php14450644editdlrm
AddonRepositoryInterface.php16590644editdlrm
Edit: /home/sharedstore/public_html/prestashop.sharedstore.ma/src/Core/Addon/AddonRepositoryInterface.php (1659B)
* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShop\PrestaShop\Core\Addon; interface AddonRepositoryInterface { /** * @param string $name theme name * * @return AddonInterface the theme or module */ public function getInstanceByName($name); /** * @param AddonListFilter $filter * * @return AddonInterface[] retrieve a list of addons, regarding the $filter used */ public function getFilteredList(AddonListFilter $filter); /** * @return AddonInterface[] retrieve a list of addons, regardless any $filter */ public function getList(); }