├── pub └── media │ └── mgs │ └── fbuilder │ ├── css │ └── blocks.css │ ├── images │ ├── grid.gif │ ├── color.png │ ├── loader.gif │ └── picker.png │ └── fonts │ ├── FontAwesome.otf │ ├── Pe-icon-7-stroke.eot │ ├── Pe-icon-7-stroke.ttf │ ├── Pe-icon-7-stroke.woff │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── fontawesome-webfont.woff2 │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff └── app └── code └── MGS └── Fbuilder ├── Setup └── InstallSchema.php ├── Block ├── Adminhtml │ ├── User │ │ ├── Edit.php │ │ └── Edit │ │ │ └── Script.php │ ├── System │ │ ├── Active.php │ │ ├── License.php │ │ ├── Import.php │ │ └── Export.php │ ├── Fields │ │ └── Color.php │ └── Backend │ │ └── Acount │ │ └── Edit.php ├── Products │ └── AbstractProduct.php ├── Panel │ ├── Create │ │ ├── Block.php │ │ ├── StaticContent.php │ │ └── Element.php │ ├── Edit │ │ └── Section.php │ └── Toppanel.php ├── Social │ ├── Twitter.php │ ├── Snapppt.php │ ├── Facebook.php │ └── Instagram.php ├── Widget │ ├── Map.php │ ├── Profile.php │ ├── PromoBanner.php │ └── Chart.php ├── Page │ └── Head.php └── Cms │ └── Page.php ├── view ├── adminhtml │ ├── web │ │ ├── images │ │ │ ├── grid.gif │ │ │ ├── color.png │ │ │ └── picker.png │ │ └── css │ │ │ └── style.css │ ├── layout │ │ ├── adminhtml_user_edit.xml │ │ └── adminhtml_system_config_edit.xml │ ├── templates │ │ └── user │ │ │ └── script.phtml │ └── ui_component │ │ └── category_form.xml └── frontend │ ├── web │ ├── images │ │ ├── blank.png │ │ ├── color.png │ │ ├── grid.gif │ │ ├── picker.png │ │ ├── folder-open.gif │ │ ├── elbow-end-minus.gif │ │ ├── elbow-end-plus.gif │ │ ├── panel │ │ │ ├── cols │ │ │ │ ├── 12.png │ │ │ │ ├── 3-9.png │ │ │ │ ├── 4-8.png │ │ │ │ ├── 6-6.png │ │ │ │ ├── 8-4.png │ │ │ │ ├── 9-3.png │ │ │ │ ├── 4-4-4.png │ │ │ │ └── 3-3-3-3.png │ │ │ ├── colour │ │ │ │ ├── 007.Red.png │ │ │ │ ├── 099.Tan.png │ │ │ │ ├── 010.Pink.png │ │ │ │ ├── 017.Coral.png │ │ │ │ ├── 022.Gold.png │ │ │ │ ├── 031.Khaki.png │ │ │ │ ├── 035.Plum.png │ │ │ │ ├── 053.Lime.png │ │ │ │ ├── 061.Green.png │ │ │ │ ├── 065.Olive.png │ │ │ │ ├── 071.Teal.png │ │ │ │ ├── 072.Cyan.png │ │ │ │ ├── 090.Blue.png │ │ │ │ ├── 092.Navy.png │ │ │ │ ├── 104.Peru.png │ │ │ │ ├── 108.Brown.png │ │ │ │ ├── 112.Azure.png │ │ │ │ ├── 115.Beige.png │ │ │ │ ├── 120.Gray.png │ │ │ │ ├── 00001.White.png │ │ │ │ ├── 0001.Black.png │ │ │ │ ├── 003.Salmon.png │ │ │ │ ├── 006.Crimson.png │ │ │ │ ├── 012.HotPink.png │ │ │ │ ├── 013.DeepPink.png │ │ │ │ ├── 018.Tomato.png │ │ │ │ ├── 021.Orange.png │ │ │ │ ├── 023.Yellow.png │ │ │ │ ├── 028.Moccasin.png │ │ │ │ ├── 033.Lavender.png │ │ │ │ ├── 034.Thistle.png │ │ │ │ ├── 036.Violet.png │ │ │ │ ├── 037.Orchid.png │ │ │ │ ├── 038.Magenta.png │ │ │ │ ├── 042.Amethyst.png │ │ │ │ ├── 048.Purple.png │ │ │ │ ├── 050.Indigo.png │ │ │ │ ├── 060.SeaGreen.png │ │ │ │ ├── 070.DarkCyan.png │ │ │ │ ├── 084.SkyBlue.png │ │ │ │ ├── 107.Sienna.png │ │ │ │ ├── 109.Maroon.png │ │ │ │ ├── 111.Honeydew.png │ │ │ │ ├── 118.Silver.png │ │ │ │ ├── 119.DarkGray.png │ │ │ │ ├── 121.DimGray.png │ │ │ │ ├── 001.IndianRed.png │ │ │ │ ├── 002.LightCoral.png │ │ │ │ ├── 004.DarkSalmon.png │ │ │ │ ├── 011.LightPink.png │ │ │ │ ├── 011.LightPink3.png │ │ │ │ ├── 011.LightPink4.png │ │ │ │ ├── 013.DeepPink2.png │ │ │ │ ├── 013.DeepPink3.png │ │ │ │ ├── 019.OrangeRed.png │ │ │ │ ├── 020.DarkOrange.png │ │ │ │ ├── 027.PapayaWhip.png │ │ │ │ ├── 029.PeachPuff.png │ │ │ │ ├── 032.DarkKhaki.png │ │ │ │ ├── 043.SlateBlue.png │ │ │ │ ├── 044.BlueViolet.png │ │ │ │ ├── 045.DarkOrchid.png │ │ │ │ ├── 046.DarkViolet.png │ │ │ │ ├── 052.Chartreuse.png │ │ │ │ ├── 054.LimeGreen.png │ │ │ │ ├── 055.PaleGreen.png │ │ │ │ ├── 056.LightGreen.png │ │ │ │ ├── 062.DarkGreen.png │ │ │ │ ├── 064.OliveDrab.png │ │ │ │ ├── 073.LightCyan.png │ │ │ │ ├── 075.Aquamarine.png │ │ │ │ ├── 076.Turquoise.png │ │ │ │ ├── 079.CadetBlue.png │ │ │ │ ├── 080.SteelBlue.png │ │ │ │ ├── 082.PowderBlue.png │ │ │ │ ├── 083.LightBlue.png │ │ │ │ ├── 086.DodgerBlue.png │ │ │ │ ├── 089.RoyalBlue.png │ │ │ │ ├── 091.MediumBlue.png │ │ │ │ ├── 098.BurlyWood.png │ │ │ │ ├── 100.RosyBrown.png │ │ │ │ ├── 101.SandyBrown.png │ │ │ │ ├── 102.Goldenrod.png │ │ │ │ ├── 105.Chocolate.png │ │ │ │ ├── 113.GhostWhite.png │ │ │ │ ├── 114.WhiteSmoke.png │ │ │ │ ├── 116.Gainsboro.png │ │ │ │ ├── 117.LightGrey.png │ │ │ │ ├── 123.SlateGray.png │ │ │ │ ├── 0000.transparent.png │ │ │ │ ├── 005.LightSalmon.png │ │ │ │ ├── 009.lavenderBlush.png │ │ │ │ ├── 015.PaleVioletRed.png │ │ │ │ ├── 024.LightYellow.png │ │ │ │ ├── 025.LemonChiffon.png │ │ │ │ ├── 030.PaleGoldenrod.png │ │ │ │ ├── 039.MediumOrchid.png │ │ │ │ ├── 041.MediumPurple.png │ │ │ │ ├── 047.DarkMagenta.png │ │ │ │ ├── 049.DarkSlateBlue.png │ │ │ │ ├── 051.GreenYellow.png │ │ │ │ ├── 058.SpringGreen.png │ │ │ │ ├── 063.YellowGreen.png │ │ │ │ ├── 068.DarkSeaGreen.png │ │ │ │ ├── 069.LightSeaGreen.png │ │ │ │ ├── 074.PaleTurquoise.png │ │ │ │ ├── 078.DarkTurquoise.png │ │ │ │ ├── 093.MidnightBlue.png │ │ │ │ ├── 103.DarkGoldenrod.png │ │ │ │ ├── 106.SaddleBrown.png │ │ │ │ ├── 124.DarkSlateGray.png │ │ │ │ ├── 009.lavenderBlush2.png │ │ │ │ ├── 009.lavenderBlush3.png │ │ │ │ ├── 009.lavenderBlush4.png │ │ │ │ ├── 014.MediumVioletRed.png │ │ │ │ ├── 015.PaleVioletRed4.png │ │ │ │ ├── 015.PaleVioletRed5.png │ │ │ │ ├── 040.MediumSlateBlue.png │ │ │ │ ├── 059.MediumSeaGreen.png │ │ │ │ ├── 066.DarkOliveGreen.png │ │ │ │ ├── 081.LightSteelBlue.png │ │ │ │ ├── 087.CornflowerBlue.png │ │ │ │ ├── 122.LightSlateGray.png │ │ │ │ ├── 057.MediumSpringGreen.png │ │ │ │ ├── 067.MediumAquamarine.png │ │ │ │ └── 026.LightGoldenrodYellow.png │ │ │ ├── sample-banner.jpg │ │ │ └── sample-testimonial.jpg │ │ └── small-ajax-loader.gif │ ├── js │ │ ├── bootstrap │ │ │ └── editor.js │ │ ├── popup.js │ │ ├── magnific_popup.js │ │ ├── jquery.lazyload.js │ │ └── timer.js │ └── css │ │ ├── fontawesome.v4.7.0 │ │ └── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ ├── owl.theme.min.less │ │ └── blocks_generated.css │ ├── templates │ ├── panel │ │ ├── create │ │ │ └── element │ │ │ │ ├── rate.phtml │ │ │ │ ├── new_products.phtml │ │ │ │ ├── widgets │ │ │ │ └── code_tab.phtml │ │ │ │ └── static │ │ │ │ ├── table.phtml │ │ │ │ ├── content.phtml │ │ │ │ └── text_content.phtml │ │ ├── block.phtml │ │ ├── top_panel.phtml │ │ └── homecontent.phtml │ ├── html │ │ └── head.phtml │ ├── widget │ │ ├── socials │ │ │ ├── snapppt.phtml │ │ │ ├── facebook_fanbox.phtml │ │ │ └── twitter_timeline.phtml │ │ ├── heading.phtml │ │ ├── promobanner.phtml │ │ ├── divider.phtml │ │ ├── category │ │ │ └── list.phtml │ │ └── video.phtml │ └── products │ │ └── tabs │ │ └── view.phtml │ ├── layout │ ├── cms_page_view.xml │ ├── cms_index_index.xml │ ├── fbuilder_editor.xml │ ├── fbuilder_create_block.xml │ ├── fbuilder_edit_section.xml │ ├── fbuilder_create_element.xml │ ├── default.xml │ └── fbuilder_popup.xml │ └── requirejs-config.js ├── registration.php ├── etc ├── adminhtml │ ├── events.xml │ ├── routes.xml │ └── menu.xml ├── frontend │ └── routes.xml ├── module.xml ├── events.xml ├── acl.xml └── di.xml ├── Model ├── ResourceModel │ ├── Child.php │ ├── Confirm.php │ ├── Section.php │ ├── Child │ │ └── Collection.php │ ├── Confirm │ │ └── Collection.php │ ├── Section │ │ └── Collection.php │ └── Layout │ │ └── Plugin.php ├── Child.php ├── Confirm.php ├── Section.php ├── Config │ └── Source │ │ └── Navigation.php ├── Feed.php └── Entity │ └── Backend │ └── Image.php ├── Observer ├── GenerateCss.php ├── UpdateNotifications.php └── CreateAccount.php ├── composer.json └── Controller ├── Adminhtml ├── Fbuilder.php └── Fbuilder │ ├── Resetkey.php │ ├── Savekey.php │ └── Createaccount.php ├── Create ├── Block.php └── Element.php ├── Edit └── Section.php ├── Index ├── Lookbook.php ├── Active.php ├── Disable.php ├── Sortblock.php ├── Sortsection.php ├── Confirm.php ├── Address.php ├── Removesection.php └── Search.php ├── Wysiwyg ├── Images.php └── Directive.php ├── Element ├── Changecol.php └── Delete.php └── Post └── Upload.php /pub/media/mgs/fbuilder/css/blocks.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pub/media/mgs/fbuilder/images/grid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/pub/media/mgs/fbuilder/images/grid.gif -------------------------------------------------------------------------------- /pub/media/mgs/fbuilder/images/color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/pub/media/mgs/fbuilder/images/color.png -------------------------------------------------------------------------------- /pub/media/mgs/fbuilder/images/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/pub/media/mgs/fbuilder/images/loader.gif -------------------------------------------------------------------------------- /pub/media/mgs/fbuilder/images/picker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/pub/media/mgs/fbuilder/images/picker.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/Setup/InstallSchema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/Setup/InstallSchema.php -------------------------------------------------------------------------------- /pub/media/mgs/fbuilder/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/pub/media/mgs/fbuilder/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/Block/Adminhtml/User/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/Block/Adminhtml/User/Edit.php -------------------------------------------------------------------------------- /pub/media/mgs/fbuilder/fonts/Pe-icon-7-stroke.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/pub/media/mgs/fbuilder/fonts/Pe-icon-7-stroke.eot -------------------------------------------------------------------------------- /pub/media/mgs/fbuilder/fonts/Pe-icon-7-stroke.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/pub/media/mgs/fbuilder/fonts/Pe-icon-7-stroke.ttf -------------------------------------------------------------------------------- /pub/media/mgs/fbuilder/fonts/Pe-icon-7-stroke.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/pub/media/mgs/fbuilder/fonts/Pe-icon-7-stroke.woff -------------------------------------------------------------------------------- /pub/media/mgs/fbuilder/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/pub/media/mgs/fbuilder/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /pub/media/mgs/fbuilder/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/pub/media/mgs/fbuilder/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /pub/media/mgs/fbuilder/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/pub/media/mgs/fbuilder/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/Block/Products/AbstractProduct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/Block/Products/AbstractProduct.php -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/adminhtml/web/images/grid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/adminhtml/web/images/grid.gif -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/blank.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/color.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/grid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/grid.gif -------------------------------------------------------------------------------- /pub/media/mgs/fbuilder/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/pub/media/mgs/fbuilder/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/Block/Adminhtml/User/Edit/Script.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/Block/Adminhtml/User/Edit/Script.php -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/adminhtml/web/images/color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/adminhtml/web/images/color.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/adminhtml/web/images/picker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/adminhtml/web/images/picker.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/picker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/picker.png -------------------------------------------------------------------------------- /pub/media/mgs/fbuilder/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/pub/media/mgs/fbuilder/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /pub/media/mgs/fbuilder/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/pub/media/mgs/fbuilder/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/folder-open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/folder-open.gif -------------------------------------------------------------------------------- /pub/media/mgs/fbuilder/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/pub/media/mgs/fbuilder/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/elbow-end-minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/elbow-end-minus.gif -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/elbow-end-plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/elbow-end-plus.gif -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/cols/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/cols/12.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/cols/3-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/cols/3-9.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/cols/4-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/cols/4-8.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/cols/6-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/cols/6-6.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/cols/8-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/cols/8-4.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/cols/9-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/cols/9-3.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/cols/4-4-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/cols/4-4-4.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/small-ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/small-ajax-loader.gif -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/007.Red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/007.Red.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/099.Tan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/099.Tan.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/cols/3-3-3-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/cols/3-3-3-3.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/sample-banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/sample-banner.jpg -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/010.Pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/010.Pink.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/017.Coral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/017.Coral.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/022.Gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/022.Gold.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/031.Khaki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/031.Khaki.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/035.Plum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/035.Plum.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/053.Lime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/053.Lime.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/061.Green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/061.Green.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/065.Olive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/065.Olive.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/071.Teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/071.Teal.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/072.Cyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/072.Cyan.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/090.Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/090.Blue.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/092.Navy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/092.Navy.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/104.Peru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/104.Peru.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/108.Brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/108.Brown.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/112.Azure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/112.Azure.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/115.Beige.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/115.Beige.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/120.Gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/120.Gray.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/00001.White.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/00001.White.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/0001.Black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/0001.Black.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/003.Salmon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/003.Salmon.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/006.Crimson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/006.Crimson.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/012.HotPink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/012.HotPink.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/013.DeepPink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/013.DeepPink.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/018.Tomato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/018.Tomato.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/021.Orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/021.Orange.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/023.Yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/023.Yellow.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/028.Moccasin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/028.Moccasin.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/033.Lavender.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/033.Lavender.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/034.Thistle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/034.Thistle.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/036.Violet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/036.Violet.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/037.Orchid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/037.Orchid.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/038.Magenta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/038.Magenta.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/042.Amethyst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/042.Amethyst.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/048.Purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/048.Purple.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/050.Indigo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/050.Indigo.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/060.SeaGreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/060.SeaGreen.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/070.DarkCyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/070.DarkCyan.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/084.SkyBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/084.SkyBlue.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/107.Sienna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/107.Sienna.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/109.Maroon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/109.Maroon.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/111.Honeydew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/111.Honeydew.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/118.Silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/118.Silver.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/119.DarkGray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/119.DarkGray.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/121.DimGray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/121.DimGray.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/sample-testimonial.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/sample-testimonial.jpg -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/001.IndianRed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/001.IndianRed.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/002.LightCoral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/002.LightCoral.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/004.DarkSalmon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/004.DarkSalmon.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/011.LightPink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/011.LightPink.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/011.LightPink3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/011.LightPink3.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/011.LightPink4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/011.LightPink4.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/013.DeepPink2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/013.DeepPink2.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/013.DeepPink3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/013.DeepPink3.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/019.OrangeRed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/019.OrangeRed.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/020.DarkOrange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/020.DarkOrange.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/027.PapayaWhip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/027.PapayaWhip.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/029.PeachPuff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/029.PeachPuff.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/032.DarkKhaki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/032.DarkKhaki.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/043.SlateBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/043.SlateBlue.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/044.BlueViolet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/044.BlueViolet.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/045.DarkOrchid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/045.DarkOrchid.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/046.DarkViolet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/046.DarkViolet.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/052.Chartreuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/052.Chartreuse.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/054.LimeGreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/054.LimeGreen.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/055.PaleGreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/055.PaleGreen.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/056.LightGreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/056.LightGreen.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/062.DarkGreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/062.DarkGreen.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/064.OliveDrab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/064.OliveDrab.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/073.LightCyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/073.LightCyan.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/075.Aquamarine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/075.Aquamarine.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/076.Turquoise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/076.Turquoise.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/079.CadetBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/079.CadetBlue.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/080.SteelBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/080.SteelBlue.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/082.PowderBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/082.PowderBlue.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/083.LightBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/083.LightBlue.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/086.DodgerBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/086.DodgerBlue.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/089.RoyalBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/089.RoyalBlue.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/091.MediumBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/091.MediumBlue.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/098.BurlyWood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/098.BurlyWood.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/100.RosyBrown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/100.RosyBrown.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/101.SandyBrown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/101.SandyBrown.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/102.Goldenrod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/102.Goldenrod.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/105.Chocolate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/105.Chocolate.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/113.GhostWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/113.GhostWhite.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/114.WhiteSmoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/114.WhiteSmoke.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/116.Gainsboro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/116.Gainsboro.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/117.LightGrey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/117.LightGrey.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/123.SlateGray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/123.SlateGray.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/0000.transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/0000.transparent.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/005.LightSalmon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/005.LightSalmon.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/009.lavenderBlush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/009.lavenderBlush.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/015.PaleVioletRed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/015.PaleVioletRed.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/024.LightYellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/024.LightYellow.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/025.LemonChiffon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/025.LemonChiffon.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/030.PaleGoldenrod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/030.PaleGoldenrod.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/039.MediumOrchid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/039.MediumOrchid.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/041.MediumPurple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/041.MediumPurple.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/047.DarkMagenta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/047.DarkMagenta.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/049.DarkSlateBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/049.DarkSlateBlue.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/051.GreenYellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/051.GreenYellow.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/058.SpringGreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/058.SpringGreen.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/063.YellowGreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/063.YellowGreen.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/068.DarkSeaGreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/068.DarkSeaGreen.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/069.LightSeaGreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/069.LightSeaGreen.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/074.PaleTurquoise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/074.PaleTurquoise.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/078.DarkTurquoise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/078.DarkTurquoise.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/093.MidnightBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/093.MidnightBlue.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/103.DarkGoldenrod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/103.DarkGoldenrod.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/106.SaddleBrown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/106.SaddleBrown.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/124.DarkSlateGray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/124.DarkSlateGray.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/js/bootstrap/editor.js: -------------------------------------------------------------------------------- 1 | /** 2 | * 3 | * Copyright © 2016 Magento. All rights reserved. 4 | * See COPYING.txt for license details. 5 | */ 6 | require([ 7 | "mage/adminhtml/browser" 8 | ]); -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/009.lavenderBlush2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/009.lavenderBlush2.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/009.lavenderBlush3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/009.lavenderBlush3.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/009.lavenderBlush4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/009.lavenderBlush4.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/014.MediumVioletRed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/014.MediumVioletRed.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/015.PaleVioletRed4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/015.PaleVioletRed4.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/015.PaleVioletRed5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/015.PaleVioletRed5.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/040.MediumSlateBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/040.MediumSlateBlue.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/059.MediumSeaGreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/059.MediumSeaGreen.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/066.DarkOliveGreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/066.DarkOliveGreen.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/081.LightSteelBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/081.LightSteelBlue.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/087.CornflowerBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/087.CornflowerBlue.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/122.LightSlateGray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/122.LightSlateGray.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/css/fontawesome.v4.7.0/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/css/fontawesome.v4.7.0/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/057.MediumSpringGreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/057.MediumSpringGreen.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/067.MediumAquamarine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/067.MediumAquamarine.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/026.LightGoldenrodYellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/images/panel/colour/026.LightGoldenrodYellow.png -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/css/fontawesome.v4.7.0/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/css/fontawesome.v4.7.0/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/css/fontawesome.v4.7.0/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/css/fontawesome.v4.7.0/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/css/fontawesome.v4.7.0/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/css/fontawesome.v4.7.0/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/css/fontawesome.v4.7.0/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowtheme2022/magento2-cms-builder/HEAD/app/code/MGS/Fbuilder/view/frontend/web/css/fontawesome.v4.7.0/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/templates/panel/create/element/rate.phtml: -------------------------------------------------------------------------------- 1 | getLayout()->createBlock('MGS\Fbuilder\Block\Panel\Create\Element')->setBlockTitle(__('Top Rate Products Block'))->setBlockType('rate')->setTemplate('MGS_Fbuilder::panel/create/element/widgets/base_products_form.phtml')->toHtml() ?> -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/templates/panel/create/element/new_products.phtml: -------------------------------------------------------------------------------- 1 | getLayout()->createBlock('MGS\Fbuilder\Block\Panel\Create\Element')->setBlockTitle(__('New Products Block'))->setBlockType('new_products')->setTemplate('MGS_Fbuilder::panel/create/element/widgets/base_products_form.phtml')->toHtml() ?> -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/registration.php: -------------------------------------------------------------------------------- 1 | getMediaUrl() ?>mgs/fbuilder/css/blocks.css" /> 2 | 3 | -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/etc/adminhtml/events.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/templates/widget/socials/snapppt.phtml: -------------------------------------------------------------------------------- 1 |
2 | getInstagramShopContent()): ?> 3 |
4 | getInstagramShopContent() ?> 5 |
6 | 7 |
8 | 9 |
-------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/templates/widget/socials/facebook_fanbox.phtml: -------------------------------------------------------------------------------- 1 |
2 | getFacebookFanBox()): ?> 3 |
4 | getFacebookFanBox(); ?> 5 |
6 | 7 |
8 | 9 |
10 | -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/templates/widget/socials/twitter_timeline.phtml: -------------------------------------------------------------------------------- 1 |
2 | getTwitterTimeline()): ?> 3 |
4 | getTwitterTimeline(); ?> 5 |
6 | 7 |
8 | 9 |
10 | -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/layout/cms_page_view.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 10 | 14 | -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/adminhtml/web/css/style.css: -------------------------------------------------------------------------------- 1 | #mColorPicker{overflow:hidden} 2 | #fbuilder_single_slider_color, 3 | #fbuilder_single_slider_border, 4 | #fbuilder_single_slider_background, 5 | #fbuilder_single_slider_hover_color, 6 | #fbuilder_single_slider_hover_border, 7 | #fbuilder_single_slider_hover_background, 8 | #fbuilder_single_slider_dot_background, 9 | #fbuilder_single_slider_dot_active_background, 10 | #fbuilder_multiple_slider_color, 11 | #fbuilder_multiple_slider_border, 12 | #fbuilder_multiple_slider_background, 13 | #fbuilder_multiple_slider_hover_color, 14 | #fbuilder_multiple_slider_hover_border, 15 | #fbuilder_multiple_slider_hover_background, 16 | #fbuilder_multiple_slider_dot_background, 17 | #fbuilder_multiple_slider_dot_active_background{width:93% !important} 18 | #mColorPickerFooter a, #row_fbuilder_license_key_active label{display:none !important} 19 | #row_fbuilder_license_key_name, #row_fbuilder_license_key_mail, #row_fbuilder_license_key_license{display:none} -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/etc/di.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | MGS\Fbuilder\Model\ResourceModel\Fbuilder 17 | 18 | 19 | -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/requirejs-config.js: -------------------------------------------------------------------------------- 1 | var config = { 2 | "map": { 3 | "*": { 4 | "mgsowlcarousel": "MGS_Fbuilder/js/owl.carousel.min", 5 | "magnificPopup": "MGS_Fbuilder/js/jquery.magnific-popup.min", 6 | "lazyload": "MGS_Fbuilder/js/jquery.lazyload", 7 | "waypoints": "MGS_Fbuilder/js/waypoints.min", 8 | "fbuilderSearch": "MGS_Fbuilder/js/search-suggest", 9 | "chartjs": "MGS_Fbuilder/js/chart.min", 10 | } 11 | }, 12 | 13 | "paths": { 14 | "mgsowlcarousel": "MGS_Fbuilder/js/owl.carousel.min", 15 | "magnificPopup": "MGS_Fbuilder/js/jquery.magnific-popup.min", 16 | "lazyload": "MGS_Fbuilder/js/jquery.lazyload", 17 | "waypoints": "MGS_Fbuilder/js/waypoints.min", 18 | "chartjs": "MGS_Fbuilder/js/chart.min" 19 | }, 20 | "shim": { 21 | "MGS_Fbuilder/js/owl.carousel.min": ["jquery"], 22 | "MGS_Fbuilder/js/jquery.magnific-popup.min": ["jquery"], 23 | "MGS_Fbuilder/js/jquery.lazyload": ["jquery"], 24 | "MGS_Fbuilder/js/waypoints.min": ["jquery"] 25 | } 26 | }; 27 | -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/Block/Social/Twitter.php: -------------------------------------------------------------------------------- 1 | getPageUrl(); 13 | $width = $this->getWidth(); 14 | $height = $this->getHeight(); 15 | $theme = $this->getTheme(); 16 | $color = $this->getDefaultLinkColor(); 17 | $language = $this->getLanguage(); 18 | 19 | if ($pageUrl != '' && $width != '' && $height != '') { 20 | return ' '; 21 | } else { 22 | return null; 23 | } 24 | } 25 | } 26 | ?> -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/js/popup.js: -------------------------------------------------------------------------------- 1 | function closeColorTable(el){ 2 | require([ 3 | "jquery" 4 | ], function($){ 5 | $(el).slideUp('normal'); 6 | }); 7 | } 8 | 9 | function openColorTable(el){ 10 | require([ 11 | "jquery" 12 | ], function($){ 13 | $(el).slideToggle('normal'); 14 | }); 15 | } 16 | 17 | function changeInputColor(name, input, el, wrapper){ 18 | require([ 19 | "jquery" 20 | ], function($){ 21 | $('#'+input).val(name); 22 | $('#'+wrapper+' ul li a').removeClass('active'); 23 | $(el).addClass('active'); 24 | divwrapper = wrapper.replace('colour-content','color'); 25 | $('.'+divwrapper+' .remove-color').show(); 26 | }); 27 | 28 | } 29 | 30 | function removeColor(input, el){ 31 | require([ 32 | "jquery" 33 | ], function($){ 34 | $('#'+input).val(''); 35 | $(el).hide(); 36 | }); 37 | 38 | } 39 | 40 | function setLocation(url) { 41 | require([ 42 | 'jquery' 43 | ], function (jQuery) { 44 | (function () { 45 | window.location.href = url; 46 | })(jQuery); 47 | }); 48 | } -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/Controller/Create/Block.php: -------------------------------------------------------------------------------- 1 | customerSession = $customerSession; 21 | parent::__construct($context); 22 | } 23 | 24 | public function execute() 25 | { 26 | if($this->customerSession->getUseFrontendBuilder() == 1){ 27 | $this->_view->loadLayout(); 28 | $this->_view->renderLayout(); 29 | }else{ 30 | $resultRedirect = $this->resultFactory->create(ResultFactory::TYPE_REDIRECT); 31 | $resultRedirect->setUrl($this->_redirect->getRefererUrl()); 32 | return $resultRedirect; 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/Controller/Create/Element.php: -------------------------------------------------------------------------------- 1 | customerSession = $customerSession; 21 | parent::__construct($context); 22 | } 23 | 24 | public function execute() 25 | { 26 | if($this->customerSession->getUseFrontendBuilder() == 1){ 27 | $this->_view->loadLayout(); 28 | $this->_view->renderLayout(); 29 | }else{ 30 | $resultRedirect = $this->resultFactory->create(ResultFactory::TYPE_REDIRECT); 31 | $resultRedirect->setUrl($this->_redirect->getRefererUrl()); 32 | return $resultRedirect; 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/Controller/Edit/Section.php: -------------------------------------------------------------------------------- 1 | customerSession = $customerSession; 21 | parent::__construct($context); 22 | } 23 | 24 | public function execute() 25 | { 26 | if($this->customerSession->getUseFrontendBuilder() == 1){ 27 | $this->_view->loadLayout(); 28 | $this->_view->renderLayout(); 29 | }else{ 30 | $resultRedirect = $this->resultFactory->create(ResultFactory::TYPE_REDIRECT); 31 | $resultRedirect->setUrl($this->_redirect->getRefererUrl()); 32 | return $resultRedirect; 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/Model/Feed.php: -------------------------------------------------------------------------------- 1 | _backendConfig->isSetFlag(self::XML_USE_HTTPS_PATH) ? 'https://' : 'http://'; 18 | if ($this->_feedUrl === null) { 19 | $this->_feedUrl = $httpPath . self::FEED_URL; 20 | } 21 | return $this->_feedUrl; 22 | } 23 | 24 | /** 25 | * @inheritdoc 26 | */ 27 | public function getLastUpdate() 28 | { 29 | return $this->_cacheManager->load('builder_notifications_lastcheck'); 30 | } 31 | 32 | /** 33 | * @inheritdoc 34 | */ 35 | public function setLastUpdate() 36 | { 37 | $this->_cacheManager->save(time(), 'builder_notifications_lastcheck'); 38 | return $this; 39 | } 40 | 41 | } 42 | -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/Block/Adminhtml/Fields/Color.php: -------------------------------------------------------------------------------- 1 | 12 | */ 13 | class Color extends \Magento\Config\Block\System\Config\Form\Field 14 | { 15 | /** 16 | * Retrieve element HTML markup 17 | * 18 | * @param \Magento\Framework\Data\Form\Element\AbstractElement $element 19 | * @return string 20 | */ 21 | protected function _getElementHtml(\Magento\Framework\Data\Form\Element\AbstractElement $element) 22 | { 23 | $output=parent::_getElementHtml($element); 24 | $output .= " 25 | "; 34 | return $output; 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/Block/Widget/Map.php: -------------------------------------------------------------------------------- 1 | _filesystem = $context->getFilesystem(); 21 | $this->_file = $file; 22 | } 23 | 24 | public function getPinImageUrl(){ 25 | if($this->hasData('map_icon') && ($this->getData('map_icon')!='')){ 26 | $filePath = $this->_filesystem->getDirectoryRead(DirectoryList::MEDIA)->getAbsolutePath('mgs/fbuilder/map') . $this->getData('map_icon'); 27 | if ($this->_file->isExists($filePath)) { 28 | return $this->_urlBuilder->getBaseUrl(['_type' => \Magento\Framework\UrlInterface::URL_TYPE_MEDIA]).'mgs/fbuilder/map'.$this->getData('map_icon'); 29 | } 30 | } 31 | return; 32 | } 33 | } -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/Block/Widget/Profile.php: -------------------------------------------------------------------------------- 1 | _filesystem = $context->getFilesystem(); 21 | $this->_file = $file; 22 | } 23 | 24 | public function getProfilePhoto(){ 25 | if($this->hasData('profile_photo') && ($this->getData('profile_photo')!='')){ 26 | $filePath = $this->_filesystem->getDirectoryRead(DirectoryList::MEDIA)->getAbsolutePath('mgs/fbuilder/profiles') . $this->getData('profile_photo'); 27 | if ($this->_file->isExists($filePath)) { 28 | return $this->_urlBuilder->getBaseUrl(['_type' => \Magento\Framework\UrlInterface::URL_TYPE_MEDIA]).'mgs/fbuilder/profiles'.$this->getData('profile_photo'); 29 | } 30 | } 31 | return; 32 | } 33 | } -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/Block/Panel/Create/StaticContent.php: -------------------------------------------------------------------------------- 1 | _widgetFactory = $widgetFactory; 27 | } 28 | 29 | public function getStaticUrl(){ 30 | return $this->_urlBuilder->getBaseUrl(['_type' => \Magento\Framework\UrlInterface::URL_TYPE_STATIC]); 31 | } 32 | 33 | public function getWidgetPlaceHolder(){ 34 | return $this->_widgetFactory->create()->getPlaceholderImageUrls(); 35 | } 36 | 37 | public function getThemePath(){ 38 | $viewFileUrl = $this->getViewFileUrl(''); 39 | } 40 | } 41 | 42 | -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/Block/Social/Snapppt.php: -------------------------------------------------------------------------------- 1 | _scopeConfig = $scopeConfig; 20 | $this->_storeManager = $context->getStoreManager(); 21 | parent::__construct($context); 22 | } 23 | 24 | public function getStoreConfig($node, $storeId = NULL){ 25 | if($storeId != NULL){ 26 | return $this->_scopeConfig->getValue($node, \Magento\Store\Model\ScopeInterface::SCOPE_STORE, $storeId); 27 | } 28 | return $this->_scopeConfig->getValue($node, \Magento\Store\Model\ScopeInterface::SCOPE_STORE, $this->_storeManager->getStore()->getId()); 29 | } 30 | 31 | public function getInstagramShopContent(){ 32 | if($this->getStoreConfig('fbuilder/social/snapppt_script')!=''){ 33 | return $this->getStoreConfig('fbuilder/social/snapppt_script'); 34 | } 35 | return; 36 | } 37 | } 38 | ?> -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/Block/Adminhtml/Backend/Acount/Edit.php: -------------------------------------------------------------------------------- 1 | 13 | * @since 100.0.2 14 | */ 15 | class Edit extends \Magento\Backend\Block\System\Account\Edit 16 | { 17 | protected function _construct() 18 | { 19 | parent::_construct(); 20 | 21 | $deleteConfirmMsg = __("Are you sure you want to use this account to create front-end builder account ?"); 22 | 23 | $this->addButton( 24 | 'panel', 25 | [ 26 | 'label' => __('Front-end Builder Account'), 27 | 'class' => 'save', 28 | 'onclick' => "deleteConfirm('" . $deleteConfirmMsg . "', '" . $this->getCreatePanelAccountUrl() . "')", 29 | ] 30 | ); 31 | 32 | } 33 | 34 | public function getCreatePanelAccountUrl(){ 35 | $objectManager = \Magento\Framework\App\ObjectManager::getInstance(); 36 | $authSession = $objectManager->get('Magento\Backend\Model\Auth\Session'); 37 | 38 | return $this->getUrl('adminhtml/fbuilder/createaccount', ['_current' => true, 'user_id'=>$authSession->getUser()->getId()]); 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/css/owl.theme.min.less: -------------------------------------------------------------------------------- 1 | .owl-theme .owl-controls{ 2 | margin-top:10px; 3 | text-align:center; 4 | -webkit-tap-highlight-color:transparent; 5 | .owl-nav [class*=owl-]{ 6 | color:#fff; 7 | font-size:14px; 8 | margin:5px;padding:4px 7px; 9 | background:#d6d6d6; 10 | display:inline-block; 11 | cursor:pointer; 12 | -webkit-border-radius:3px; 13 | -moz-border-radius:3px; 14 | border-radius:3px 15 | } 16 | .owl-nav [class*=owl-]:hover{ 17 | background:#869791; 18 | color:#fff; 19 | text-decoration:none 20 | } 21 | .owl-nav .disabled{ 22 | opacity:0.5; 23 | cursor:default 24 | } 25 | } 26 | 27 | .owl-theme .owl-dots .owl-dot{ 28 | display:inline-block; 29 | zoom:1; 30 | display:inline; 31 | span{ 32 | width:10px; 33 | height:10px; 34 | margin:5px 7px; 35 | background:#d6d6d6; 36 | display:block; 37 | -webkit-backface-visibility:visible; 38 | -webkit-transition:opacity 200ms ease; 39 | -moz-transition:opacity 200ms ease; 40 | -ms-transition:opacity 200ms ease; 41 | -o-transition:opacity 200ms ease; 42 | transition:opacity 200ms ease; 43 | -webkit-border-radius:30px; 44 | -moz-border-radius:30px; 45 | border-radius:30px 46 | } 47 | } 48 | 49 | .owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{ 50 | background:#869791 51 | } -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/Model/Entity/Backend/Image.php: -------------------------------------------------------------------------------- 1 | _mediaDirectory->getAbsolutePath($this->_appendScopeInfo(self::UPLOAD_DIR)); 29 | } 30 | 31 | /** 32 | * Makes a decision about whether to add info about the scope. 33 | * 34 | * @return boolean 35 | */ 36 | protected function _addWhetherScopeInfo() 37 | { 38 | return true; 39 | } 40 | 41 | /** 42 | * Getter for allowed extensions of uploaded files. 43 | * 44 | * @return string[] 45 | */ 46 | protected function _getAllowedExtensions() 47 | { 48 | return ['jpg', 'jpeg', 'gif', 'png']; 49 | } 50 | } 51 | -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/layout/fbuilder_popup.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 10 | 39 | 40 | 41 |
42 | 43 | 44 | -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/templates/products/tabs/view.phtml: -------------------------------------------------------------------------------- 1 | getTabs() ?> 2 | getLabels() ?> 3 | 4 |
5 | 6 | 7 | getTabStyle().' tab-align-'.$this->getTabAlign() ?> 8 | getTabFontBold()): ?> 9 | 10 | 11 | getTabItalic()): ?> 12 | 13 | 14 | getTabUppercase()): ?> 15 | 16 | 17 | 18 |
19 | $tab): $k++ ?> 20 |
21 | 22 | 23 | 24 |
25 |
style="display:none"> 26 | getLayout() 50 | ->createBlock($blockClass) 51 | ->setData($this->getData()) 52 | ->setAttribute($attribute) 53 | ->setTabAttribute($attribute) 54 | ->setTabType($type) 55 | ->setTemplate('MGS_Fbuilder::products/tabs/items.phtml') 56 | ->toHtml(); 57 | echo $html; 58 | ?> 59 |
60 | 61 |
62 |
-------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/Block/Cms/Page.php: -------------------------------------------------------------------------------- 1 | _panelHelper = $panelHelper; 67 | } 68 | 69 | /** 70 | * Prepare HTML content 71 | * 72 | * @return string 73 | */ 74 | protected function _toHtml() 75 | { 76 | $html = ''; 77 | $canUsePanel = $this->_panelHelper->acceptToUsePanel(); 78 | if($canUsePanel){ 79 | return $this->getLayout()->createBlock('MGS\Fbuilder\Block\Panel\HomeContent')->setTemplate('panel/homecontent.phtml')->toHtml(); 80 | }else{ 81 | return parent::_toHtml(); 82 | } 83 | } 84 | } 85 | 86 | -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/Controller/Wysiwyg/Directive.php: -------------------------------------------------------------------------------- 1 | urlDecoder = $urlDecoder; 33 | $this->resultRawFactory = $resultRawFactory; 34 | } 35 | 36 | /** 37 | * Template directives callback 38 | * 39 | * @return \Magento\Framework\Controller\Result\Raw 40 | */ 41 | public function execute() 42 | { 43 | $directive = $this->getRequest()->getParam('___directive'); 44 | $directive = $this->urlDecoder->decode($directive); 45 | $imagePath = $this->_objectManager->create('Magento\Cms\Model\Template\Filter')->filter($directive); 46 | /** @var \Magento\Framework\Image\Adapter\AdapterInterface $image */ 47 | $image = $this->_objectManager->get('Magento\Framework\Image\AdapterFactory')->create(); 48 | /** @var \Magento\Framework\Controller\Result\Raw $resultRaw */ 49 | $resultRaw = $this->resultRawFactory->create(); 50 | try { 51 | $image->open($imagePath); 52 | $resultRaw->setHeader('Content-Type', $image->getMimeType()); 53 | $resultRaw->setContents($image->getImage()); 54 | } catch (\Exception $e) { 55 | $imagePath = $this->_objectManager->get('Magento\Cms\Model\Wysiwyg\Config')->getSkinImagePlaceholderPath(); 56 | $image->open($imagePath); 57 | $resultRaw->setHeader('Content-Type', $image->getMimeType()); 58 | $resultRaw->setContents($image->getImage()); 59 | $this->_objectManager->get('Psr\Log\LoggerInterface')->critical($e); 60 | } 61 | return $resultRaw; 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/Controller/Index/Address.php: -------------------------------------------------------------------------------- 1 | _storeManager = $storeManager; 23 | $this->_scopeConfig = $scopeConfig; 24 | parent::__construct($context); 25 | } 26 | 27 | /** 28 | * @return \Magento\Framework\Controller\ResultInterface 29 | */ 30 | public function execute() 31 | { 32 | $storeId = $this->_storeManager->getStore()->getId(); 33 | 34 | $region = strtolower($this->_scopeConfig->getValue('general/country/default', \Magento\Store\Model\ScopeInterface::SCOPE_STORE, $storeId)); 35 | $apiKey = $this->_scopeConfig->getValue('fbuilder/social/google_api_key', \Magento\Store\Model\ScopeInterface::SCOPE_STORE, $storeId); 36 | 37 | if (!$address=$this->getRequest()->getParam('q', false)) { 38 | $resultRedirect = $this->resultFactory->create(ResultFactory::TYPE_REDIRECT); 39 | $resultRedirect->setUrl($this->_url->getBaseUrl()); 40 | return $resultRedirect; 41 | } 42 | 43 | $address = str_replace(" ", "+", $address); 44 | 45 | $url = "https://maps.google.com/maps/api/geocode/json?address=$address&sensor=false®ion=$region&key=$apiKey"; 46 | $ch = curl_init(); 47 | curl_setopt($ch, CURLOPT_URL, $url); 48 | curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 49 | curl_setopt($ch, CURLOPT_PROXYPORT, 3128); 50 | curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); 51 | curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); 52 | $response = curl_exec($ch); 53 | $response = json_decode($response, true); 54 | $address_result = $response['results']; 55 | 56 | $responseData = []; 57 | 58 | if (count($address_result) > 0) { 59 | foreach ($address_result as $_address) { 60 | $responseData[] = ['name'=>$_address['formatted_address'], 'id'=>$_address['formatted_address']]; 61 | } 62 | } 63 | $resultJson = $this->resultFactory->create(ResultFactory::TYPE_JSON); 64 | $resultJson->setData($responseData); 65 | return $resultJson; 66 | } 67 | 68 | } 69 | -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/Observer/CreateAccount.php: -------------------------------------------------------------------------------- 1 | _request = $request; 35 | $this->_messageManager = $messageManager; 36 | $this->storeManager = $storeManager; 37 | $this->_customerFactory = $customerFactory; 38 | } 39 | 40 | /** 41 | * @param \Magento\Framework\Event\Observer $observer 42 | * @return void 43 | */ 44 | public function execute(\Magento\Framework\Event\Observer $observer) 45 | { 46 | $data = $this->_request->getPost(); 47 | if(isset($data['create_panel_account']) && ($data['create_panel_account']=='on')){ 48 | $user = $observer->getEvent()->getObject(); 49 | $userPassword = $user->getPassword(); 50 | $firstname = $user->getFirstname(); 51 | $lastname = $user->getLastname(); 52 | $userEmail = $user->getEmail(); 53 | $websites = $this->storeManager->getWebsites(); 54 | if(count($websites)>0){ 55 | foreach($websites as $website){ 56 | $customer = $this->_customerFactory->create()->setWebsiteId($website->getId())->loadByEmail($userEmail); 57 | if($customer->getId()){ 58 | $this->_messageManager->addError(__('The account with same email already exists on %1', $website->getName())); 59 | }else{ 60 | $customer->setFirstname($firstname); 61 | $customer->setLastname($lastname); 62 | $customer->setEmail($userEmail); 63 | $customer->setPasswordHash($userPassword); 64 | $customer->setIsFbuilderAccount(1); 65 | 66 | try{ 67 | $customer->save(); 68 | $this->_messageManager->addSuccess(__('Front-end Builder account have been created for website %1.', $website->getName())); 69 | }catch(\Exception $e){ 70 | $this->_messageManager->addError(__($e->getMessage())); 71 | } 72 | } 73 | } 74 | } 75 | } 76 | } 77 | } 78 | -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/Block/Adminhtml/System/Import.php: -------------------------------------------------------------------------------- 1 | 12 | */ 13 | class Import extends \Magento\Framework\Data\Form\Element\AbstractElement 14 | { 15 | /** 16 | * @var \Magento\Backend\Model\UrlInterface 17 | */ 18 | protected $_backendUrl; 19 | 20 | protected $collectionFactory; 21 | 22 | /** 23 | * @param \Magento\Framework\Data\Form\Element\Factory $factoryElement 24 | * @param \Magento\Framework\Data\Form\Element\CollectionFactory $factoryCollection 25 | * @param \Magento\Framework\Escaper $escaper 26 | * @param \Magento\Backend\Helper\Data $helper 27 | * @param array $data 28 | */ 29 | public function __construct( 30 | \Magento\Framework\Data\Form\Element\Factory $factoryElement, 31 | \Magento\Framework\Data\Form\Element\CollectionFactory $factoryCollection, 32 | \Magento\Framework\Escaper $escaper, 33 | \Magento\Backend\Model\UrlInterface $backendUrl, 34 | \Magento\Cms\Model\ResourceModel\Page\CollectionFactory $collectionFactory, 35 | array $data = [] 36 | ) { 37 | parent::__construct($factoryElement, $factoryCollection, $escaper, $data); 38 | $this->_backendUrl = $backendUrl; 39 | $this->collectionFactory = $collectionFactory; 40 | } 41 | 42 | /** 43 | * @return string 44 | */ 45 | public function getElementHtml() 46 | { 47 | /** @var \Magento\Backend\Block\Widget\Button $buttonBlock */ 48 | $collection = $this->collectionFactory->create(); 49 | 50 | //echo $collection->getSelect(); die(); 51 | 52 | $html = '
'; 63 | 64 | $html .= ''; 65 | 66 | return $html; 67 | } 68 | } 69 | -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/templates/panel/top_panel.phtml: -------------------------------------------------------------------------------- 1 | getHelper() ?> 2 | acceptToUsePanel() ?> 3 | showButton()): ?> 4 | getMediaUrl().'mgs/fbuilder/css/panel.css'; ?> 5 | 6 | 7 | 33 | 34 | 45 | 46 | 57 | -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/Controller/Index/Removesection.php: -------------------------------------------------------------------------------- 1 | _storeManager = $storeManager; 33 | $this->customerSession = $customerSession; 34 | $this->_urlBuilder = $urlContext->getUrlBuilder(); 35 | $this->cacheManager = $cacheManager; 36 | parent::__construct($context); 37 | } 38 | 39 | public function getModel($model){ 40 | return $this->_objectManager->create($model); 41 | } 42 | 43 | public function execute() 44 | { 45 | if($this->getRequest()->isAjax() && ($this->customerSession->getUseFrontendBuilder() == 1)){ 46 | $result['block_copied'] = 0; 47 | if($id = $this->getRequest()->getParam('id')){ 48 | $result['result'] = $id; 49 | $section = $this->getModel('MGS\Fbuilder\Model\Section')->load($id); 50 | if($section->getId()){ 51 | $childs = $this->getModel('MGS\Fbuilder\Model\Child') 52 | ->getCollection() 53 | ->addFieldToFilter('block_name', ['like'=>$section->getName().'-%']) 54 | ->addFieldToFilter('page_id', $section->getPageId()); 55 | try{ 56 | if(count($childs)>0){ 57 | foreach($childs as $_child){ 58 | if($this->customerSession->getBlockCopied()==$_child->getId()){ 59 | $this->customerSession->setBlockCopied(false); 60 | $result['block_copied'] = 1; 61 | } 62 | $_child->delete(); 63 | } 64 | } 65 | 66 | $section->delete(); 67 | $this->cacheManager->clean(['full_page']); 68 | }catch (\Exception $e) { 69 | $result['result'] = $e->getMessage(); 70 | } 71 | }else{ 72 | $result['result'] = __('Can not find section to delete.'); 73 | } 74 | } 75 | return $this->getResponse()->setBody(json_encode($result)); 76 | }else{ 77 | $resultRedirect = $this->resultFactory->create(ResultFactory::TYPE_REDIRECT); 78 | $resultRedirect->setUrl($this->_redirect->getRefererUrl()); 79 | return $resultRedirect; 80 | } 81 | 82 | } 83 | } 84 | -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/web/js/timer.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Contus Support Interactive. 3 | * 4 | * NOTICE OF LICENSE 5 | * 6 | * This source file is subject to the EULA 7 | * that is bundled with this package in the file PRICE COUNTDOWN-LICENSE.txt. 8 | * 9 | * ================================================================= 10 | * MAGENTO EDITION USAGE NOTICE 11 | * ================================================================= 12 | * This package designed for Magento 1.4.x and 1.5.x COMMUNITY edition 13 | * Contus Support does not guarantee correct work of this package 14 | * on any other Magento edition except Magento 1.4.x and 1.5.x COMMUNITY edition. 15 | * ================================================================= 16 | */ 17 | 18 | if (typeof(BackColor)=="undefined") 19 | BackColor = "white"; 20 | if (typeof(ForeColor)=="undefined") 21 | ForeColor= "black"; 22 | if (typeof(DisplayFormat)=="undefined") 23 | DisplayFormat = "%%D%%%%H%%%%M%%%%S%%"; 24 | if (typeof(CountActive)=="undefined") 25 | CountActive = true; 26 | if (typeof(FinishMessage)=="undefined") 27 | FinishMessage = ""; 28 | if (typeof(CountStepper)!="number") 29 | CountStepper = -1; 30 | if (typeof(LeadingZero)=="undefined") 31 | LeadingZero = true; 32 | CountStepper = Math.ceil(CountStepper); 33 | if (CountStepper == 0) 34 | CountActive = false; 35 | var SetTimeOutPeriod = (Math.abs(CountStepper)-1)*1000 + 990; 36 | function calcage(secs, num1, num2) { 37 | s = ((Math.floor(secs/num1)%num2)).toString(); 38 | if (LeadingZero && s.length < 2) 39 | s = "0" + s; 40 | return "" + s + ""; 41 | } 42 | function CountBack(secs,iid,j) { 43 | if (secs < 0) { 44 | document.getElementById(iid).innerHTML = FinishMessage; 45 | document.getElementById('caption'+j).style.display = "none"; 46 | document.getElementById('heading'+j).style.display = "none"; 47 | return; 48 | } 49 | DisplayStr = DisplayFormat.replace(/%%D%%/g, calcage(secs,86400,100000)); 50 | DisplayStr = DisplayStr.replace(/%%H%%/g, calcage(secs,3600,24)); 51 | DisplayStr = DisplayStr.replace(/%%M%%/g, calcage(secs,60,60)); 52 | DisplayStr = DisplayStr.replace(/%%S%%/g, calcage(secs,1,60)); 53 | document.getElementById(iid).innerHTML = DisplayStr; 54 | if (CountActive) 55 | setTimeout(function(){CountBack((secs+CountStepper),iid,j)}, SetTimeOutPeriod); 56 | } 57 | -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/templates/panel/homecontent.phtml: -------------------------------------------------------------------------------- 1 | helper('MGS\Fbuilder\Helper\Data') ?> 2 | acceptToUsePanel() ?> 3 | getSections() ?> 4 | 5 |
6 | 7 | 0): ?> 8 | 9 | getSectionSetting($section, $canUsePanel) ?>> 10 |
11 | 12 | getEditPanel() ?> 13 | 14 | getBlockCols(); 16 | $class = $section->getBlockClass(); 17 | if($class!=''){ 18 | $class = json_decode($class, true); 19 | } 20 | ?> 21 | 22 | 1): ?> 23 |
24 | $col): ?> 25 | getBlockClass($section, $col, $class, $key, $canUsePanel) ?> 26 |
27 |
id="sort-block-getName().'-'.$key ?>" class="line sort-block-container"class="line"> 28 | getLayout()->createBlock('MGS\Fbuilder\Block\Panel\Block')->setBlockName($section->getName().'-'.$key)->setCanUsePanel($canUsePanel)->setTemplate('panel/block.phtml')->toHtml() ?> 29 |
30 |
31 | 32 |
33 | 34 |
35 |
36 |
id="sort-block-getName().'-0' ?>" class="line sort-block-container"class="line"> 37 | getLayout()->createBlock('MGS\Fbuilder\Block\Panel\Block')->setBlockName($section->getName().'-0')->setCanUsePanel($canUsePanel)->setTemplate('panel/block.phtml')->toHtml() ?> 38 |
39 |
40 |
41 | 42 |
43 | 44 | 45 | 46 | 47 |
48 | 49 | 50 |
51 |
52 |
53 | 54 |
55 |
56 |
57 | 58 | 59 | -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/Block/Adminhtml/System/Export.php: -------------------------------------------------------------------------------- 1 | 12 | */ 13 | class Export extends \Magento\Framework\Data\Form\Element\AbstractElement 14 | { 15 | /** 16 | * @var \Magento\Backend\Model\UrlInterface 17 | */ 18 | protected $_backendUrl; 19 | 20 | protected $collectionFactory; 21 | 22 | /** 23 | * Page factory 24 | * 25 | * @var \Magento\Cms\Model\PageFactory 26 | */ 27 | protected $_pageFactory; 28 | 29 | /** 30 | * @param \Magento\Framework\Data\Form\Element\Factory $factoryElement 31 | * @param \Magento\Framework\Data\Form\Element\CollectionFactory $factoryCollection 32 | * @param \Magento\Framework\Escaper $escaper 33 | * @param \Magento\Backend\Helper\Data $helper 34 | * @param array $data 35 | */ 36 | public function __construct( 37 | \Magento\Framework\Data\Form\Element\Factory $factoryElement, 38 | \Magento\Framework\Data\Form\Element\CollectionFactory $factoryCollection, 39 | \Magento\Framework\Escaper $escaper, 40 | \Magento\Backend\Model\UrlInterface $backendUrl, 41 | \MGS\Fbuilder\Model\ResourceModel\Section\CollectionFactory $collectionFactory, 42 | \Magento\Cms\Model\PageFactory $pageFactory, 43 | array $data = [] 44 | ) { 45 | parent::__construct($factoryElement, $factoryCollection, $escaper, $data); 46 | $this->_backendUrl = $backendUrl; 47 | $this->collectionFactory = $collectionFactory; 48 | $this->_pageFactory = $pageFactory; 49 | } 50 | 51 | /** 52 | * @return string 53 | */ 54 | public function getElementHtml() 55 | { 56 | /** @var \Magento\Backend\Block\Widget\Button $buttonBlock */ 57 | $collection = $this->collectionFactory->create(); 58 | $collection->getSelect()->group('page_id'); 59 | //echo $collection->getSelect(); die(); 60 | 61 | $html = ''; 74 | 75 | $url = $this->_backendUrl->getUrl("adminhtml/fbuilder/export"); 76 | 77 | $html .= ''; 78 | 79 | return $html; 80 | } 81 | } 82 | -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/templates/panel/create/element/static/table.phtml: -------------------------------------------------------------------------------- 1 | getContent() ?> 2 | 3 | 4 | 5 | 27 | 28 | -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/Block/Widget/Chart.php: -------------------------------------------------------------------------------- 1 | getChartType(); 11 | $html = "var ctx".$blockId." = document.getElementById('mgsChart".$blockId."');"; 12 | $labelHtml = ''; 13 | if($type=='line' || $type=='bar' || $type=='radar'){ 14 | $labels = explode(',',$this->decodeHtmlTag($this->getFbuilderTimelineLabel())); 15 | $items = json_decode($this->decodeHtmlTag($this->getFbuilderChartItem()), true); 16 | 17 | $labelHtml = "["; 18 | if(count($labels)>0){ 19 | foreach($labels as $label){ 20 | $labelHtml .= "'".$label."',"; 21 | } 22 | $labelHtml = substr($labelHtml, 0, -1); 23 | } 24 | $labelHtml .= "]"; 25 | 26 | 27 | $dataset = '['; 28 | 29 | if(count($items)>0){ 30 | foreach($items as $key=>$item){ 31 | $data = '['.implode(',',$item['point']).']'; 32 | $dataset .= '{ 33 | data: '.$data.', 34 | label: "'.$item['label'].'", 35 | borderColor: "'.$item['background'].'",'; 36 | if($type=='radar'){ 37 | list($r, $g, $b) = sscanf($item['background'], "#%02x%02x%02x"); 38 | $dataset .= 'backgroundColor: "rgba('.$r.','.$g.','.$b.',.3)", 39 | fill: true 40 | },'; 41 | }else{ 42 | $dataset .= 'backgroundColor: "'.$item['background'].'", 43 | fill: false 44 | },'; 45 | } 46 | } 47 | } 48 | 49 | $dataset .= ']'; 50 | 51 | 52 | }else{ 53 | $segments = json_decode($this->decodeHtmlTag($this->getFbuilderSegment()), true); 54 | $dataset = '['; 55 | 56 | $data = $background = $label = []; 57 | if(count($segments)>0){ 58 | foreach($segments as $key=>$segment){ 59 | $data[] = $segment['value']; 60 | $background[] = '"'.$segment['background'].'"'; 61 | $label[] = '"'.$segment['label'].'"'; 62 | } 63 | $labelHtml = '['. implode(',',$label) .']'; 64 | $backgroundHtml = '['. implode(',',$background) .']'; 65 | $dataHtml = '['. implode(',',$data) .']'; 66 | 67 | $dataset .= '{ 68 | "data":'.$dataHtml.', 69 | "backgroundColor":'.$backgroundHtml.' 70 | }'; 71 | } 72 | 73 | $dataset .= ']'; 74 | } 75 | 76 | $html .= "var myChart".$blockId." = new Chart(ctx".$blockId.", { 77 | type: '".$type."', 78 | data: { 79 | labels: ".$labelHtml.", 80 | datasets: ".$dataset." 81 | } 82 | });"; 83 | 84 | return $html; 85 | } 86 | 87 | public function decodeHtmlTag($content){ 88 | $result = str_replace("<change;","<",$content); 89 | $result = str_replace(">change;",">",$result); 90 | $result = str_replace('"change;','"',$result); 91 | $result = str_replace("'change;","'",$result); 92 | $result = str_replace("&commachange;",",",$result); 93 | $result = str_replace("&pluschange;","+",$result); 94 | $result = str_replace("&leftcurlybracket;","{",$result); 95 | $result = str_replace("&rightcurlybracket;","}",$result); 96 | $result = str_replace("&mgs_space;"," ",$result); 97 | return $result; 98 | } 99 | } -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/Controller/Post/Upload.php: -------------------------------------------------------------------------------- 1 | customerSession = $customerSession; 41 | parent::__construct($context); 42 | 43 | $this->_storeManager = $storeManager; 44 | $this->_filesystem = $filesystem; 45 | $this->_file = $file; 46 | $this->_fileUploaderFactory = $fileUploaderFactory; 47 | $this->cacheManager = $cacheManager; 48 | } 49 | 50 | public function execute() 51 | { 52 | if($this->getRequest()->isAjax() && ($this->customerSession->getUseFrontendBuilder() == 1)){ 53 | $type = $this->getRequest()->getParam('type'); 54 | $result = ['result'=>'error', 'data'=>__('Can not upload file.')]; 55 | if(isset($_FILES['file']['name']) && $_FILES['file']['name'] != '') { 56 | $uploader = $this->_fileUploaderFactory->create(['fileId' => 'file']); 57 | $file = $uploader->validateFile(); 58 | 59 | if(($file['name']!='') && ($file['size'] >0)){ 60 | $uploader->setAllowedExtensions(['jpg', 'jpeg', 'gif', 'png']); 61 | $uploader->setAllowRenameFiles(true); 62 | $path = $this->_filesystem->getDirectoryRead(DirectoryList::MEDIA)->getAbsolutePath('wysiwyg/'.$type); 63 | $uploader->save($path); 64 | $fileName = $uploader->getUploadedFileName(); 65 | if($this->isFile('wysiwyg/'.$type.'/'.$fileName)){ 66 | $result['result'] = 'success'; 67 | $result['data'] = $fileName; 68 | }else{ 69 | $result['data'] = $_FILES['file']['name']; 70 | } 71 | } 72 | } 73 | $this->cacheManager->clean(['full_page']); 74 | return $this->getResponse()->setBody(json_encode($result)); 75 | }else{ 76 | $resultRedirect = $this->resultFactory->create(ResultFactory::TYPE_REDIRECT); 77 | $resultRedirect->setUrl($this->_redirect->getRefererUrl()); 78 | return $resultRedirect; 79 | } 80 | } 81 | 82 | public function isFile($filename) 83 | { 84 | $mediaDirectory = $this->_filesystem->getDirectoryRead(DirectoryList::MEDIA); 85 | 86 | return $mediaDirectory->isFile($filename); 87 | } 88 | } 89 | -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/adminhtml/ui_component/category_form.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 | 5 | 6 | 7 | category 8 | 9 | 10 | 11 | ui/form/element/uploader/uploader 12 | string 13 | 14 | true 15 | false 16 | 17 | 18 | 19 | 20 | false 21 | 22 | 23 | 24 | Magento_Catalog/image-preview 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | category 34 | 35 | 36 | 37 | ui/form/element/uploader/uploader 38 | string 39 | 40 | true 41 | false 42 | 43 | 44 | 45 | 46 | false 47 | 48 | 49 | 50 | Magento_Catalog/image-preview 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 47 60 | string 61 | input 62 | Icon (Font class) 63 | 64 | 65 | 66 |
67 |
-------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/Controller/Adminhtml/Fbuilder/Createaccount.php: -------------------------------------------------------------------------------- 1 | _coreRegistry = $coreRegistry; 52 | $this->storeManager = $storeManager; 53 | $this->_userFactory = $userFactory; 54 | $this->_customerFactory = $customerFactory; 55 | } 56 | 57 | /** 58 | * Edit sitemap 59 | * 60 | * @return void 61 | * @SuppressWarnings(PHPMD.NPathComplexity) 62 | */ 63 | public function execute() 64 | { 65 | if ($userId = $this->getRequest()->getParam('user_id')) { 66 | $user = $this->_userFactory->create()->load($userId); 67 | $userPassword = $user->getPassword(); 68 | $firstname = $user->getFirstname(); 69 | $lastname = $user->getLastname(); 70 | $userEmail = $user->getEmail(); 71 | 72 | $websites = $this->storeManager->getWebsites(); 73 | if(count($websites)>0){ 74 | foreach($websites as $website){ 75 | $customer = $this->_customerFactory->create()->setWebsiteId($website->getId())->loadByEmail($userEmail); 76 | if($customer->getId()){ 77 | $this->messageManager->addError(__('The account with same email already exists on %1', $website->getName())); 78 | }else{ 79 | $customer->setFirstname($firstname); 80 | $customer->setLastname($lastname); 81 | $customer->setEmail($userEmail); 82 | $customer->setPasswordHash($userPassword); 83 | $customer->setIsFbuilderAccount(1); 84 | 85 | try{ 86 | $customer->save(); 87 | $this->messageManager->addSuccess(__('Front-end Builder account have been created for website %1.', $website->getName())); 88 | }catch(\Exception $e){ 89 | $this->messageManager->addError(__($e->getMessage())); 90 | } 91 | } 92 | } 93 | } 94 | } 95 | $resultRedirect = $this->resultFactory->create(ResultFactory::TYPE_REDIRECT); 96 | $resultRedirect->setUrl($this->_redirect->getRefererUrl()); 97 | return $resultRedirect; 98 | } 99 | } 100 | -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/templates/panel/create/element/static/content.phtml: -------------------------------------------------------------------------------- 1 | getContent() ?> 2 |
3 | 6 |
7 | 8 | 9 | 10 | 32 | 33 | -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/view/frontend/templates/panel/create/element/static/text_content.phtml: -------------------------------------------------------------------------------- 1 | getContent() ?> 2 |
3 | 6 |
7 | 8 | 9 | 10 | 32 | 33 | -------------------------------------------------------------------------------- /app/code/MGS/Fbuilder/Controller/Index/Search.php: -------------------------------------------------------------------------------- 1 | _productCollectionFactory = $productCollectionFactory; 42 | $this->_catalogProductVisibility = $catalogProductVisibility; 43 | $this->_catalogConfig = $catalogContext->getCatalogConfig(); 44 | } 45 | 46 | /** 47 | * @return \Magento\Framework\Controller\ResultInterface 48 | */ 49 | public function execute() 50 | { 51 | if (!$q=$this->getRequest()->getParam('q', false)) { 52 | /** @var \Magento\Framework\Controller\Result\Redirect $resultRedirect */ 53 | $resultRedirect = $this->resultFactory->create(ResultFactory::TYPE_REDIRECT); 54 | $resultRedirect->setUrl($this->_url->getBaseUrl()); 55 | return $resultRedirect; 56 | } 57 | $responseData = []; 58 | $collection = $this->_productCollectionFactory->create(); 59 | $collection->setVisibility($this->_catalogProductVisibility->getVisibleInCatalogIds()); 60 | 61 | $query = $q.'%'; 62 | $collection = $this->_addProductAttributesAndPrices($collection) 63 | ->addStoreFilter() 64 | ->addAttributeToSelect('name') 65 | ->addAttributeToFilter('name', ['like'=> $query]) 66 | ->addAttributeToSort('created_at', 'desc'); 67 | 68 | if(count($collection)>0){ 69 | foreach($collection as $_product){ 70 | $responseData[] = ['name'=>$_product->getName(), 'id'=>$_product->getId()]; 71 | } 72 | } 73 | $resultJson = $this->resultFactory->create(ResultFactory::TYPE_JSON); 74 | $resultJson->setData($responseData); 75 | return $resultJson; 76 | } 77 | 78 | /** 79 | * Add all attributes and apply pricing logic to products collection 80 | * to get correct values in different products lists. 81 | * E.g. crosssells, upsells, new products, recently viewed 82 | * 83 | * @param \Magento\Catalog\Model\ResourceModel\Product\Collection $collection 84 | * @return \Magento\Catalog\Model\ResourceModel\Product\Collection 85 | */ 86 | protected function _addProductAttributesAndPrices( 87 | \Magento\Catalog\Model\ResourceModel\Product\Collection $collection 88 | ) { 89 | return $collection 90 | ->addMinimalPrice() 91 | ->addFinalPrice() 92 | ->addTaxPercents() 93 | ->addAttributeToSelect($this->_catalogConfig->getProductAttributes()) 94 | ->addUrlRewrite(); 95 | } 96 | } 97 | --------------------------------------------------------------------------------