Skip to content

Commit fb41e21

Browse files
committed
Rename module
1 parent 393e411 commit fb41e21

File tree

411 files changed

+34
-34
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

411 files changed

+34
-34
lines changed

Dreamvention/Vuefront/Module/etc/di.xml

Lines changed: 0 additions & 11 deletions
This file was deleted.

Dreamvention/Vuefront/registration.php

Lines changed: 0 additions & 4 deletions
This file was deleted.

Dreamvention/Vuefront/Module/Api/GraphqlInterface.php renamed to Vuefront/Vuefront/Module/Api/GraphqlInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Dreamvention\Vuefront\Module\Api;
3+
namespace Vuefront\Vuefront\Module\Api;
44
interface GraphqlInterface
55
{
66
/**

Dreamvention/Vuefront/Module/Block/Adminhtml/System/Config/Form/Api.php renamed to Vuefront/Vuefront/Module/Block/Adminhtml/System/Config/Form/Api.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Dreamvention\Vuefront\Module\Block\Adminhtml\System\Config\Form;
3+
namespace Vuefront\Vuefront\Module\Block\Adminhtml\System\Config\Form;
44

55
use Magento\Framework\View\Result\PageFactory;
66
use Magento\Store\Model\ScopeInterface;
@@ -32,14 +32,14 @@ public function __construct(
3232

3333
public function render(\Magento\Framework\Data\Form\Element\AbstractElement $element)
3434
{
35-
$logo = $this->getViewFileUrl('Dreamvention_Vuefront::images/logo.png');
35+
$logo = $this->getViewFileUrl('Vuefront_Vuefront::images/logo.png');
3636
$url = $this->_storeManager->getStore()->getBaseUrl();
3737
$html = '<div>
3838
<div class="image-wrapper" style="text-align: center;">
3939
<img src="' . $logo . '" alt="" style="width:200px;">
4040
</div>
4141
<div style="padding:10px;background-color:#f8f8f8;border:1px solid #ddd;margin-bottom:7px;">
42-
Url for access to API: <a href="' . $url . 'rest/V1/vuefront/graphql" target="_blank">' . $url . 'rest/V1/vuefront/graphql</a>
42+
CMS Connect URL: <a href="' . $url . 'rest/V1/vuefront/graphql" target="_blank">' . $url . 'rest/V1/vuefront/graphql</a>
4343
</div>
4444
</div>';
4545

Dreamvention/Vuefront/Module/Model/GraphqlModel.php renamed to Vuefront/Vuefront/Module/Model/GraphqlModel.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22

3-
namespace Dreamvention\Vuefront\Module\Model;
3+
namespace Vuefront\Vuefront\Module\Model;
44

5-
use \Dreamvention\Vuefront\Module\Api\GraphqlInterface;
5+
use \Vuefront\Vuefront\Module\Api\GraphqlInterface;
66
use Magento\Framework\App\Action\Context;
77

88
require_once realpath(__DIR__ . '/../../system/startup.php');

Dreamvention/Vuefront/Module/Plugin/CorsRequestMatchPlugin.php renamed to Vuefront/Vuefront/Module/Plugin/CorsRequestMatchPlugin.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Dreamvention\Vuefront\Module\Plugin;
3+
namespace Vuefront\Vuefront\Module\Plugin;
44

55
use Magento\Framework\Webapi\Rest\Request;
66
use Magento\Webapi\Controller\Rest\Router;
@@ -47,7 +47,7 @@ protected function createRoute()
4747
'/V1/vuefront/cors'
4848
);
4949

50-
$route->setServiceClass('Dreamvention\Vuefront\Module\Api\GraphqlInterface')
50+
$route->setServiceClass('Vuefront\Vuefront\Module\Api\GraphqlInterface')
5151
->setServiceMethod('cors')
5252
->setSecure(false)
5353
->setAclResources(['anonymous'])

Dreamvention/Vuefront/Module/Plugin/CorsRequestOptionsPlugin.php renamed to Vuefront/Vuefront/Module/Plugin/CorsRequestOptionsPlugin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Dreamvention\Vuefront\Module\Plugin;
3+
namespace Vuefront\Vuefront\Module\Plugin;
44

55
use Magento\Framework\Webapi\Request;
66
use Magento\Framework\Exception\InputException;

Dreamvention/Vuefront/Module/etc/adminhtml/menu.xml renamed to Vuefront/Vuefront/Module/etc/adminhtml/menu.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
33
xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Backend:etc/menu.xsd">
44
<menu>
5-
<add id="Dreamvention_Vuefront::vuefront" title="Vuefront" module="Dreamvention_Vuefront" sortOrder="91"
5+
<add id="Vuefront_Vuefront::vuefront" title="Vuefront" module="Vuefront_Vuefront" sortOrder="91"
66
action="adminhtml/system_config/edit/section/vuefront"
7-
resource="Dreamvention_Vuefront::vuefront_config"/>
7+
resource="Vuefront_Vuefront::vuefront_config"/>
88
</menu>
99
</config>

Dreamvention/Vuefront/Module/etc/adminhtml/routes.xml renamed to Vuefront/Vuefront/Module/etc/adminhtml/routes.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:App/etc/routes.xsd">
33
<router id="admin">
44
<route id="vuefront" frontName="vuefront">
5-
<module name="Dreamvention_Vuefront" />
5+
<module name="Vuefront_Vuefront" />
66
</route>
77
</router>
88
</config>

Dreamvention/Vuefront/Module/etc/adminhtml/system.xml renamed to Vuefront/Vuefront/Module/etc/adminhtml/system.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Config:etc/system_file.xsd">
33
<system>
44
<tab id="vuefront" translate="label" sortOrder="120">
5-
<label>Dreamvention Extentions</label>
5+
<label>Vuefront Extentions</label>
66
</tab>
77
<section id="vuefront" translate="label" sortOrder="130" showInDefault="1" showInWebsite="1" showInStore="1">
88
<class>separator-top</class>
99
<label>Vuefront</label>
1010
<tab>vuefront</tab>
11-
<resource>Dreamvention_Vuefront::vuefront_config</resource>
11+
<resource>Vuefront_Vuefront::vuefront_config</resource>
1212
<group id="general" translate="label" type="text" sortOrder="10" showInDefault="1" showInWebsite="0" showInStore="0">
1313
<label>General</label>
1414
<field id="api" translate="label" type="text" sortOrder="1" showInDefault="1" showInWebsite="0" showInStore="0">
1515
<label>API Url</label>
16-
<frontend_model>Dreamvention\Vuefront\Module\Block\Adminhtml\System\Config\Form\Api</frontend_model>
16+
<frontend_model>Vuefront\Vuefront\Module\Block\Adminhtml\System\Config\Form\Api</frontend_model>
1717
</field>
1818
<field id="enable" translate="label" type="select" sortOrder="2" showInDefault="1" showInWebsite="0" showInStore="0">
1919
<label>Module Enable</label>

0 commit comments

Comments
 (0)