/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/GridInterface.php (1953B)
* @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\Data\GridDataInterface; use PrestaShop\PrestaShop\Core\Grid\Definition\GridDefinitionInterface; use PrestaShop\PrestaShop\Core\Grid\Search\SearchCriteriaInterface; use Symfony\Component\Form\FormInterface; /** * Interface GridInterface defines contract for grid. */ interface GridInterface { /** * Get grid definition. * * @return GridDefinitionInterface */ public function getDefinition(); /** * Get grid data. * * @return GridDataInterface */ public function getData(); /** * Get grid data search criteria. * * @return SearchCriteriaInterface */ public function getSearchCriteria(); /** * Get grid filter form. * * @return FormInterface */ public function getFilterForm(); }