-
Notifications
You must be signed in to change notification settings - Fork 23
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 #57 from flagbit/akeneo5
Update for Akeneo 5
- Loading branch information
Showing
14 changed files
with
67 additions
and
11 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ jobs: | |
runs-on: "ubuntu-18.04" | ||
strategy: | ||
matrix: | ||
php-versions: ['7.3'] | ||
php-versions: ['7.4'] | ||
|
||
steps: | ||
- uses: "actions/[email protected]" | ||
|
@@ -40,7 +40,7 @@ jobs: | |
runs-on: "ubuntu-18.04" | ||
strategy: | ||
matrix: | ||
php-versions: [ '7.3' ] | ||
php-versions: [ '7.4' ] | ||
|
||
steps: | ||
- uses: "actions/[email protected]" | ||
|
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,3 @@ | ||
# 5.0.0 | ||
|
||
- Add support for Akeneo 5.0.0. |
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
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
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
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
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,47 @@ | ||
'use strict'; | ||
|
||
define([ | ||
'underscore', | ||
'oro/translator', | ||
'pim/form', | ||
'pim/template/common/form-container' | ||
], | ||
function ( | ||
_, | ||
__, | ||
BaseForm, | ||
template | ||
) { | ||
return BaseForm.extend({ | ||
className: 'tab-content', | ||
template: _.template(template), | ||
|
||
/** | ||
* {@inheritdoc} | ||
*/ | ||
initialize: function () { | ||
BaseForm.prototype.initialize.apply(this, arguments); | ||
}, | ||
|
||
/** | ||
* {@inheritdoc} | ||
*/ | ||
configure: function () { | ||
this.trigger('tab:register', { | ||
code: this.code, | ||
label: __('flagbit.table_attribute.form.attribute.tab.title') | ||
}); | ||
|
||
return BaseForm.prototype.configure.apply(this, arguments); | ||
}, | ||
|
||
/** | ||
* {@inheritdoc} | ||
*/ | ||
render: function () { | ||
this.$el.html(this.template()); | ||
|
||
this.renderExtensions(); | ||
} | ||
}); | ||
}); |
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