fiko / magento2-adminurl
Create direct URL to magento2 adminhtml.
Installs: 8
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:magento2-module
This package is auto-updated.
Last update: 2025-03-07 04:04:49 UTC
README
It's a magento 2 module to create a direct URL to adminhtml page without being redirected to dashboard.
How to install?
Via Composer
If you try to install via composer, just require your project to the module by running this command :
composer require fiko/magento2-adminurl
Manually
- Download this repo
- Create a Directory
app/code/Fiko/AdminUrl
- Copy downloaded repo to this directory
Once you download it (both composer or manually), just run this commands to apply this module to your project :
php bin/magento setup:upgrade --keep-generated
php bin/magento setup:di:compile
How to use?
Simply just use the model
class Example
{
public function __construct(
.......
\Fiko\AdminUrl\Model\Url $adminUrl
.......
) {
.......
$this->adminUrl = $adminUrl;
.......
}
public function execute()
{
$catalogUrl = $this->adminUrl->getUrl('catalog/index/index');
}
}
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
License
MIT © 2022