All Projects → Tym17 → Magento2-Admin-Module-Sample

Tym17 / Magento2-Admin-Module-Sample

Licence: AFL-3.0 License
Minimal code to create an admin/backend module in Magento2

Programming Languages

PHP
23972 projects - #3 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to Magento2-Admin-Module-Sample

Gentelella
Welcome to Gentelella - Responsive Bootstrap Admin Application based on the Foundation of Symfony and Gentelella!
Stars: ✭ 100 (+122.22%)
Mutual labels:  admin, backend
Appy
🚀 A full stack boilerplate web app
Stars: ✭ 225 (+400%)
Mutual labels:  admin, backend
Vue2 Element
基于vue2 + vue-router2 + element-ui + vuex2 + fetch + webpack2 企业级后台管理系统最佳实践
Stars: ✭ 112 (+148.89%)
Mutual labels:  admin, backend
Easyadminbundle
EasyAdmin is a fast, beautiful and modern admin generator for Symfony applications.
Stars: ✭ 3,391 (+7435.56%)
Mutual labels:  admin, backend
umbrella
Umbrella framework
Stars: ✭ 98 (+117.78%)
Mutual labels:  admin, backend
Open source bms
Open Source BMS 后台管理系统
Stars: ✭ 351 (+680%)
Mutual labels:  admin, backend
Blogetc
Easily add a full Laravel blog (with built in admin panel and public views) to your laravel project with this simple package.
Stars: ✭ 198 (+340%)
Mutual labels:  admin, backend
Generator Mage2
Yeoman generator for Magento 2 extensions (modules and themes)
Stars: ✭ 12 (-73.33%)
Mutual labels:  module, magento2
yii2-admin-template
Yii2 application template targeted for backends.
Stars: ✭ 17 (-62.22%)
Mutual labels:  admin, backend
ct-material-dashboard-pro-laravel
Material Pro Dashboard For Laravel Framework 9.x and Up
Stars: ✭ 18 (-60%)
Mutual labels:  admin, backend
plain-free-bootstrap-admin-template
Free Bootstrap 5 Admin and Dashboard Template that comes with all essential dashboard components, elements, charts, graph and application pages. Download now for free and use with personal or commercial projects.
Stars: ✭ 141 (+213.33%)
Mutual labels:  admin, backend
andresrodriguez55.github.io
Personal blog and portfolio with administration panel, notification system and comment system.
Stars: ✭ 18 (-60%)
Mutual labels:  admin, backend
magento2-product-grid-category-filter
Add category column and filter in an efficient way to the product grid in the Magento 2 admin.
Stars: ✭ 22 (-51.11%)
Mutual labels:  admin, magento2
Sleepingowladmin
🦉 Administrative interface builder for Laravel (Laravel admin)
Stars: ✭ 671 (+1391.11%)
Mutual labels:  admin, backend
Magentoextensions
Magento Extension Directory 1> Themes Switcher 2> Default Shipping On Cart 3> Upshare 4> Product Image Optimizer 5> Idealo Product Export 6> magento Google shopping Api v2 7>Google feed and facebook feed 8> Pdf upload in magento media wysiwyg 9> Product Image optimizer. If You want magento 2 extensions 1>Advance Layred Navigation(including SEO URL, Rating as filter, slider filter, Ajax Filtering), 2>Attribute Pages with SEO and Custom URL key(you can do all kind of seo on those pages with logos) 3>Improved Sorting (Enable users to view products by options as 'Best Sellers', 'Top Rated', 'Most Viewed' etc.) 4>Custom Stock Status(Add statuses to products automatically or manually, Create multiple custom stock statuses, Upload special icons for stock statuses) 5>Product Labels(Using this extension you can add any label to your produts on product page or category page) 6>Custom Order Number(Using this extension you can customize order, invoice, shippment, credit memo Number) 7>All type of file upload in Wysiwyg(pdf, zip, doc etc file upload in wysiwyg), 8>Infinite Scroll, 9>Multiple FlatRate Shipping, 10>Open Api,Google api for currency Rates, 11>Product Attribute's Description, 12>Store and Currency switcher according to Ip address Please Contact me and All those extensions are paid with installation and configuration are free support.
Stars: ✭ 106 (+135.56%)
Mutual labels:  module, magento2
Crud
Build custom admin panels. Fast!
Stars: ✭ 2,144 (+4664.44%)
Mutual labels:  admin, backend
Mage2vuestorefront
Magento to Vue-storefront datapump - synchronizes Products, Categories and Product-to-category links between your Magento2 API and NoSQL database of vue-storefront
Stars: ✭ 183 (+306.67%)
Mutual labels:  backend, magento2
Elasticsuite
Smile ElasticSuite - Magento 2 merchandising and search engine built on ElasticSearch
Stars: ✭ 647 (+1337.78%)
Mutual labels:  module, magento2
Magento2 NewsletterSubscribeAtCheckout
This Magento 2 module allows you to enable a newsletter subscription checkbox on the checkout page.
Stars: ✭ 13 (-71.11%)
Mutual labels:  backend, magento2
AdminOnSteroids
Various ProcessWire admin tweaks to boost productivity.
Stars: ✭ 39 (-13.33%)
Mutual labels:  admin, module

AdminSample module

  • To add a menu/sub-menu, check out the following files:
    • etc/adminhtml/menu.xml
    • etc/adminhtml/routes.xml
  • To bind a page to those submenus, check out the following files:
    • You will notice the path to look like the action parameter from etc/adminhtml/menu.xml
    • Controller/Adminhtml/SampleOne/Index.php
    • Controller/Adminhtml/SampleTwo/Index.php
  • To add content to your freshly created pages, check out the following files:
    • view/adminhtml/layout/adminsample_sampleone_index.xml
    • view/adminhtml/templates/sample/one.phtml
  • To add content to your freshly created pages and pass something to it, You can also check:
    • view/adminhtml/layout/adminsample_sampletwo_index.xml
    • Controller/Adminhtml/SampleTwo/Index.php
    • view/adminhtml/templates/sample/two.phtml
  • To set and retrieve values from Magento2's configuration you can check these files:
    • Controller/Adminhtml/SampleTwo/Index.php
    • etc/adminhtml/system.xml Configuration menu in Stores/Settings/Configuration is set here
    • etc/config.xml Default configuration
    • view/adminhtml/templates/sample/two.phtml
  • To see how ACLs are made, check these files:
    • etc/acl.xml
    • You'll notice that most resource elements are from etc/adminhtml/menu.xml
  • To see how to have different layouts, check this file:
    • view/adminhtml/layout/adminsample_sampletwo_index.xml
  • To see how we create a custom block and use it, check those files:
    • Block/Adminhtml/CustomBlock.php
    • view/adminhtml/layout/adminsample_sampletwo_index.xml
  • To see how you use block functions, have a look at:
  • Block/Adminhtml/CustomBlock.php
    • view/adminhtml/templates/custom/one.phtml
  • To call a helper from a block you can check:
    • Block/Adminhtml/CustomBlock.php
    • Helper/ConfigHelper.php
    • view/adminhtml/templates/custom/one.phtml

To do

  • Use model inside CustomBlock
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].