/home/sharedstore/public_html/prestashop.sharedstore.ma/src/Core/Grid
NameSizeModeActions
Action/-0755rm
Collection/-0755rm
Column/-0755rm
Data/-0755rm
Definition/-0755rm
Exception/-0755rm
Factory/-0755rm
Filter/-0755rm
Position/-0755rm
Presenter/-0755rm
Query/-0755rm
Record/-0755rm
Search/-0755rm
Grid.php28190644editdlrm
GridFactory.php37750644editdlrm
GridFactoryInterface.php15740644editdlrm
GridInterface.php19530644editdlrm
Edit: /home/sharedstore/public_html/prestashop.sharedstore.ma/src/Core/Grid/GridFactoryInterface.php (1574B)
* @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\Grid; use PrestaShop\PrestaShop\Core\Grid\Search\SearchCriteriaInterface; /** * Interface GridFactoryInterface exposes contract for grid factory which is responsible for creating Grid instances. */ interface GridFactoryInterface { /** * Create grid with filtered data. * * @param SearchCriteriaInterface $searchCriteria * * @return GridInterface */ public function getGrid(SearchCriteriaInterface $searchCriteria); }