-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #315 from nesrineabdmouleh/FixAutoupgradePageTitle171
Fix autoupgrade page title for PS 1.7.1
- Loading branch information
Showing
3 changed files
with
26 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import {ModuleAutoupgradeMainPageInterface} from '@interfaces/BO/modules/autoupgrade'; | ||
import {Autoupgrade} from '@versions/1.7.3/pages/BO/modules/autoupgrade'; | ||
|
||
/** | ||
* Module configuration page for module : Autoupgrade, contains selectors and functions for the page | ||
* @class | ||
* @extends ModuleConfiguration | ||
*/ | ||
class AutoupgradeVersion extends Autoupgrade implements ModuleAutoupgradeMainPageInterface { | ||
/** | ||
* @constructs | ||
* Setting up texts and selectors to use on module configuration page | ||
*/ | ||
constructor() { | ||
super(); | ||
|
||
this.pageTitle = `AdminSelfUpgrade > AdminSelfUpgrade • ${global.INSTALL.SHOP_NAME}`; | ||
} | ||
} | ||
|
||
const autoupgrade = new AutoupgradeVersion(); | ||
export {autoupgrade, AutoupgradeVersion as Autoupgrade}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters