PHP code example of module-toolkit / adminhtml-helper
1. Go to this page and download the library: Download module-toolkit/adminhtml-helper library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
module-toolkit / adminhtml-helper example snippets
namespace Custom\Module\Model;
use ModuleToolkit\AdminhtmlHelper\Model\GridCollectionInterface;
class GridCollection implements GridCollectionInterface
{
//implement current interface
}
namespace Custom\Module\Import;
use ModuleToolkit\AdminhtmlHelper\Model\ImportSaveHandlerInterface;
class CustomSaverHandler implements ImportSaveHandlerInterface
{
//implement current interface
}