├── .gitignore ├── CONTRIBUTING.md ├── Default Shipping On Cart ├── README.md └── app │ ├── code │ └── local │ │ └── MehulChaudhari │ │ └── Shippingcart │ │ ├── Helper │ │ └── Data.php │ │ ├── Model │ │ ├── Observer.php │ │ └── Observer.php.oldbnk │ │ └── etc │ │ ├── adminhtml.xml │ │ ├── config.xml │ │ ├── config.xml~ │ │ └── system.xml │ └── etc │ └── modules │ └── MehulChaudhari_Shippingcart.xml ├── Devsters Gift Cards with some extra modification ├── README.md ├── README.md~ └── app │ ├── code │ └── local │ │ └── Devsters │ │ ├── Gift │ │ ├── Block │ │ │ └── Adminhtml │ │ │ │ ├── Giftcards.php │ │ │ │ ├── Giftcards │ │ │ │ ├── Edit.php │ │ │ │ └── Grid.php │ │ │ │ └── Renderer │ │ │ │ └── Balance.php │ │ ├── Helper │ │ │ └── Data.php │ │ ├── Model │ │ │ ├── CatalogIndex │ │ │ │ └── Data │ │ │ │ │ └── Cards.php │ │ │ ├── Gift.php │ │ │ ├── Mysql4 │ │ │ │ ├── Gift.php │ │ │ │ └── Gift │ │ │ │ │ └── Collection.php │ │ │ ├── Observer.php │ │ │ ├── Product │ │ │ │ ├── Price.php │ │ │ │ ├── Type.php │ │ │ │ └── Type │ │ │ │ │ └── Cards.php │ │ │ └── Sales │ │ │ │ └── Order.php │ │ ├── controllers │ │ │ └── Adminhtml │ │ │ │ └── GiftcardsController.php │ │ ├── etc │ │ │ ├── adminhtml.xml │ │ │ └── config.xml │ │ └── sql │ │ │ └── gift_setup │ │ │ ├── mysql4-install-0.1.0.php │ │ │ └── mysql4-upgrade-0.1.9-0.2.php │ │ └── Pay │ │ ├── Adminhtml │ │ └── Block │ │ │ └── Sales │ │ │ └── Order │ │ │ ├── Creditmemo │ │ │ ├── Totals.php │ │ │ └── Totals.php~ │ │ │ ├── Invoice │ │ │ └── Totals.php │ │ │ ├── Totals.php │ │ │ └── Totals.php~ │ │ ├── Block │ │ ├── Form │ │ │ └── Pay.php │ │ ├── Info │ │ │ └── Pay.php │ │ └── Totals │ │ │ ├── Creditmemo │ │ │ ├── Total.php │ │ │ └── Total.php~ │ │ │ ├── Invoice │ │ │ ├── Total.php │ │ │ └── Total.php~ │ │ │ └── Order │ │ │ ├── Total.php │ │ │ └── Total.php~ │ │ ├── Helper │ │ └── Data.php │ │ ├── Model │ │ ├── Method │ │ │ └── Pay.php │ │ ├── Observer.php │ │ ├── Order │ │ │ ├── Creditmemo.php │ │ │ └── Invoice.php │ │ ├── Pdf │ │ │ ├── Total.php │ │ │ └── Total.php~ │ │ └── Quote │ │ │ ├── Discount.php │ │ │ └── Discount.php.org │ │ ├── etc │ │ ├── config.xml │ │ ├── config.xml~ │ │ └── system.xml │ │ └── sql │ │ └── pay_setup │ │ ├── mysql4-install-0.1.0.php │ │ ├── mysql4-upgrade-0.1.5-0.1.6.php │ │ ├── mysql4-upgrade-0.1.6-0.1.8.php~ │ │ ├── mysql4-upgrade-0.1.6-0.2.0.php~ │ │ ├── mysql4-upgrade-0.1.8-0.1.9.php │ │ ├── mysql4-upgrade-0.1.8-0.1.9.php~ │ │ └── mysql4-upgrade-0.1.9-0.2.0.php~ │ ├── design │ ├── adminhtml │ │ └── default │ │ │ └── default │ │ │ ├── layout │ │ │ └── devstersgiftcards.xml │ │ │ └── template │ │ │ └── devsters │ │ │ └── giftcards │ │ │ └── devsterscardbalance.phtml │ └── frontend │ │ └── default │ │ └── default │ │ ├── layout │ │ └── pay.xml │ │ └── template │ │ └── devsters │ │ └── pay │ │ └── form │ │ └── pay.phtml │ └── etc │ └── modules │ ├── Devsters_Gift.xml │ └── Devsters_Pay.xml ├── Google Shopping Api V2 ├── README.md ├── Weboffice_GoogleShoppingApi-0.0.9.tgz ├── app │ ├── code │ │ └── community │ │ │ └── Weboffice │ │ │ └── GoogleShoppingApi │ │ │ ├── Block │ │ │ └── Adminhtml │ │ │ │ ├── Captcha.php │ │ │ │ ├── Items.php │ │ │ │ ├── Items │ │ │ │ ├── Item.php │ │ │ │ ├── Product.php │ │ │ │ └── Renderer │ │ │ │ │ └── Id.php │ │ │ │ ├── Store │ │ │ │ └── Switcher.php │ │ │ │ ├── Types.php │ │ │ │ └── Types │ │ │ │ ├── Edit.php │ │ │ │ ├── Edit │ │ │ │ ├── Attributes.php │ │ │ │ ├── Form.php │ │ │ │ └── Select.php │ │ │ │ ├── Grid.php │ │ │ │ └── Renderer │ │ │ │ └── Country.php │ │ │ ├── Helper │ │ │ ├── Category.php │ │ │ ├── Data.php │ │ │ ├── Price.php │ │ │ └── Product.php │ │ │ ├── Model │ │ │ ├── Attribute.php │ │ │ ├── Attribute │ │ │ │ ├── Availability.php │ │ │ │ ├── Condition.php │ │ │ │ ├── Content.php │ │ │ │ ├── ContentLanguage.php │ │ │ │ ├── Default.php │ │ │ │ ├── Destinations.php │ │ │ │ ├── GoogleProductCategory.php │ │ │ │ ├── Id.php │ │ │ │ ├── ImageLink.php │ │ │ │ ├── Link.php │ │ │ │ ├── Price.php │ │ │ │ ├── ProductType.php │ │ │ │ ├── ProductUom.php │ │ │ │ ├── Quantity.php │ │ │ │ ├── SalePriceEffectiveDate.php │ │ │ │ ├── ShippingWeight.php │ │ │ │ ├── Size.php │ │ │ │ ├── Source │ │ │ │ │ └── GoogleShoppingCategories.php │ │ │ │ ├── TargetCountry.php │ │ │ │ ├── Tax.php │ │ │ │ └── Title.php │ │ │ ├── Config.php │ │ │ ├── Flag.php │ │ │ ├── GoogleShopping.php │ │ │ ├── Item.php │ │ │ ├── MassOperations.php │ │ │ ├── Mysql4 │ │ │ │ ├── Attribute.php │ │ │ │ ├── Attribute │ │ │ │ │ └── Collection.php │ │ │ │ ├── Item.php │ │ │ │ ├── Item │ │ │ │ │ └── Collection.php │ │ │ │ ├── Type.php │ │ │ │ └── Type │ │ │ │ │ └── Collection.php │ │ │ ├── Observer.php │ │ │ ├── Resource │ │ │ │ ├── Attribute.php │ │ │ │ ├── Attribute │ │ │ │ │ └── Collection.php │ │ │ │ ├── Item.php │ │ │ │ ├── Item │ │ │ │ │ └── Collection.php │ │ │ │ ├── Taxonomy.php │ │ │ │ ├── Taxonomy │ │ │ │ │ └── Collection.php │ │ │ │ ├── Type.php │ │ │ │ └── Type │ │ │ │ │ └── Collection.php │ │ │ ├── Service.php │ │ │ ├── Service │ │ │ │ └── Item.php │ │ │ ├── Source │ │ │ │ ├── Accounttype.php │ │ │ │ ├── Authtype.php │ │ │ │ ├── Country.php │ │ │ │ ├── Destinationstates.php │ │ │ │ └── Statuses.php │ │ │ ├── Taxonomy.php │ │ │ └── Type.php │ │ │ ├── controllers │ │ │ └── Adminhtml │ │ │ │ └── GoogleShoppingApi │ │ │ │ ├── ItemsController.php │ │ │ │ ├── OauthController.php │ │ │ │ ├── SelectionController.php │ │ │ │ ├── TaxonomyController.php │ │ │ │ └── TypesController.php │ │ │ ├── data │ │ │ └── googleshoppingapi_setup │ │ │ │ ├── data-install-0.0.1.php │ │ │ │ ├── data-upgrade-0.0.8-0.0.9.php │ │ │ │ └── taxonomies │ │ │ │ ├── cs_CZ.txt │ │ │ │ ├── da_DK.txt │ │ │ │ ├── de_DE.txt │ │ │ │ ├── en_AU.txt │ │ │ │ ├── en_GB.txt │ │ │ │ ├── en_US.txt │ │ │ │ ├── es_ES.txt │ │ │ │ ├── fr_FR.txt │ │ │ │ ├── ja_JP.txt │ │ │ │ ├── nl_NL.txt │ │ │ │ ├── no_NO.txt │ │ │ │ └── pl_PL.txt │ │ │ ├── etc │ │ │ ├── adminhtml.xml │ │ │ ├── config.xml │ │ │ └── system.xml │ │ │ └── sql │ │ │ └── googleshoppingapi_setup │ │ │ ├── data-install-0.0.1.php │ │ │ ├── install-0.0.1.php │ │ │ ├── mysql4-data-install-0.0.1.php │ │ │ ├── upgrade-0.0.4-0.0.5.php │ │ │ └── upgrade-0.0.5-0.0.6.php │ ├── design │ │ └── adminhtml │ │ │ ├── base │ │ │ └── default │ │ │ │ └── template │ │ │ │ └── googleshoppingapi │ │ │ │ ├── captcha.phtml │ │ │ │ ├── items.phtml │ │ │ │ └── types │ │ │ │ ├── edit.phtml │ │ │ │ └── edit │ │ │ │ ├── attributes.phtml │ │ │ │ └── select.phtml │ │ │ └── default │ │ │ └── default │ │ │ ├── layout │ │ │ └── weboffice │ │ │ │ └── googleshoppingapi.xml │ │ │ └── template │ │ │ └── googleshoppingapi │ │ │ ├── autocomplete.phtml │ │ │ ├── captcha.phtml │ │ │ ├── items.phtml │ │ │ └── types │ │ │ ├── edit.phtml │ │ │ └── edit │ │ │ ├── attributes.phtml │ │ │ └── select.phtml │ └── etc │ │ └── modules │ │ └── Weboffice_GoogleShoppingApi.xml ├── js │ └── weboffice │ │ └── adminhtml │ │ └── googleshopping.js ├── lib │ ├── Google │ │ ├── Auth │ │ │ ├── Abstract.php │ │ │ ├── AppIdentity.php │ │ │ ├── AssertionCredentials.php │ │ │ ├── ComputeEngine.php │ │ │ ├── Exception.php │ │ │ ├── LoginTicket.php │ │ │ ├── OAuth2.php │ │ │ └── Simple.php │ │ ├── Cache │ │ │ ├── Abstract.php │ │ │ ├── Apc.php │ │ │ ├── Exception.php │ │ │ ├── File.php │ │ │ ├── Memcache.php │ │ │ └── Null.php │ │ ├── Client.php │ │ ├── Collection.php │ │ ├── Config.php │ │ ├── Exception.php │ │ ├── Http │ │ │ ├── Batch.php │ │ │ ├── CacheParser.php │ │ │ ├── MediaFileUpload.php │ │ │ ├── REST.php │ │ │ └── Request.php │ │ ├── IO │ │ │ ├── Abstract.php │ │ │ ├── Curl.php │ │ │ ├── Exception.php │ │ │ ├── Stream.php │ │ │ └── cacerts.pem │ │ ├── Logger │ │ │ ├── Abstract.php │ │ │ ├── Exception.php │ │ │ ├── File.php │ │ │ ├── Null.php │ │ │ └── Psr.php │ │ ├── Model.php │ │ ├── Service.php │ │ ├── Service │ │ │ ├── AdExchangeBuyer.php │ │ │ ├── AdExchangeSeller.php │ │ │ ├── AdSense.php │ │ │ ├── AdSenseHost.php │ │ │ ├── Admin.php │ │ │ ├── Analytics.php │ │ │ ├── AndroidPublisher.php │ │ │ ├── AppState.php │ │ │ ├── Appsactivity.php │ │ │ ├── Audit.php │ │ │ ├── Autoscaler.php │ │ │ ├── Bigquery.php │ │ │ ├── Blogger.php │ │ │ ├── Books.php │ │ │ ├── Calendar.php │ │ │ ├── CivicInfo.php │ │ │ ├── CloudMonitoring.php │ │ │ ├── Cloudlatencytest.php │ │ │ ├── Compute.php │ │ │ ├── Container.php │ │ │ ├── Coordinate.php │ │ │ ├── Customsearch.php │ │ │ ├── Dataflow.php │ │ │ ├── Datastore.php │ │ │ ├── Deploymentmanager.php │ │ │ ├── Dfareporting.php │ │ │ ├── Directory.php │ │ │ ├── Dns.php │ │ │ ├── DoubleClickBidManager.php │ │ │ ├── Doubleclicksearch.php │ │ │ ├── Drive.php │ │ │ ├── Exception.php │ │ │ ├── Fitness.php │ │ │ ├── Freebase.php │ │ │ ├── Fusiontables.php │ │ │ ├── Games.php │ │ │ ├── GamesConfiguration.php │ │ │ ├── GamesManagement.php │ │ │ ├── Genomics.php │ │ │ ├── Gmail.php │ │ │ ├── GroupsMigration.php │ │ │ ├── Groupssettings.php │ │ │ ├── IdentityToolkit.php │ │ │ ├── Licensing.php │ │ │ ├── Manager.php │ │ │ ├── MapsEngine.php │ │ │ ├── Mirror.php │ │ │ ├── Oauth2.php │ │ │ ├── Pagespeedonline.php │ │ │ ├── Plus.php │ │ │ ├── PlusDomains.php │ │ │ ├── Prediction.php │ │ │ ├── Pubsub.php │ │ │ ├── QPXExpress.php │ │ │ ├── Replicapool.php │ │ │ ├── Replicapoolupdater.php │ │ │ ├── Reports.php │ │ │ ├── Reseller.php │ │ │ ├── Resource.php │ │ │ ├── Resourceviews.php │ │ │ ├── ShoppingContent.php │ │ │ ├── ShoppingContent │ │ │ │ ├── Account.php │ │ │ │ ├── AccountAdwordsLink.php │ │ │ │ ├── AccountShipping.php │ │ │ │ ├── AccountShippingCarrierRate.php │ │ │ │ ├── AccountShippingCondition.php │ │ │ │ ├── AccountShippingLocationGroup.php │ │ │ │ ├── AccountShippingPostalCodeRange.php │ │ │ │ ├── AccountShippingRateTable.php │ │ │ │ ├── AccountShippingRateTableCell.php │ │ │ │ ├── AccountShippingShippingService.php │ │ │ │ ├── AccountShippingShippingServiceCalculationMethod.php │ │ │ │ ├── AccountShippingShippingServiceCostRule.php │ │ │ │ ├── AccountStatus.php │ │ │ │ ├── AccountStatusDataQualityIssue.php │ │ │ │ ├── AccountStatusExampleItem.php │ │ │ │ ├── AccountTax.php │ │ │ │ ├── AccountTaxTaxRule.php │ │ │ │ ├── AccountUser.php │ │ │ │ ├── Accounts │ │ │ │ │ └── Resource.php │ │ │ │ ├── AccountsCustomBatchRequest.php │ │ │ │ ├── AccountsCustomBatchRequestEntry.php │ │ │ │ ├── AccountsCustomBatchResponse.php │ │ │ │ ├── AccountsCustomBatchResponseEntry.php │ │ │ │ ├── AccountsListResponse.php │ │ │ │ ├── Accountshipping │ │ │ │ │ └── Resource.php │ │ │ │ ├── AccountshippingCustomBatchRequest.php │ │ │ │ ├── AccountshippingCustomBatchRequestEntry.php │ │ │ │ ├── AccountshippingCustomBatchResponse.php │ │ │ │ ├── AccountshippingCustomBatchResponseEntry.php │ │ │ │ ├── AccountshippingListResponse.php │ │ │ │ ├── Accountstatuses │ │ │ │ │ └── Resource.php │ │ │ │ ├── AccountstatusesCustomBatchRequest.php │ │ │ │ ├── AccountstatusesCustomBatchRequestEntry.php │ │ │ │ ├── AccountstatusesCustomBatchResponse.php │ │ │ │ ├── AccountstatusesCustomBatchResponseEntry.php │ │ │ │ ├── AccountstatusesListResponse.php │ │ │ │ ├── Accounttax │ │ │ │ │ └── Resource.php │ │ │ │ ├── AccounttaxCustomBatchRequest.php │ │ │ │ ├── AccounttaxCustomBatchRequestEntry.php │ │ │ │ ├── AccounttaxCustomBatchResponse.php │ │ │ │ ├── AccounttaxCustomBatchResponseEntry.php │ │ │ │ ├── AccounttaxListResponse.php │ │ │ │ ├── Datafeed.php │ │ │ │ ├── DatafeedFetchSchedule.php │ │ │ │ ├── DatafeedFormat.php │ │ │ │ ├── DatafeedStatus.php │ │ │ │ ├── DatafeedStatusError.php │ │ │ │ ├── DatafeedStatusExample.php │ │ │ │ ├── Datafeeds │ │ │ │ │ └── Resource.php │ │ │ │ ├── DatafeedsCustomBatchRequest.php │ │ │ │ ├── DatafeedsCustomBatchRequestEntry.php │ │ │ │ ├── DatafeedsCustomBatchResponse.php │ │ │ │ ├── DatafeedsCustomBatchResponseEntry.php │ │ │ │ ├── DatafeedsListResponse.php │ │ │ │ ├── Datafeedstatuses │ │ │ │ │ └── Resource.php │ │ │ │ ├── DatafeedstatusesCustomBatchRequest.php │ │ │ │ ├── DatafeedstatusesCustomBatchRequestEntry.php │ │ │ │ ├── DatafeedstatusesCustomBatchResponse.php │ │ │ │ ├── DatafeedstatusesCustomBatchResponseEntry.php │ │ │ │ ├── DatafeedstatusesListResponse.php │ │ │ │ ├── Error.php │ │ │ │ ├── Errors.php │ │ │ │ ├── Inventory.php │ │ │ │ ├── Inventory │ │ │ │ │ └── Resource.php │ │ │ │ ├── InventoryCustomBatchRequest.php │ │ │ │ ├── InventoryCustomBatchRequestEntry.php │ │ │ │ ├── InventoryCustomBatchResponse.php │ │ │ │ ├── InventoryCustomBatchResponseEntry.php │ │ │ │ ├── InventorySetRequest.php │ │ │ │ ├── InventorySetResponse.php │ │ │ │ ├── LoyaltyPoints.php │ │ │ │ ├── Price.php │ │ │ │ ├── Product.php │ │ │ │ ├── ProductCustomAttribute.php │ │ │ │ ├── ProductCustomGroup.php │ │ │ │ ├── ProductDestination.php │ │ │ │ ├── ProductInstallment.php │ │ │ │ ├── ProductShipping.php │ │ │ │ ├── ProductShippingDimension.php │ │ │ │ ├── ProductShippingWeight.php │ │ │ │ ├── ProductStatus.php │ │ │ │ ├── ProductStatusDataQualityIssue.php │ │ │ │ ├── ProductStatusDestinationStatus.php │ │ │ │ ├── ProductTax.php │ │ │ │ ├── ProductUnitPricingBaseMeasure.php │ │ │ │ ├── ProductUnitPricingMeasure.php │ │ │ │ ├── Products │ │ │ │ │ └── Resource.php │ │ │ │ ├── ProductsCustomBatchRequest.php │ │ │ │ ├── ProductsCustomBatchRequestEntry.php │ │ │ │ ├── ProductsCustomBatchResponse.php │ │ │ │ ├── ProductsCustomBatchResponseEntry.php │ │ │ │ ├── ProductsListResponse.php │ │ │ │ ├── Productstatuses │ │ │ │ │ └── Resource.php │ │ │ │ ├── ProductstatusesCustomBatchRequest.php │ │ │ │ ├── ProductstatusesCustomBatchRequestEntry.php │ │ │ │ ├── ProductstatusesCustomBatchResponse.php │ │ │ │ ├── ProductstatusesCustomBatchResponseEntry.php │ │ │ │ ├── ProductstatusesListResponse.php │ │ │ │ └── Weight.php │ │ │ ├── SiteVerification.php │ │ │ ├── Spectrum.php │ │ │ ├── Storage.php │ │ │ ├── TagManager.php │ │ │ ├── Taskqueue.php │ │ │ ├── Tasks.php │ │ │ ├── Translate.php │ │ │ ├── Urlshortener.php │ │ │ ├── Webfonts.php │ │ │ ├── Webmasters.php │ │ │ ├── YouTube.php │ │ │ └── YouTubeAnalytics.php │ │ ├── Signer │ │ │ ├── Abstract.php │ │ │ └── P12.php │ │ ├── Task │ │ │ ├── Exception.php │ │ │ ├── Retryable.php │ │ │ └── Runner.php │ │ ├── Utils.php │ │ ├── Utils │ │ │ └── URITemplate.php │ │ ├── Verifier │ │ │ ├── Abstract.php │ │ │ └── Pem.php │ │ └── autoload.php │ └── Varien │ │ └── Data │ │ └── Form │ │ └── Element │ │ └── Googleshoppingautocomplete.php ├── package.xml └── var │ └── weboffice │ └── googleshoppingapi │ └── data │ ├── taxonomy.cs_CZ.txt │ ├── taxonomy.da_DK.txt │ ├── taxonomy.de_DE.txt │ ├── taxonomy.en_AU.txt │ ├── taxonomy.en_GB.txt │ ├── taxonomy.en_US.txt │ ├── taxonomy.es_ES.txt │ ├── taxonomy.fr_FR.txt │ ├── taxonomy.ja_JP.txt │ ├── taxonomy.nl_NL.txt │ ├── taxonomy.no_NO.txt │ └── taxonomy.pl_PL.txt ├── Google feed and facebook feed ├── README.md ├── admin_setting-2.png ├── admin_settings.png ├── app │ ├── code │ │ └── community │ │ │ └── Mehulchaudhari │ │ │ └── FeedsGenerator │ │ │ ├── Block │ │ │ ├── Button.php │ │ │ ├── FieldMapping.php │ │ │ └── Googleproducts │ │ │ │ ├── FieldMapping.php │ │ │ │ └── LinkFieldMapping.php │ │ │ ├── Helper │ │ │ └── Data.php │ │ │ ├── Model │ │ │ ├── Child.php │ │ │ ├── Config │ │ │ │ ├── Condition.php │ │ │ │ └── ProductAttributes.php │ │ │ ├── FeedCronBase.php │ │ │ ├── FeedCronBase │ │ │ │ ├── Csv.php │ │ │ │ └── Xml.php │ │ │ ├── Googleproducts │ │ │ │ ├── Child.php │ │ │ │ ├── Config │ │ │ │ │ ├── FeedAttributes.php │ │ │ │ │ └── LinkAttributes.php │ │ │ │ ├── Cron.php │ │ │ │ ├── Source │ │ │ │ │ └── Taxonomy.php │ │ │ │ └── Taxonomy.php │ │ │ └── child_run.php │ │ │ ├── controllers │ │ │ └── Adminhtml │ │ │ │ └── FeedsGeneratorController.php │ │ │ ├── etc │ │ │ ├── adminhtml.xml │ │ │ ├── config.xml │ │ │ └── system.xml │ │ │ └── sql │ │ │ └── feedsgenerator_setup │ │ │ ├── mysql4-install-1.0.php │ │ │ └── mysql4-upgrade-1.0-1.2.php │ ├── design │ │ └── adminhtml │ │ │ └── default │ │ │ └── default │ │ │ └── template │ │ │ └── mehulchaudhari │ │ │ └── feedsgenerator │ │ │ └── system │ │ │ └── config │ │ │ └── form │ │ │ └── field │ │ │ ├── array_dropdown.phtml │ │ │ └── button.phtml │ └── etc │ │ └── modules │ │ └── Mehulchaudhari_FeedsGenerator.xml ├── link.txt ├── sample files │ ├── example_feed_xml_atom.xml │ └── googleproducts-feeds │ │ ├── english-products.xml │ │ ├── french-products.xml │ │ └── german-products.xml └── var │ └── taxonomy │ ├── taxonomy.cs-CZ.txt │ ├── taxonomy.da-DK.txt │ ├── taxonomy.de-DE.txt │ ├── taxonomy.en-AU.txt │ ├── taxonomy.en-GB.txt │ ├── taxonomy.en-US.txt │ ├── taxonomy.es-ES.txt │ ├── taxonomy.fr-FR.txt │ ├── taxonomy.ja-JP.txt │ ├── taxonomy.nl-NL.txt │ ├── taxonomy.no-NO.txt │ └── taxonomy.pl-PL.txt ├── Guest Checkout ├── README.md └── app │ ├── code │ └── local │ │ └── MehulChaudhari │ │ └── GuestCheckout │ │ ├── Helper │ │ └── Data.php │ │ ├── Model │ │ └── Observer.php │ │ └── etc │ │ ├── adminhtml.xml │ │ ├── config.xml │ │ └── system.xml │ └── etc │ └── modules │ └── MehulChaudhari_GuestCheckout.xml ├── Idealo Magento csvexport ├── Idealo_Magento_Exportmodul_Install_DE.pdf ├── Idealo_Magento_Exportmodul_Install_UK.pdf ├── README.md ├── app │ ├── code │ │ └── local │ │ │ └── Idealo │ │ │ └── Csvexport │ │ │ ├── Block │ │ │ └── Adminhtml │ │ │ │ └── Csvexportbackend.php │ │ │ ├── Helper │ │ │ └── Data.php │ │ │ ├── Model │ │ │ ├── Observer.php │ │ │ └── Source │ │ │ │ ├── OptionCampaign.php │ │ │ │ ├── OptionCountries.php │ │ │ │ ├── OptionFixProc.php │ │ │ │ ├── OptionInclShipping.php │ │ │ │ ├── OptionShippingArt.php │ │ │ │ ├── OptionYesNo.php │ │ │ │ └── Store.php │ │ │ ├── controllers │ │ │ └── Adminhtml │ │ │ │ └── CsvexportbackendController.php │ │ │ ├── definitions │ │ │ └── definition.php │ │ │ ├── etc │ │ │ ├── config.xml │ │ │ └── system.xml │ │ │ └── tools │ │ │ ├── CreateFile.php │ │ │ ├── Idealo.php │ │ │ ├── IdealoPayment.php │ │ │ ├── IdealoShipping.php │ │ │ ├── IdealoTools.php │ │ │ └── idealo_universal.php │ ├── design │ │ └── adminhtml │ │ │ └── default │ │ │ └── default │ │ │ ├── layout │ │ │ └── csvexport.xml │ │ │ └── template │ │ │ └── csvexport │ │ │ └── csvexportbackend.phtml │ ├── etc │ │ └── modules │ │ │ └── Idealo_Csvexport.xml │ └── locale │ │ ├── de_AT │ │ └── Idealo_Csvexport.csv │ │ ├── de_DE │ │ └── Idealo_Csvexport.csv │ │ ├── en_GB │ │ └── Idealo_Csvexport.csv │ │ └── it_IT │ │ └── Idealo_Csvexport.csv └── export │ └── Img │ ├── idealo-at.gif │ ├── idealo-de.gif │ ├── idealo-flug.gif │ ├── idealo-fr.gif │ ├── idealo-gas.gif │ ├── idealo-geld.gif │ ├── idealo-hotel.gif │ ├── idealo-it.gif │ ├── idealo-strom.gif │ ├── idealo-uk.gif │ └── idealo.gif ├── LICENSE ├── Magento Configurable Product Option Order Fix ├── README.md ├── admin.png ├── app │ ├── code │ │ └── local │ │ │ └── MehulChaudhari │ │ │ └── ConfigOptionSortFix │ │ │ ├── Block │ │ │ └── Catalog │ │ │ │ └── Product │ │ │ │ └── View │ │ │ │ └── Type │ │ │ │ └── Configurable.php │ │ │ ├── Helper │ │ │ └── Data.php │ │ │ └── etc │ │ │ └── config.xml │ └── etc │ │ └── modules │ │ └── MehulChaudhari_ConfigOptionSortFix.xml └── frontend.png ├── Magento Display Shipping estimation Block in Product view page ├── README.md ├── Shipping Calculator On Product Page(Ajax) icon.png ├── Webdevlopers_Product_Page_Shipping.zip ├── admin.png ├── app │ ├── code │ │ └── community │ │ │ └── WebDevlopers │ │ │ └── ProductPageShipping │ │ │ ├── Block │ │ │ └── Estimate │ │ │ │ ├── Abstract.php │ │ │ │ ├── Form.php │ │ │ │ └── Result.php │ │ │ ├── Helper │ │ │ └── Data.php │ │ │ ├── Model │ │ │ ├── Config.php │ │ │ ├── Config │ │ │ │ └── Source │ │ │ │ │ └── Position.php │ │ │ ├── Estimate.php │ │ │ ├── Observer.php │ │ │ └── Session.php │ │ │ ├── controllers │ │ │ └── EstimateController.php │ │ │ └── etc │ │ │ ├── adminhtml.xml │ │ │ ├── config.xml │ │ │ └── system.xml │ ├── design │ │ └── frontend │ │ │ └── default │ │ │ └── default │ │ │ ├── layout │ │ │ └── productpageshipping.xml │ │ │ └── template │ │ │ └── webdevlopers │ │ │ └── productpageshipping │ │ │ └── estimate │ │ │ ├── form.phtml │ │ │ └── result.phtml │ ├── etc │ │ └── modules │ │ │ └── WebDevlopers_ProductPageShipping.xml │ └── locale │ │ └── en_US │ │ └── WebDevlopers_ProductPageShipping.csv ├── product page.png ├── shipping result.png └── skin │ └── frontend │ └── default │ └── default │ └── css │ └── productpageshipping.css ├── Magento Facebook Conversion ├── README.md ├── app │ ├── code │ │ └── community │ │ │ └── Mehulchaudhari │ │ │ └── Facebookconversion │ │ │ ├── Block │ │ │ └── Facebookconversion.php │ │ │ ├── Helper │ │ │ └── Data.php │ │ │ └── etc │ │ │ ├── adminhtml.xml │ │ │ ├── config.xml │ │ │ └── system.xml │ ├── design │ │ └── frontend │ │ │ └── base │ │ │ └── default │ │ │ ├── layout │ │ │ └── facebookconversion.xml │ │ │ └── template │ │ │ └── facebookconversion │ │ │ ├── ordersuccess.phtml │ │ │ ├── pageview.phtml │ │ │ └── productview.phtml │ └── etc │ │ └── modules │ │ └── Mehulchaudhari_Facebookconversion.xml └── infoscript.txt ├── Magento Houzzbutton For Product ├── README.md └── app │ ├── code │ └── community │ │ └── Mehulchaudhari │ │ └── Houzzbutton │ │ ├── Block │ │ └── Houzzbutton.php │ │ ├── Helper │ │ ├── Data.php │ │ └── Data.php~ │ │ └── etc │ │ ├── adminhtml.xml │ │ ├── config.xml │ │ ├── config.xml~ │ │ ├── system.xml │ │ └── system.xml~ │ ├── design │ └── frontend │ │ └── base │ │ └── default │ │ ├── layout │ │ └── houzzbutton.xml │ │ └── template │ │ └── houzzbutton │ │ ├── houzzbutton.phtml │ │ └── houzzbutton.phtml~ │ └── etc │ └── modules │ └── Mehulchaudhari_Houzzbutton.xml ├── Magento Product Attribute Description ├── README.md ├── app │ └── code │ │ └── local │ │ └── MehulChaudhari │ │ └── Description │ │ ├── Block │ │ └── Form.php │ │ ├── Helper │ │ └── Data.php │ │ ├── Model │ │ └── Observer.php │ │ ├── etc │ │ └── config.xml │ │ └── sql │ │ └── description_setup │ │ └── mysql4-install-1.0.0.php ├── etc │ └── modules │ │ └── MehulChaudhari_Description.xml └── product_attribute_section_admin.png ├── Magento Send Coupon code to first time and second time buyer ├── Email template sample.html ├── README.md └── app │ ├── code │ └── community │ │ └── Mehulchaudhari │ │ └── Coupon │ │ ├── Helper │ │ └── Data.php │ │ ├── Model │ │ └── Observer.php │ │ └── etc │ │ ├── adminhtml.xml │ │ ├── config.xml │ │ └── system.xml │ └── etc │ └── modules │ └── Mehulchaudhari_Coupon.xml ├── Magento Yahoo Finance,Open Api,Google api for currency Rates ├── README.md └── app │ ├── code │ └── local │ │ └── Mehulchaudhari │ │ └── Currency │ │ ├── Model │ │ ├── Api.php │ │ ├── Google.php │ │ ├── Openapi.php │ │ └── Yahoo.php │ │ └── etc │ │ └── config.xml │ └── etc │ └── modules │ └── Mehulchaudhari_Currency.xml ├── Pdf upload in magento media wysiwyg ├── README.md ├── app │ ├── code │ │ └── local │ │ │ └── Pdf │ │ │ └── Allow │ │ │ ├── Block │ │ │ └── Thumb.php │ │ │ ├── Helper │ │ │ ├── Data.php │ │ │ └── File.php │ │ │ ├── Model │ │ │ └── Storage.php │ │ │ ├── controllers │ │ │ └── Cms │ │ │ │ └── Wysiwyg │ │ │ │ └── ImagesController.php │ │ │ └── etc │ │ │ └── config.xml │ └── etc │ │ └── modules │ │ └── Pdf_Allow.xml └── skin │ └── adminhtml │ └── default │ └── default │ └── images │ └── thumb │ ├── csv.png │ ├── doc.png │ ├── flv.png │ ├── gz.png │ ├── mp3.png │ ├── mp4.png │ ├── odf.png │ ├── pdf.png │ ├── xls.png │ ├── xlsx.png │ ├── xml.png │ └── zip.png ├── Product Image optimizer ├── README.md └── app │ ├── code │ └── local │ │ └── MehulChaudhari │ │ └── Imagesmashit │ │ ├── Helper │ │ └── Data.php │ │ ├── Model │ │ ├── Observer.php │ │ └── lib │ │ │ ├── SmushIt.class.php │ │ │ └── class.smushit.php │ │ └── etc │ │ ├── adminhtml.xml │ │ ├── config.xml │ │ └── system.xml │ └── etc │ └── modules │ └── MehulChaudhari_Imagesmashit.xml ├── README.md ├── Themes Switcher ├── README.md └── app │ ├── code │ └── community │ │ └── MehulChaudhari │ │ └── Theme │ │ ├── Block │ │ └── Switcher.php │ │ ├── Helper │ │ └── Data.php │ │ ├── Model │ │ ├── Source │ │ │ ├── Blocks.php │ │ │ └── Themes.php │ │ └── Switcher.php │ │ ├── etc │ │ ├── config.xml │ │ └── system.xml │ │ └── template │ │ └── theme │ │ └── switcher.phtml │ ├── design │ └── frontend │ │ └── base │ │ └── default │ │ └── template │ │ └── themeswitch │ │ └── switcher.phtml │ └── etc │ └── modules │ └── MehulChaudhari_Theme.xml ├── Upshare ├── README.md └── app │ ├── code │ └── local │ │ └── MehulChaudhari │ │ └── Upshare │ │ ├── Helper │ │ └── Data.php │ │ ├── controllers │ │ └── IndexController.php │ │ └── etc │ │ ├── adminhtml.xml │ │ ├── config.xml │ │ └── system.xml │ ├── design │ └── frontend │ │ └── base │ │ └── default │ │ ├── layout │ │ └── upshare.xml │ │ └── template │ │ └── upshare │ │ └── index.phtml │ └── etc │ └── modules │ └── MehulChaudhari_Upshare.xml └── somelink.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .modgit/ -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Default Shipping On Cart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Default Shipping On Cart/README.md -------------------------------------------------------------------------------- /Default Shipping On Cart/app/code/local/MehulChaudhari/Shippingcart/Helper/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Default Shipping On Cart/app/code/local/MehulChaudhari/Shippingcart/Helper/Data.php -------------------------------------------------------------------------------- /Default Shipping On Cart/app/code/local/MehulChaudhari/Shippingcart/Model/Observer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Default Shipping On Cart/app/code/local/MehulChaudhari/Shippingcart/Model/Observer.php -------------------------------------------------------------------------------- /Default Shipping On Cart/app/code/local/MehulChaudhari/Shippingcart/Model/Observer.php.oldbnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Default Shipping On Cart/app/code/local/MehulChaudhari/Shippingcart/Model/Observer.php.oldbnk -------------------------------------------------------------------------------- /Default Shipping On Cart/app/code/local/MehulChaudhari/Shippingcart/etc/adminhtml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Default Shipping On Cart/app/code/local/MehulChaudhari/Shippingcart/etc/adminhtml.xml -------------------------------------------------------------------------------- /Default Shipping On Cart/app/code/local/MehulChaudhari/Shippingcart/etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Default Shipping On Cart/app/code/local/MehulChaudhari/Shippingcart/etc/config.xml -------------------------------------------------------------------------------- /Default Shipping On Cart/app/code/local/MehulChaudhari/Shippingcart/etc/config.xml~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Default Shipping On Cart/app/code/local/MehulChaudhari/Shippingcart/etc/config.xml~ -------------------------------------------------------------------------------- /Default Shipping On Cart/app/code/local/MehulChaudhari/Shippingcart/etc/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Default Shipping On Cart/app/code/local/MehulChaudhari/Shippingcart/etc/system.xml -------------------------------------------------------------------------------- /Default Shipping On Cart/app/etc/modules/MehulChaudhari_Shippingcart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Default Shipping On Cart/app/etc/modules/MehulChaudhari_Shippingcart.xml -------------------------------------------------------------------------------- /Devsters Gift Cards with some extra modification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Devsters Gift Cards with some extra modification/README.md -------------------------------------------------------------------------------- /Devsters Gift Cards with some extra modification/README.md~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Devsters Gift Cards with some extra modification/README.md~ -------------------------------------------------------------------------------- /Devsters Gift Cards with some extra modification/app/code/local/Devsters/Gift/Block/Adminhtml/Giftcards.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Devsters Gift Cards with some extra modification/app/code/local/Devsters/Gift/Block/Adminhtml/Giftcards.php -------------------------------------------------------------------------------- /Devsters Gift Cards with some extra modification/app/code/local/Devsters/Gift/Block/Adminhtml/Giftcards/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Devsters Gift Cards with some extra modification/app/code/local/Devsters/Gift/Block/Adminhtml/Giftcards/Edit.php -------------------------------------------------------------------------------- /Devsters Gift Cards with some extra modification/app/code/local/Devsters/Gift/Block/Adminhtml/Giftcards/Grid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Devsters Gift Cards with some extra modification/app/code/local/Devsters/Gift/Block/Adminhtml/Giftcards/Grid.php -------------------------------------------------------------------------------- /Devsters Gift Cards with some extra modification/app/code/local/Devsters/Gift/Block/Adminhtml/Renderer/Balance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Devsters Gift Cards with some extra modification/app/code/local/Devsters/Gift/Block/Adminhtml/Renderer/Balance.php -------------------------------------------------------------------------------- /Devsters Gift Cards with some extra modification/app/code/local/Devsters/Gift/Helper/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Devsters Gift Cards with some extra modification/app/code/local/Devsters/Gift/Helper/Data.php -------------------------------------------------------------------------------- /Devsters Gift Cards with some extra modification/app/code/local/Devsters/Gift/Model/CatalogIndex/Data/Cards.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Devsters Gift Cards with some extra modification/app/code/local/Devsters/Gift/Model/CatalogIndex/Data/Cards.php -------------------------------------------------------------------------------- /Devsters Gift Cards with some extra modification/app/code/local/Devsters/Gift/Model/Gift.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Devsters Gift Cards with some extra modification/app/code/local/Devsters/Gift/Model/Gift.php -------------------------------------------------------------------------------- /Devsters Gift Cards with some extra modification/app/code/local/Devsters/Gift/Model/Mysql4/Gift.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Devsters Gift Cards with some extra modification/app/code/local/Devsters/Gift/Model/Mysql4/Gift.php -------------------------------------------------------------------------------- /Devsters Gift Cards with some extra modification/app/code/local/Devsters/Gift/Model/Mysql4/Gift/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Devsters Gift Cards with some extra modification/app/code/local/Devsters/Gift/Model/Mysql4/Gift/Collection.php -------------------------------------------------------------------------------- /Devsters Gift Cards with some extra modification/app/code/local/Devsters/Gift/Model/Observer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Devsters Gift Cards with some extra modification/app/code/local/Devsters/Gift/Model/Observer.php -------------------------------------------------------------------------------- /Devsters Gift Cards with some extra modification/app/code/local/Devsters/Gift/Model/Product/Price.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Devsters Gift Cards with some extra modification/app/code/local/Devsters/Gift/Model/Product/Price.php -------------------------------------------------------------------------------- /Devsters Gift Cards with some extra modification/app/code/local/Devsters/Gift/Model/Product/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Devsters Gift Cards with some extra modification/app/code/local/Devsters/Gift/Model/Product/Type.php -------------------------------------------------------------------------------- /Devsters Gift Cards with some extra modification/app/code/local/Devsters/Gift/Model/Product/Type/Cards.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Devsters Gift Cards with some extra modification/app/code/local/Devsters/Gift/Model/Product/Type/Cards.php -------------------------------------------------------------------------------- /Devsters Gift Cards with some extra modification/app/code/local/Devsters/Gift/Model/Sales/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Devsters Gift Cards with some extra modification/app/code/local/Devsters/Gift/Model/Sales/Order.php -------------------------------------------------------------------------------- /Devsters Gift Cards with some extra modification/app/code/local/Devsters/Gift/controllers/Adminhtml/GiftcardsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Devsters Gift Cards with some extra modification/app/code/local/Devsters/Gift/controllers/Adminhtml/GiftcardsController.php -------------------------------------------------------------------------------- /Devsters Gift Cards with some extra modification/app/code/local/Devsters/Gift/etc/adminhtml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Devsters Gift Cards with some extra modification/app/code/local/Devsters/Gift/etc/adminhtml.xml -------------------------------------------------------------------------------- /Devsters Gift Cards with some extra modification/app/code/local/Devsters/Gift/etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Devsters Gift Cards with some extra modification/app/code/local/Devsters/Gift/etc/config.xml -------------------------------------------------------------------------------- /Devsters Gift Cards with some extra modification/app/code/local/Devsters/Gift/sql/gift_setup/mysql4-install-0.1.0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Devsters Gift Cards with some extra modification/app/code/local/Devsters/Gift/sql/gift_setup/mysql4-install-0.1.0.php -------------------------------------------------------------------------------- /Devsters Gift Cards with some extra modification/app/code/local/Devsters/Gift/sql/gift_setup/mysql4-upgrade-0.1.9-0.2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Devsters Gift Cards with some extra modification/app/code/local/Devsters/Gift/sql/gift_setup/mysql4-upgrade-0.1.9-0.2.php -------------------------------------------------------------------------------- /Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/Adminhtml/Block/Sales/Order/Creditmemo/Totals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/Adminhtml/Block/Sales/Order/Creditmemo/Totals.php -------------------------------------------------------------------------------- /Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/Adminhtml/Block/Sales/Order/Creditmemo/Totals.php~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/Adminhtml/Block/Sales/Order/Creditmemo/Totals.php~ -------------------------------------------------------------------------------- /Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/Adminhtml/Block/Sales/Order/Invoice/Totals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/Adminhtml/Block/Sales/Order/Invoice/Totals.php -------------------------------------------------------------------------------- /Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/Adminhtml/Block/Sales/Order/Totals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/Adminhtml/Block/Sales/Order/Totals.php -------------------------------------------------------------------------------- /Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/Adminhtml/Block/Sales/Order/Totals.php~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/Adminhtml/Block/Sales/Order/Totals.php~ -------------------------------------------------------------------------------- /Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/Block/Form/Pay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/Block/Form/Pay.php -------------------------------------------------------------------------------- /Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/Block/Info/Pay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/Block/Info/Pay.php -------------------------------------------------------------------------------- /Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/Block/Totals/Creditmemo/Total.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/Block/Totals/Creditmemo/Total.php -------------------------------------------------------------------------------- /Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/Block/Totals/Creditmemo/Total.php~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/Block/Totals/Creditmemo/Total.php~ -------------------------------------------------------------------------------- /Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/Block/Totals/Invoice/Total.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/Block/Totals/Invoice/Total.php -------------------------------------------------------------------------------- /Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/Block/Totals/Invoice/Total.php~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/Block/Totals/Invoice/Total.php~ -------------------------------------------------------------------------------- /Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/Block/Totals/Order/Total.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/Block/Totals/Order/Total.php -------------------------------------------------------------------------------- /Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/Block/Totals/Order/Total.php~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/Block/Totals/Order/Total.php~ -------------------------------------------------------------------------------- /Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/Helper/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/Helper/Data.php -------------------------------------------------------------------------------- /Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/Model/Method/Pay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/Model/Method/Pay.php -------------------------------------------------------------------------------- /Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/Model/Observer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/Model/Observer.php -------------------------------------------------------------------------------- /Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/Model/Order/Creditmemo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/Model/Order/Creditmemo.php -------------------------------------------------------------------------------- /Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/Model/Order/Invoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/Model/Order/Invoice.php -------------------------------------------------------------------------------- /Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/Model/Pdf/Total.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/Model/Pdf/Total.php -------------------------------------------------------------------------------- /Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/Model/Pdf/Total.php~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/Model/Pdf/Total.php~ -------------------------------------------------------------------------------- /Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/Model/Quote/Discount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/Model/Quote/Discount.php -------------------------------------------------------------------------------- /Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/Model/Quote/Discount.php.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/Model/Quote/Discount.php.org -------------------------------------------------------------------------------- /Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/etc/config.xml -------------------------------------------------------------------------------- /Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/etc/config.xml~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/etc/config.xml~ -------------------------------------------------------------------------------- /Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/etc/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/etc/system.xml -------------------------------------------------------------------------------- /Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/sql/pay_setup/mysql4-install-0.1.0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/sql/pay_setup/mysql4-install-0.1.0.php -------------------------------------------------------------------------------- /Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/sql/pay_setup/mysql4-upgrade-0.1.5-0.1.6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/sql/pay_setup/mysql4-upgrade-0.1.5-0.1.6.php -------------------------------------------------------------------------------- /Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/sql/pay_setup/mysql4-upgrade-0.1.6-0.1.8.php~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/sql/pay_setup/mysql4-upgrade-0.1.6-0.1.8.php~ -------------------------------------------------------------------------------- /Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/sql/pay_setup/mysql4-upgrade-0.1.6-0.2.0.php~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/sql/pay_setup/mysql4-upgrade-0.1.6-0.2.0.php~ -------------------------------------------------------------------------------- /Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/sql/pay_setup/mysql4-upgrade-0.1.8-0.1.9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/sql/pay_setup/mysql4-upgrade-0.1.8-0.1.9.php -------------------------------------------------------------------------------- /Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/sql/pay_setup/mysql4-upgrade-0.1.8-0.1.9.php~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/sql/pay_setup/mysql4-upgrade-0.1.8-0.1.9.php~ -------------------------------------------------------------------------------- /Devsters Gift Cards with some extra modification/app/code/local/Devsters/Pay/sql/pay_setup/mysql4-upgrade-0.1.9-0.2.0.php~: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Devsters Gift Cards with some extra modification/app/design/adminhtml/default/default/layout/devstersgiftcards.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Devsters Gift Cards with some extra modification/app/design/adminhtml/default/default/layout/devstersgiftcards.xml -------------------------------------------------------------------------------- /Devsters Gift Cards with some extra modification/app/design/frontend/default/default/layout/pay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Devsters Gift Cards with some extra modification/app/design/frontend/default/default/layout/pay.xml -------------------------------------------------------------------------------- /Devsters Gift Cards with some extra modification/app/design/frontend/default/default/template/devsters/pay/form/pay.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Devsters Gift Cards with some extra modification/app/design/frontend/default/default/template/devsters/pay/form/pay.phtml -------------------------------------------------------------------------------- /Devsters Gift Cards with some extra modification/app/etc/modules/Devsters_Gift.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Devsters Gift Cards with some extra modification/app/etc/modules/Devsters_Gift.xml -------------------------------------------------------------------------------- /Devsters Gift Cards with some extra modification/app/etc/modules/Devsters_Pay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Devsters Gift Cards with some extra modification/app/etc/modules/Devsters_Pay.xml -------------------------------------------------------------------------------- /Google Shopping Api V2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/README.md -------------------------------------------------------------------------------- /Google Shopping Api V2/Weboffice_GoogleShoppingApi-0.0.9.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/Weboffice_GoogleShoppingApi-0.0.9.tgz -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Block/Adminhtml/Captcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Block/Adminhtml/Captcha.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Block/Adminhtml/Items.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Block/Adminhtml/Items.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Block/Adminhtml/Items/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Block/Adminhtml/Items/Item.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Block/Adminhtml/Items/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Block/Adminhtml/Items/Product.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Block/Adminhtml/Items/Renderer/Id.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Block/Adminhtml/Items/Renderer/Id.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Block/Adminhtml/Store/Switcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Block/Adminhtml/Store/Switcher.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Block/Adminhtml/Types.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Block/Adminhtml/Types.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Block/Adminhtml/Types/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Block/Adminhtml/Types/Edit.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Block/Adminhtml/Types/Edit/Attributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Block/Adminhtml/Types/Edit/Attributes.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Block/Adminhtml/Types/Edit/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Block/Adminhtml/Types/Edit/Form.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Block/Adminhtml/Types/Edit/Select.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Block/Adminhtml/Types/Edit/Select.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Block/Adminhtml/Types/Grid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Block/Adminhtml/Types/Grid.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Block/Adminhtml/Types/Renderer/Country.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Block/Adminhtml/Types/Renderer/Country.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Helper/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Helper/Category.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Helper/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Helper/Data.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Helper/Price.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Helper/Price.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Helper/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Helper/Product.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Attribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Attribute.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Attribute/Availability.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Attribute/Availability.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Attribute/Condition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Attribute/Condition.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Attribute/Content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Attribute/Content.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Attribute/ContentLanguage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Attribute/ContentLanguage.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Attribute/Default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Attribute/Default.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Attribute/Destinations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Attribute/Destinations.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Attribute/GoogleProductCategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Attribute/GoogleProductCategory.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Attribute/Id.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Attribute/Id.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Attribute/ImageLink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Attribute/ImageLink.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Attribute/Link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Attribute/Link.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Attribute/Price.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Attribute/Price.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Attribute/ProductType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Attribute/ProductType.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Attribute/ProductUom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Attribute/ProductUom.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Attribute/Quantity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Attribute/Quantity.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Attribute/SalePriceEffectiveDate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Attribute/SalePriceEffectiveDate.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Attribute/ShippingWeight.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Attribute/ShippingWeight.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Attribute/Size.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Attribute/Size.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Attribute/Source/GoogleShoppingCategories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Attribute/Source/GoogleShoppingCategories.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Attribute/TargetCountry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Attribute/TargetCountry.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Attribute/Tax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Attribute/Tax.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Attribute/Title.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Attribute/Title.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Config.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Flag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Flag.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/GoogleShopping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/GoogleShopping.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Item.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/MassOperations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/MassOperations.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Mysql4/Attribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Mysql4/Attribute.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Mysql4/Attribute/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Mysql4/Attribute/Collection.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Mysql4/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Mysql4/Item.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Mysql4/Item/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Mysql4/Item/Collection.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Mysql4/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Mysql4/Type.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Mysql4/Type/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Mysql4/Type/Collection.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Observer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Observer.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Resource/Attribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Resource/Attribute.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Resource/Attribute/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Resource/Attribute/Collection.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Resource/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Resource/Item.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Resource/Item/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Resource/Item/Collection.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Resource/Taxonomy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Resource/Taxonomy.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Resource/Taxonomy/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Resource/Taxonomy/Collection.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Resource/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Resource/Type.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Resource/Type/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Resource/Type/Collection.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Service.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Service/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Service/Item.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Source/Accounttype.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Source/Accounttype.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Source/Authtype.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Source/Authtype.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Source/Country.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Source/Country.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Source/Destinationstates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Source/Destinationstates.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Source/Statuses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Source/Statuses.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Taxonomy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Taxonomy.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/Model/Type.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/controllers/Adminhtml/GoogleShoppingApi/ItemsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/controllers/Adminhtml/GoogleShoppingApi/ItemsController.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/controllers/Adminhtml/GoogleShoppingApi/OauthController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/controllers/Adminhtml/GoogleShoppingApi/OauthController.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/controllers/Adminhtml/GoogleShoppingApi/TypesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/controllers/Adminhtml/GoogleShoppingApi/TypesController.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/data/googleshoppingapi_setup/data-install-0.0.1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/data/googleshoppingapi_setup/data-install-0.0.1.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/data/googleshoppingapi_setup/data-upgrade-0.0.8-0.0.9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/data/googleshoppingapi_setup/data-upgrade-0.0.8-0.0.9.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/data/googleshoppingapi_setup/taxonomies/cs_CZ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/data/googleshoppingapi_setup/taxonomies/cs_CZ.txt -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/data/googleshoppingapi_setup/taxonomies/da_DK.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/data/googleshoppingapi_setup/taxonomies/da_DK.txt -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/data/googleshoppingapi_setup/taxonomies/de_DE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/data/googleshoppingapi_setup/taxonomies/de_DE.txt -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/data/googleshoppingapi_setup/taxonomies/en_AU.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/data/googleshoppingapi_setup/taxonomies/en_AU.txt -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/data/googleshoppingapi_setup/taxonomies/en_GB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/data/googleshoppingapi_setup/taxonomies/en_GB.txt -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/data/googleshoppingapi_setup/taxonomies/en_US.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/data/googleshoppingapi_setup/taxonomies/en_US.txt -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/data/googleshoppingapi_setup/taxonomies/es_ES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/data/googleshoppingapi_setup/taxonomies/es_ES.txt -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/data/googleshoppingapi_setup/taxonomies/fr_FR.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/data/googleshoppingapi_setup/taxonomies/fr_FR.txt -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/data/googleshoppingapi_setup/taxonomies/ja_JP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/data/googleshoppingapi_setup/taxonomies/ja_JP.txt -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/data/googleshoppingapi_setup/taxonomies/nl_NL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/data/googleshoppingapi_setup/taxonomies/nl_NL.txt -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/data/googleshoppingapi_setup/taxonomies/no_NO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/data/googleshoppingapi_setup/taxonomies/no_NO.txt -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/data/googleshoppingapi_setup/taxonomies/pl_PL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/data/googleshoppingapi_setup/taxonomies/pl_PL.txt -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/etc/adminhtml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/etc/adminhtml.xml -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/etc/config.xml -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/etc/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/etc/system.xml -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/sql/googleshoppingapi_setup/data-install-0.0.1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/sql/googleshoppingapi_setup/data-install-0.0.1.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/sql/googleshoppingapi_setup/install-0.0.1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/sql/googleshoppingapi_setup/install-0.0.1.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/sql/googleshoppingapi_setup/mysql4-data-install-0.0.1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/sql/googleshoppingapi_setup/mysql4-data-install-0.0.1.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/sql/googleshoppingapi_setup/upgrade-0.0.4-0.0.5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/sql/googleshoppingapi_setup/upgrade-0.0.4-0.0.5.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/sql/googleshoppingapi_setup/upgrade-0.0.5-0.0.6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/code/community/Weboffice/GoogleShoppingApi/sql/googleshoppingapi_setup/upgrade-0.0.5-0.0.6.php -------------------------------------------------------------------------------- /Google Shopping Api V2/app/design/adminhtml/base/default/template/googleshoppingapi/captcha.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/design/adminhtml/base/default/template/googleshoppingapi/captcha.phtml -------------------------------------------------------------------------------- /Google Shopping Api V2/app/design/adminhtml/base/default/template/googleshoppingapi/items.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/design/adminhtml/base/default/template/googleshoppingapi/items.phtml -------------------------------------------------------------------------------- /Google Shopping Api V2/app/design/adminhtml/base/default/template/googleshoppingapi/types/edit.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/design/adminhtml/base/default/template/googleshoppingapi/types/edit.phtml -------------------------------------------------------------------------------- /Google Shopping Api V2/app/design/adminhtml/base/default/template/googleshoppingapi/types/edit/attributes.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/design/adminhtml/base/default/template/googleshoppingapi/types/edit/attributes.phtml -------------------------------------------------------------------------------- /Google Shopping Api V2/app/design/adminhtml/base/default/template/googleshoppingapi/types/edit/select.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/design/adminhtml/base/default/template/googleshoppingapi/types/edit/select.phtml -------------------------------------------------------------------------------- /Google Shopping Api V2/app/design/adminhtml/default/default/layout/weboffice/googleshoppingapi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/design/adminhtml/default/default/layout/weboffice/googleshoppingapi.xml -------------------------------------------------------------------------------- /Google Shopping Api V2/app/design/adminhtml/default/default/template/googleshoppingapi/autocomplete.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/design/adminhtml/default/default/template/googleshoppingapi/autocomplete.phtml -------------------------------------------------------------------------------- /Google Shopping Api V2/app/design/adminhtml/default/default/template/googleshoppingapi/captcha.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/design/adminhtml/default/default/template/googleshoppingapi/captcha.phtml -------------------------------------------------------------------------------- /Google Shopping Api V2/app/design/adminhtml/default/default/template/googleshoppingapi/items.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/design/adminhtml/default/default/template/googleshoppingapi/items.phtml -------------------------------------------------------------------------------- /Google Shopping Api V2/app/design/adminhtml/default/default/template/googleshoppingapi/types/edit.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/design/adminhtml/default/default/template/googleshoppingapi/types/edit.phtml -------------------------------------------------------------------------------- /Google Shopping Api V2/app/design/adminhtml/default/default/template/googleshoppingapi/types/edit/attributes.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/design/adminhtml/default/default/template/googleshoppingapi/types/edit/attributes.phtml -------------------------------------------------------------------------------- /Google Shopping Api V2/app/design/adminhtml/default/default/template/googleshoppingapi/types/edit/select.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/design/adminhtml/default/default/template/googleshoppingapi/types/edit/select.phtml -------------------------------------------------------------------------------- /Google Shopping Api V2/app/etc/modules/Weboffice_GoogleShoppingApi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/app/etc/modules/Weboffice_GoogleShoppingApi.xml -------------------------------------------------------------------------------- /Google Shopping Api V2/js/weboffice/adminhtml/googleshopping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/js/weboffice/adminhtml/googleshopping.js -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Auth/Abstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Auth/Abstract.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Auth/AppIdentity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Auth/AppIdentity.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Auth/AssertionCredentials.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Auth/AssertionCredentials.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Auth/ComputeEngine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Auth/ComputeEngine.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Auth/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Auth/Exception.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Auth/LoginTicket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Auth/LoginTicket.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Auth/OAuth2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Auth/OAuth2.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Auth/Simple.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Auth/Simple.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Cache/Abstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Cache/Abstract.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Cache/Apc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Cache/Apc.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Cache/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Cache/Exception.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Cache/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Cache/File.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Cache/Memcache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Cache/Memcache.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Cache/Null.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Cache/Null.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Client.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Collection.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Config.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Exception.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Http/Batch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Http/Batch.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Http/CacheParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Http/CacheParser.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Http/MediaFileUpload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Http/MediaFileUpload.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Http/REST.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Http/REST.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Http/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Http/Request.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/IO/Abstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/IO/Abstract.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/IO/Curl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/IO/Curl.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/IO/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/IO/Exception.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/IO/Stream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/IO/Stream.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/IO/cacerts.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/IO/cacerts.pem -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Logger/Abstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Logger/Abstract.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Logger/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Logger/Exception.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Logger/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Logger/File.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Logger/Null.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Logger/Null.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Logger/Psr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Logger/Psr.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Model.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/AdExchangeBuyer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/AdExchangeBuyer.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/AdExchangeSeller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/AdExchangeSeller.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/AdSense.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/AdSense.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/AdSenseHost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/AdSenseHost.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/Admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/Admin.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/Analytics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/Analytics.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/AndroidPublisher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/AndroidPublisher.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/AppState.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/AppState.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/Appsactivity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/Appsactivity.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/Audit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/Audit.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/Autoscaler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/Autoscaler.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/Bigquery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/Bigquery.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/Blogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/Blogger.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/Books.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/Books.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/Calendar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/Calendar.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/CivicInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/CivicInfo.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/CloudMonitoring.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/CloudMonitoring.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/Cloudlatencytest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/Cloudlatencytest.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/Compute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/Compute.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/Container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/Container.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/Coordinate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/Coordinate.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/Customsearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/Customsearch.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/Dataflow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/Dataflow.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/Datastore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/Datastore.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/Deploymentmanager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/Deploymentmanager.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/Dfareporting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/Dfareporting.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/Directory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/Directory.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/Dns.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/Dns.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/DoubleClickBidManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/DoubleClickBidManager.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/Doubleclicksearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/Doubleclicksearch.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/Drive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/Drive.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/Exception.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/Fitness.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/Fitness.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/Freebase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/Freebase.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/Fusiontables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/Fusiontables.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/Games.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/Games.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/GamesConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/GamesConfiguration.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/GamesManagement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/GamesManagement.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/Genomics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/Genomics.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/Gmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/Gmail.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/GroupsMigration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/GroupsMigration.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/Groupssettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/Groupssettings.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/IdentityToolkit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/IdentityToolkit.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/Licensing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/Licensing.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/Manager.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/MapsEngine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/MapsEngine.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/Mirror.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/Mirror.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/Oauth2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/Oauth2.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/Pagespeedonline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/Pagespeedonline.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/Plus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/Plus.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/PlusDomains.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/PlusDomains.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/Prediction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/Prediction.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/Pubsub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/Pubsub.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/QPXExpress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/QPXExpress.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/Replicapool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/Replicapool.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/Replicapoolupdater.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/Replicapoolupdater.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/Reports.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/Reports.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/Reseller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/Reseller.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/Resource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/Resource.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/Resourceviews.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/Resourceviews.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/Account.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/Account.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountAdwordsLink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountAdwordsLink.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountShipping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountShipping.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountShippingCarrierRate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountShippingCarrierRate.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountShippingCondition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountShippingCondition.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountShippingLocationGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountShippingLocationGroup.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountShippingPostalCodeRange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountShippingPostalCodeRange.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountShippingRateTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountShippingRateTable.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountShippingRateTableCell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountShippingRateTableCell.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountShippingShippingService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountShippingShippingService.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountShippingShippingServiceCalculationMethod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountShippingShippingServiceCalculationMethod.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountShippingShippingServiceCostRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountShippingShippingServiceCostRule.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountStatus.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountStatusDataQualityIssue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountStatusDataQualityIssue.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountStatusExampleItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountStatusExampleItem.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountTax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountTax.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountTaxTaxRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountTaxTaxRule.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountUser.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/Accounts/Resource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/Accounts/Resource.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountsCustomBatchRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountsCustomBatchRequest.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountsCustomBatchRequestEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountsCustomBatchRequestEntry.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountsCustomBatchResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountsCustomBatchResponse.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountsCustomBatchResponseEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountsCustomBatchResponseEntry.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountsListResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountsListResponse.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/Accountshipping/Resource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/Accountshipping/Resource.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountshippingCustomBatchRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountshippingCustomBatchRequest.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountshippingCustomBatchRequestEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountshippingCustomBatchRequestEntry.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountshippingCustomBatchResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountshippingCustomBatchResponse.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountshippingCustomBatchResponseEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountshippingCustomBatchResponseEntry.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountshippingListResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountshippingListResponse.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/Accountstatuses/Resource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/Accountstatuses/Resource.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountstatusesCustomBatchRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountstatusesCustomBatchRequest.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountstatusesCustomBatchRequestEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountstatusesCustomBatchRequestEntry.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountstatusesCustomBatchResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountstatusesCustomBatchResponse.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountstatusesCustomBatchResponseEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountstatusesCustomBatchResponseEntry.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountstatusesListResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccountstatusesListResponse.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/Accounttax/Resource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/Accounttax/Resource.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccounttaxCustomBatchRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccounttaxCustomBatchRequest.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccounttaxCustomBatchRequestEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccounttaxCustomBatchRequestEntry.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccounttaxCustomBatchResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccounttaxCustomBatchResponse.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccounttaxCustomBatchResponseEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccounttaxCustomBatchResponseEntry.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccounttaxListResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/AccounttaxListResponse.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/Datafeed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/Datafeed.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/DatafeedFetchSchedule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/DatafeedFetchSchedule.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/DatafeedFormat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/DatafeedFormat.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/DatafeedStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/DatafeedStatus.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/DatafeedStatusError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/DatafeedStatusError.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/DatafeedStatusExample.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/DatafeedStatusExample.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/Datafeeds/Resource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/Datafeeds/Resource.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/DatafeedsCustomBatchRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/DatafeedsCustomBatchRequest.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/DatafeedsCustomBatchRequestEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/DatafeedsCustomBatchRequestEntry.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/DatafeedsCustomBatchResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/DatafeedsCustomBatchResponse.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/DatafeedsCustomBatchResponseEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/DatafeedsCustomBatchResponseEntry.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/DatafeedsListResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/DatafeedsListResponse.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/Datafeedstatuses/Resource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/Datafeedstatuses/Resource.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/DatafeedstatusesCustomBatchRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/DatafeedstatusesCustomBatchRequest.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/DatafeedstatusesCustomBatchRequestEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/DatafeedstatusesCustomBatchRequestEntry.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/DatafeedstatusesCustomBatchResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/DatafeedstatusesCustomBatchResponse.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/DatafeedstatusesCustomBatchResponseEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/DatafeedstatusesCustomBatchResponseEntry.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/DatafeedstatusesListResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/DatafeedstatusesListResponse.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/Error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/Error.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/Errors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/Errors.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/Inventory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/Inventory.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/Inventory/Resource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/Inventory/Resource.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/InventoryCustomBatchRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/InventoryCustomBatchRequest.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/InventoryCustomBatchRequestEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/InventoryCustomBatchRequestEntry.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/InventoryCustomBatchResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/InventoryCustomBatchResponse.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/InventoryCustomBatchResponseEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/InventoryCustomBatchResponseEntry.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/InventorySetRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/InventorySetRequest.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/InventorySetResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/InventorySetResponse.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/LoyaltyPoints.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/LoyaltyPoints.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/Price.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/Price.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/Product.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/ProductCustomAttribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/ProductCustomAttribute.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/ProductCustomGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/ProductCustomGroup.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/ProductDestination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/ProductDestination.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/ProductInstallment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/ProductInstallment.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/ProductShipping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/ProductShipping.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/ProductShippingDimension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/ProductShippingDimension.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/ProductShippingWeight.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/ProductShippingWeight.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/ProductStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/ProductStatus.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/ProductStatusDataQualityIssue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/ProductStatusDataQualityIssue.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/ProductStatusDestinationStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/ProductStatusDestinationStatus.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/ProductTax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/ProductTax.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/ProductUnitPricingBaseMeasure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/ProductUnitPricingBaseMeasure.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/ProductUnitPricingMeasure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/ProductUnitPricingMeasure.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/Products/Resource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/Products/Resource.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/ProductsCustomBatchRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/ProductsCustomBatchRequest.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/ProductsCustomBatchRequestEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/ProductsCustomBatchRequestEntry.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/ProductsCustomBatchResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/ProductsCustomBatchResponse.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/ProductsCustomBatchResponseEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/ProductsCustomBatchResponseEntry.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/ProductsListResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/ProductsListResponse.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/Productstatuses/Resource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/Productstatuses/Resource.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/ProductstatusesCustomBatchRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/ProductstatusesCustomBatchRequest.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/ProductstatusesCustomBatchRequestEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/ProductstatusesCustomBatchRequestEntry.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/ProductstatusesCustomBatchResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/ProductstatusesCustomBatchResponse.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/ProductstatusesCustomBatchResponseEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/ProductstatusesCustomBatchResponseEntry.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/ProductstatusesListResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/ProductstatusesListResponse.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/ShoppingContent/Weight.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/ShoppingContent/Weight.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/SiteVerification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/SiteVerification.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/Spectrum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/Spectrum.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/Storage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/Storage.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/TagManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/TagManager.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/Taskqueue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/Taskqueue.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/Tasks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/Tasks.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/Translate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/Translate.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/Urlshortener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/Urlshortener.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/Webfonts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/Webfonts.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/Webmasters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/Webmasters.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/YouTube.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/YouTube.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Service/YouTubeAnalytics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Service/YouTubeAnalytics.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Signer/Abstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Signer/Abstract.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Signer/P12.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Signer/P12.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Task/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Task/Exception.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Task/Retryable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Task/Retryable.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Task/Runner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Task/Runner.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Utils.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Utils/URITemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Utils/URITemplate.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Verifier/Abstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Verifier/Abstract.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/Verifier/Pem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/Verifier/Pem.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Google/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Google/autoload.php -------------------------------------------------------------------------------- /Google Shopping Api V2/lib/Varien/Data/Form/Element/Googleshoppingautocomplete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/lib/Varien/Data/Form/Element/Googleshoppingautocomplete.php -------------------------------------------------------------------------------- /Google Shopping Api V2/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/package.xml -------------------------------------------------------------------------------- /Google Shopping Api V2/var/weboffice/googleshoppingapi/data/taxonomy.cs_CZ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/var/weboffice/googleshoppingapi/data/taxonomy.cs_CZ.txt -------------------------------------------------------------------------------- /Google Shopping Api V2/var/weboffice/googleshoppingapi/data/taxonomy.da_DK.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/var/weboffice/googleshoppingapi/data/taxonomy.da_DK.txt -------------------------------------------------------------------------------- /Google Shopping Api V2/var/weboffice/googleshoppingapi/data/taxonomy.de_DE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/var/weboffice/googleshoppingapi/data/taxonomy.de_DE.txt -------------------------------------------------------------------------------- /Google Shopping Api V2/var/weboffice/googleshoppingapi/data/taxonomy.en_AU.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/var/weboffice/googleshoppingapi/data/taxonomy.en_AU.txt -------------------------------------------------------------------------------- /Google Shopping Api V2/var/weboffice/googleshoppingapi/data/taxonomy.en_GB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/var/weboffice/googleshoppingapi/data/taxonomy.en_GB.txt -------------------------------------------------------------------------------- /Google Shopping Api V2/var/weboffice/googleshoppingapi/data/taxonomy.en_US.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/var/weboffice/googleshoppingapi/data/taxonomy.en_US.txt -------------------------------------------------------------------------------- /Google Shopping Api V2/var/weboffice/googleshoppingapi/data/taxonomy.es_ES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/var/weboffice/googleshoppingapi/data/taxonomy.es_ES.txt -------------------------------------------------------------------------------- /Google Shopping Api V2/var/weboffice/googleshoppingapi/data/taxonomy.fr_FR.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/var/weboffice/googleshoppingapi/data/taxonomy.fr_FR.txt -------------------------------------------------------------------------------- /Google Shopping Api V2/var/weboffice/googleshoppingapi/data/taxonomy.ja_JP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/var/weboffice/googleshoppingapi/data/taxonomy.ja_JP.txt -------------------------------------------------------------------------------- /Google Shopping Api V2/var/weboffice/googleshoppingapi/data/taxonomy.nl_NL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/var/weboffice/googleshoppingapi/data/taxonomy.nl_NL.txt -------------------------------------------------------------------------------- /Google Shopping Api V2/var/weboffice/googleshoppingapi/data/taxonomy.no_NO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/var/weboffice/googleshoppingapi/data/taxonomy.no_NO.txt -------------------------------------------------------------------------------- /Google Shopping Api V2/var/weboffice/googleshoppingapi/data/taxonomy.pl_PL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google Shopping Api V2/var/weboffice/googleshoppingapi/data/taxonomy.pl_PL.txt -------------------------------------------------------------------------------- /Google feed and facebook feed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google feed and facebook feed/README.md -------------------------------------------------------------------------------- /Google feed and facebook feed/admin_setting-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google feed and facebook feed/admin_setting-2.png -------------------------------------------------------------------------------- /Google feed and facebook feed/admin_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google feed and facebook feed/admin_settings.png -------------------------------------------------------------------------------- /Google feed and facebook feed/app/code/community/Mehulchaudhari/FeedsGenerator/Block/Button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google feed and facebook feed/app/code/community/Mehulchaudhari/FeedsGenerator/Block/Button.php -------------------------------------------------------------------------------- /Google feed and facebook feed/app/code/community/Mehulchaudhari/FeedsGenerator/Block/FieldMapping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google feed and facebook feed/app/code/community/Mehulchaudhari/FeedsGenerator/Block/FieldMapping.php -------------------------------------------------------------------------------- /Google feed and facebook feed/app/code/community/Mehulchaudhari/FeedsGenerator/Block/Googleproducts/FieldMapping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google feed and facebook feed/app/code/community/Mehulchaudhari/FeedsGenerator/Block/Googleproducts/FieldMapping.php -------------------------------------------------------------------------------- /Google feed and facebook feed/app/code/community/Mehulchaudhari/FeedsGenerator/Block/Googleproducts/LinkFieldMapping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google feed and facebook feed/app/code/community/Mehulchaudhari/FeedsGenerator/Block/Googleproducts/LinkFieldMapping.php -------------------------------------------------------------------------------- /Google feed and facebook feed/app/code/community/Mehulchaudhari/FeedsGenerator/Helper/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google feed and facebook feed/app/code/community/Mehulchaudhari/FeedsGenerator/Helper/Data.php -------------------------------------------------------------------------------- /Google feed and facebook feed/app/code/community/Mehulchaudhari/FeedsGenerator/Model/Child.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google feed and facebook feed/app/code/community/Mehulchaudhari/FeedsGenerator/Model/Child.php -------------------------------------------------------------------------------- /Google feed and facebook feed/app/code/community/Mehulchaudhari/FeedsGenerator/Model/Config/Condition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google feed and facebook feed/app/code/community/Mehulchaudhari/FeedsGenerator/Model/Config/Condition.php -------------------------------------------------------------------------------- /Google feed and facebook feed/app/code/community/Mehulchaudhari/FeedsGenerator/Model/Config/ProductAttributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google feed and facebook feed/app/code/community/Mehulchaudhari/FeedsGenerator/Model/Config/ProductAttributes.php -------------------------------------------------------------------------------- /Google feed and facebook feed/app/code/community/Mehulchaudhari/FeedsGenerator/Model/FeedCronBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google feed and facebook feed/app/code/community/Mehulchaudhari/FeedsGenerator/Model/FeedCronBase.php -------------------------------------------------------------------------------- /Google feed and facebook feed/app/code/community/Mehulchaudhari/FeedsGenerator/Model/FeedCronBase/Csv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google feed and facebook feed/app/code/community/Mehulchaudhari/FeedsGenerator/Model/FeedCronBase/Csv.php -------------------------------------------------------------------------------- /Google feed and facebook feed/app/code/community/Mehulchaudhari/FeedsGenerator/Model/FeedCronBase/Xml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google feed and facebook feed/app/code/community/Mehulchaudhari/FeedsGenerator/Model/FeedCronBase/Xml.php -------------------------------------------------------------------------------- /Google feed and facebook feed/app/code/community/Mehulchaudhari/FeedsGenerator/Model/Googleproducts/Child.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google feed and facebook feed/app/code/community/Mehulchaudhari/FeedsGenerator/Model/Googleproducts/Child.php -------------------------------------------------------------------------------- /Google feed and facebook feed/app/code/community/Mehulchaudhari/FeedsGenerator/Model/Googleproducts/Config/FeedAttributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google feed and facebook feed/app/code/community/Mehulchaudhari/FeedsGenerator/Model/Googleproducts/Config/FeedAttributes.php -------------------------------------------------------------------------------- /Google feed and facebook feed/app/code/community/Mehulchaudhari/FeedsGenerator/Model/Googleproducts/Config/LinkAttributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google feed and facebook feed/app/code/community/Mehulchaudhari/FeedsGenerator/Model/Googleproducts/Config/LinkAttributes.php -------------------------------------------------------------------------------- /Google feed and facebook feed/app/code/community/Mehulchaudhari/FeedsGenerator/Model/Googleproducts/Cron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google feed and facebook feed/app/code/community/Mehulchaudhari/FeedsGenerator/Model/Googleproducts/Cron.php -------------------------------------------------------------------------------- /Google feed and facebook feed/app/code/community/Mehulchaudhari/FeedsGenerator/Model/Googleproducts/Source/Taxonomy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google feed and facebook feed/app/code/community/Mehulchaudhari/FeedsGenerator/Model/Googleproducts/Source/Taxonomy.php -------------------------------------------------------------------------------- /Google feed and facebook feed/app/code/community/Mehulchaudhari/FeedsGenerator/Model/Googleproducts/Taxonomy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google feed and facebook feed/app/code/community/Mehulchaudhari/FeedsGenerator/Model/Googleproducts/Taxonomy.php -------------------------------------------------------------------------------- /Google feed and facebook feed/app/code/community/Mehulchaudhari/FeedsGenerator/Model/child_run.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google feed and facebook feed/app/code/community/Mehulchaudhari/FeedsGenerator/Model/child_run.php -------------------------------------------------------------------------------- /Google feed and facebook feed/app/code/community/Mehulchaudhari/FeedsGenerator/controllers/Adminhtml/FeedsGeneratorController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google feed and facebook feed/app/code/community/Mehulchaudhari/FeedsGenerator/controllers/Adminhtml/FeedsGeneratorController.php -------------------------------------------------------------------------------- /Google feed and facebook feed/app/code/community/Mehulchaudhari/FeedsGenerator/etc/adminhtml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google feed and facebook feed/app/code/community/Mehulchaudhari/FeedsGenerator/etc/adminhtml.xml -------------------------------------------------------------------------------- /Google feed and facebook feed/app/code/community/Mehulchaudhari/FeedsGenerator/etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google feed and facebook feed/app/code/community/Mehulchaudhari/FeedsGenerator/etc/config.xml -------------------------------------------------------------------------------- /Google feed and facebook feed/app/code/community/Mehulchaudhari/FeedsGenerator/etc/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google feed and facebook feed/app/code/community/Mehulchaudhari/FeedsGenerator/etc/system.xml -------------------------------------------------------------------------------- /Google feed and facebook feed/app/code/community/Mehulchaudhari/FeedsGenerator/sql/feedsgenerator_setup/mysql4-install-1.0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google feed and facebook feed/app/code/community/Mehulchaudhari/FeedsGenerator/sql/feedsgenerator_setup/mysql4-install-1.0.php -------------------------------------------------------------------------------- /Google feed and facebook feed/app/code/community/Mehulchaudhari/FeedsGenerator/sql/feedsgenerator_setup/mysql4-upgrade-1.0-1.2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google feed and facebook feed/app/code/community/Mehulchaudhari/FeedsGenerator/sql/feedsgenerator_setup/mysql4-upgrade-1.0-1.2.php -------------------------------------------------------------------------------- /Google feed and facebook feed/app/etc/modules/Mehulchaudhari_FeedsGenerator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google feed and facebook feed/app/etc/modules/Mehulchaudhari_FeedsGenerator.xml -------------------------------------------------------------------------------- /Google feed and facebook feed/link.txt: -------------------------------------------------------------------------------- 1 | https://support.google.com/merchants/answer/188494?hl=en 2 | 3 | -------------------------------------------------------------------------------- /Google feed and facebook feed/sample files/example_feed_xml_atom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google feed and facebook feed/sample files/example_feed_xml_atom.xml -------------------------------------------------------------------------------- /Google feed and facebook feed/sample files/googleproducts-feeds/english-products.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google feed and facebook feed/sample files/googleproducts-feeds/english-products.xml -------------------------------------------------------------------------------- /Google feed and facebook feed/sample files/googleproducts-feeds/french-products.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google feed and facebook feed/sample files/googleproducts-feeds/french-products.xml -------------------------------------------------------------------------------- /Google feed and facebook feed/sample files/googleproducts-feeds/german-products.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google feed and facebook feed/sample files/googleproducts-feeds/german-products.xml -------------------------------------------------------------------------------- /Google feed and facebook feed/var/taxonomy/taxonomy.cs-CZ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google feed and facebook feed/var/taxonomy/taxonomy.cs-CZ.txt -------------------------------------------------------------------------------- /Google feed and facebook feed/var/taxonomy/taxonomy.da-DK.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google feed and facebook feed/var/taxonomy/taxonomy.da-DK.txt -------------------------------------------------------------------------------- /Google feed and facebook feed/var/taxonomy/taxonomy.de-DE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google feed and facebook feed/var/taxonomy/taxonomy.de-DE.txt -------------------------------------------------------------------------------- /Google feed and facebook feed/var/taxonomy/taxonomy.en-AU.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google feed and facebook feed/var/taxonomy/taxonomy.en-AU.txt -------------------------------------------------------------------------------- /Google feed and facebook feed/var/taxonomy/taxonomy.en-GB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google feed and facebook feed/var/taxonomy/taxonomy.en-GB.txt -------------------------------------------------------------------------------- /Google feed and facebook feed/var/taxonomy/taxonomy.en-US.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google feed and facebook feed/var/taxonomy/taxonomy.en-US.txt -------------------------------------------------------------------------------- /Google feed and facebook feed/var/taxonomy/taxonomy.es-ES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google feed and facebook feed/var/taxonomy/taxonomy.es-ES.txt -------------------------------------------------------------------------------- /Google feed and facebook feed/var/taxonomy/taxonomy.fr-FR.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google feed and facebook feed/var/taxonomy/taxonomy.fr-FR.txt -------------------------------------------------------------------------------- /Google feed and facebook feed/var/taxonomy/taxonomy.ja-JP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google feed and facebook feed/var/taxonomy/taxonomy.ja-JP.txt -------------------------------------------------------------------------------- /Google feed and facebook feed/var/taxonomy/taxonomy.nl-NL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google feed and facebook feed/var/taxonomy/taxonomy.nl-NL.txt -------------------------------------------------------------------------------- /Google feed and facebook feed/var/taxonomy/taxonomy.no-NO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google feed and facebook feed/var/taxonomy/taxonomy.no-NO.txt -------------------------------------------------------------------------------- /Google feed and facebook feed/var/taxonomy/taxonomy.pl-PL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Google feed and facebook feed/var/taxonomy/taxonomy.pl-PL.txt -------------------------------------------------------------------------------- /Guest Checkout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Guest Checkout/README.md -------------------------------------------------------------------------------- /Guest Checkout/app/code/local/MehulChaudhari/GuestCheckout/Helper/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Guest Checkout/app/code/local/MehulChaudhari/GuestCheckout/Helper/Data.php -------------------------------------------------------------------------------- /Guest Checkout/app/code/local/MehulChaudhari/GuestCheckout/Model/Observer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Guest Checkout/app/code/local/MehulChaudhari/GuestCheckout/Model/Observer.php -------------------------------------------------------------------------------- /Guest Checkout/app/code/local/MehulChaudhari/GuestCheckout/etc/adminhtml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Guest Checkout/app/code/local/MehulChaudhari/GuestCheckout/etc/adminhtml.xml -------------------------------------------------------------------------------- /Guest Checkout/app/code/local/MehulChaudhari/GuestCheckout/etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Guest Checkout/app/code/local/MehulChaudhari/GuestCheckout/etc/config.xml -------------------------------------------------------------------------------- /Guest Checkout/app/code/local/MehulChaudhari/GuestCheckout/etc/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Guest Checkout/app/code/local/MehulChaudhari/GuestCheckout/etc/system.xml -------------------------------------------------------------------------------- /Guest Checkout/app/etc/modules/MehulChaudhari_GuestCheckout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Guest Checkout/app/etc/modules/MehulChaudhari_GuestCheckout.xml -------------------------------------------------------------------------------- /Idealo Magento csvexport/Idealo_Magento_Exportmodul_Install_DE.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Idealo Magento csvexport/Idealo_Magento_Exportmodul_Install_DE.pdf -------------------------------------------------------------------------------- /Idealo Magento csvexport/Idealo_Magento_Exportmodul_Install_UK.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Idealo Magento csvexport/Idealo_Magento_Exportmodul_Install_UK.pdf -------------------------------------------------------------------------------- /Idealo Magento csvexport/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Idealo Magento csvexport/README.md -------------------------------------------------------------------------------- /Idealo Magento csvexport/app/code/local/Idealo/Csvexport/Block/Adminhtml/Csvexportbackend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Idealo Magento csvexport/app/code/local/Idealo/Csvexport/Block/Adminhtml/Csvexportbackend.php -------------------------------------------------------------------------------- /Idealo Magento csvexport/app/code/local/Idealo/Csvexport/Helper/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Idealo Magento csvexport/app/code/local/Idealo/Csvexport/Helper/Data.php -------------------------------------------------------------------------------- /Idealo Magento csvexport/app/code/local/Idealo/Csvexport/Model/Observer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Idealo Magento csvexport/app/code/local/Idealo/Csvexport/Model/Observer.php -------------------------------------------------------------------------------- /Idealo Magento csvexport/app/code/local/Idealo/Csvexport/Model/Source/OptionCampaign.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Idealo Magento csvexport/app/code/local/Idealo/Csvexport/Model/Source/OptionCampaign.php -------------------------------------------------------------------------------- /Idealo Magento csvexport/app/code/local/Idealo/Csvexport/Model/Source/OptionCountries.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Idealo Magento csvexport/app/code/local/Idealo/Csvexport/Model/Source/OptionCountries.php -------------------------------------------------------------------------------- /Idealo Magento csvexport/app/code/local/Idealo/Csvexport/Model/Source/OptionFixProc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Idealo Magento csvexport/app/code/local/Idealo/Csvexport/Model/Source/OptionFixProc.php -------------------------------------------------------------------------------- /Idealo Magento csvexport/app/code/local/Idealo/Csvexport/Model/Source/OptionInclShipping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Idealo Magento csvexport/app/code/local/Idealo/Csvexport/Model/Source/OptionInclShipping.php -------------------------------------------------------------------------------- /Idealo Magento csvexport/app/code/local/Idealo/Csvexport/Model/Source/OptionShippingArt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Idealo Magento csvexport/app/code/local/Idealo/Csvexport/Model/Source/OptionShippingArt.php -------------------------------------------------------------------------------- /Idealo Magento csvexport/app/code/local/Idealo/Csvexport/Model/Source/OptionYesNo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Idealo Magento csvexport/app/code/local/Idealo/Csvexport/Model/Source/OptionYesNo.php -------------------------------------------------------------------------------- /Idealo Magento csvexport/app/code/local/Idealo/Csvexport/Model/Source/Store.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Idealo Magento csvexport/app/code/local/Idealo/Csvexport/Model/Source/Store.php -------------------------------------------------------------------------------- /Idealo Magento csvexport/app/code/local/Idealo/Csvexport/controllers/Adminhtml/CsvexportbackendController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Idealo Magento csvexport/app/code/local/Idealo/Csvexport/controllers/Adminhtml/CsvexportbackendController.php -------------------------------------------------------------------------------- /Idealo Magento csvexport/app/code/local/Idealo/Csvexport/definitions/definition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Idealo Magento csvexport/app/code/local/Idealo/Csvexport/definitions/definition.php -------------------------------------------------------------------------------- /Idealo Magento csvexport/app/code/local/Idealo/Csvexport/etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Idealo Magento csvexport/app/code/local/Idealo/Csvexport/etc/config.xml -------------------------------------------------------------------------------- /Idealo Magento csvexport/app/code/local/Idealo/Csvexport/etc/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Idealo Magento csvexport/app/code/local/Idealo/Csvexport/etc/system.xml -------------------------------------------------------------------------------- /Idealo Magento csvexport/app/code/local/Idealo/Csvexport/tools/CreateFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Idealo Magento csvexport/app/code/local/Idealo/Csvexport/tools/CreateFile.php -------------------------------------------------------------------------------- /Idealo Magento csvexport/app/code/local/Idealo/Csvexport/tools/Idealo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Idealo Magento csvexport/app/code/local/Idealo/Csvexport/tools/Idealo.php -------------------------------------------------------------------------------- /Idealo Magento csvexport/app/code/local/Idealo/Csvexport/tools/IdealoPayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Idealo Magento csvexport/app/code/local/Idealo/Csvexport/tools/IdealoPayment.php -------------------------------------------------------------------------------- /Idealo Magento csvexport/app/code/local/Idealo/Csvexport/tools/IdealoShipping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Idealo Magento csvexport/app/code/local/Idealo/Csvexport/tools/IdealoShipping.php -------------------------------------------------------------------------------- /Idealo Magento csvexport/app/code/local/Idealo/Csvexport/tools/IdealoTools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Idealo Magento csvexport/app/code/local/Idealo/Csvexport/tools/IdealoTools.php -------------------------------------------------------------------------------- /Idealo Magento csvexport/app/code/local/Idealo/Csvexport/tools/idealo_universal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Idealo Magento csvexport/app/code/local/Idealo/Csvexport/tools/idealo_universal.php -------------------------------------------------------------------------------- /Idealo Magento csvexport/app/design/adminhtml/default/default/layout/csvexport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Idealo Magento csvexport/app/design/adminhtml/default/default/layout/csvexport.xml -------------------------------------------------------------------------------- /Idealo Magento csvexport/app/design/adminhtml/default/default/template/csvexport/csvexportbackend.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Idealo Magento csvexport/app/design/adminhtml/default/default/template/csvexport/csvexportbackend.phtml -------------------------------------------------------------------------------- /Idealo Magento csvexport/app/etc/modules/Idealo_Csvexport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Idealo Magento csvexport/app/etc/modules/Idealo_Csvexport.xml -------------------------------------------------------------------------------- /Idealo Magento csvexport/app/locale/de_AT/Idealo_Csvexport.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Idealo Magento csvexport/app/locale/de_AT/Idealo_Csvexport.csv -------------------------------------------------------------------------------- /Idealo Magento csvexport/app/locale/de_DE/Idealo_Csvexport.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Idealo Magento csvexport/app/locale/de_DE/Idealo_Csvexport.csv -------------------------------------------------------------------------------- /Idealo Magento csvexport/app/locale/en_GB/Idealo_Csvexport.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Idealo Magento csvexport/app/locale/en_GB/Idealo_Csvexport.csv -------------------------------------------------------------------------------- /Idealo Magento csvexport/app/locale/it_IT/Idealo_Csvexport.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Idealo Magento csvexport/app/locale/it_IT/Idealo_Csvexport.csv -------------------------------------------------------------------------------- /Idealo Magento csvexport/export/Img/idealo-at.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Idealo Magento csvexport/export/Img/idealo-at.gif -------------------------------------------------------------------------------- /Idealo Magento csvexport/export/Img/idealo-de.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Idealo Magento csvexport/export/Img/idealo-de.gif -------------------------------------------------------------------------------- /Idealo Magento csvexport/export/Img/idealo-flug.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Idealo Magento csvexport/export/Img/idealo-flug.gif -------------------------------------------------------------------------------- /Idealo Magento csvexport/export/Img/idealo-fr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Idealo Magento csvexport/export/Img/idealo-fr.gif -------------------------------------------------------------------------------- /Idealo Magento csvexport/export/Img/idealo-gas.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Idealo Magento csvexport/export/Img/idealo-gas.gif -------------------------------------------------------------------------------- /Idealo Magento csvexport/export/Img/idealo-geld.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Idealo Magento csvexport/export/Img/idealo-geld.gif -------------------------------------------------------------------------------- /Idealo Magento csvexport/export/Img/idealo-hotel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Idealo Magento csvexport/export/Img/idealo-hotel.gif -------------------------------------------------------------------------------- /Idealo Magento csvexport/export/Img/idealo-it.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Idealo Magento csvexport/export/Img/idealo-it.gif -------------------------------------------------------------------------------- /Idealo Magento csvexport/export/Img/idealo-strom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Idealo Magento csvexport/export/Img/idealo-strom.gif -------------------------------------------------------------------------------- /Idealo Magento csvexport/export/Img/idealo-uk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Idealo Magento csvexport/export/Img/idealo-uk.gif -------------------------------------------------------------------------------- /Idealo Magento csvexport/export/Img/idealo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Idealo Magento csvexport/export/Img/idealo.gif -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/LICENSE -------------------------------------------------------------------------------- /Magento Configurable Product Option Order Fix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Configurable Product Option Order Fix/README.md -------------------------------------------------------------------------------- /Magento Configurable Product Option Order Fix/admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Configurable Product Option Order Fix/admin.png -------------------------------------------------------------------------------- /Magento Configurable Product Option Order Fix/app/code/local/MehulChaudhari/ConfigOptionSortFix/Helper/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Configurable Product Option Order Fix/app/code/local/MehulChaudhari/ConfigOptionSortFix/Helper/Data.php -------------------------------------------------------------------------------- /Magento Configurable Product Option Order Fix/app/code/local/MehulChaudhari/ConfigOptionSortFix/etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Configurable Product Option Order Fix/app/code/local/MehulChaudhari/ConfigOptionSortFix/etc/config.xml -------------------------------------------------------------------------------- /Magento Configurable Product Option Order Fix/app/etc/modules/MehulChaudhari_ConfigOptionSortFix.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Configurable Product Option Order Fix/app/etc/modules/MehulChaudhari_ConfigOptionSortFix.xml -------------------------------------------------------------------------------- /Magento Configurable Product Option Order Fix/frontend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Configurable Product Option Order Fix/frontend.png -------------------------------------------------------------------------------- /Magento Display Shipping estimation Block in Product view page/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Display Shipping estimation Block in Product view page/README.md -------------------------------------------------------------------------------- /Magento Display Shipping estimation Block in Product view page/Shipping Calculator On Product Page(Ajax) icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Display Shipping estimation Block in Product view page/Shipping Calculator On Product Page(Ajax) icon.png -------------------------------------------------------------------------------- /Magento Display Shipping estimation Block in Product view page/Webdevlopers_Product_Page_Shipping.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Display Shipping estimation Block in Product view page/Webdevlopers_Product_Page_Shipping.zip -------------------------------------------------------------------------------- /Magento Display Shipping estimation Block in Product view page/admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Display Shipping estimation Block in Product view page/admin.png -------------------------------------------------------------------------------- /Magento Display Shipping estimation Block in Product view page/app/code/community/WebDevlopers/ProductPageShipping/etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Display Shipping estimation Block in Product view page/app/code/community/WebDevlopers/ProductPageShipping/etc/config.xml -------------------------------------------------------------------------------- /Magento Display Shipping estimation Block in Product view page/app/code/community/WebDevlopers/ProductPageShipping/etc/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Display Shipping estimation Block in Product view page/app/code/community/WebDevlopers/ProductPageShipping/etc/system.xml -------------------------------------------------------------------------------- /Magento Display Shipping estimation Block in Product view page/app/design/frontend/default/default/layout/productpageshipping.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Display Shipping estimation Block in Product view page/app/design/frontend/default/default/layout/productpageshipping.xml -------------------------------------------------------------------------------- /Magento Display Shipping estimation Block in Product view page/app/etc/modules/WebDevlopers_ProductPageShipping.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Display Shipping estimation Block in Product view page/app/etc/modules/WebDevlopers_ProductPageShipping.xml -------------------------------------------------------------------------------- /Magento Display Shipping estimation Block in Product view page/app/locale/en_US/WebDevlopers_ProductPageShipping.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Display Shipping estimation Block in Product view page/app/locale/en_US/WebDevlopers_ProductPageShipping.csv -------------------------------------------------------------------------------- /Magento Display Shipping estimation Block in Product view page/product page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Display Shipping estimation Block in Product view page/product page.png -------------------------------------------------------------------------------- /Magento Display Shipping estimation Block in Product view page/shipping result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Display Shipping estimation Block in Product view page/shipping result.png -------------------------------------------------------------------------------- /Magento Display Shipping estimation Block in Product view page/skin/frontend/default/default/css/productpageshipping.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Display Shipping estimation Block in Product view page/skin/frontend/default/default/css/productpageshipping.css -------------------------------------------------------------------------------- /Magento Facebook Conversion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Facebook Conversion/README.md -------------------------------------------------------------------------------- /Magento Facebook Conversion/app/code/community/Mehulchaudhari/Facebookconversion/Block/Facebookconversion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Facebook Conversion/app/code/community/Mehulchaudhari/Facebookconversion/Block/Facebookconversion.php -------------------------------------------------------------------------------- /Magento Facebook Conversion/app/code/community/Mehulchaudhari/Facebookconversion/Helper/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Facebook Conversion/app/code/community/Mehulchaudhari/Facebookconversion/Helper/Data.php -------------------------------------------------------------------------------- /Magento Facebook Conversion/app/code/community/Mehulchaudhari/Facebookconversion/etc/adminhtml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Facebook Conversion/app/code/community/Mehulchaudhari/Facebookconversion/etc/adminhtml.xml -------------------------------------------------------------------------------- /Magento Facebook Conversion/app/code/community/Mehulchaudhari/Facebookconversion/etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Facebook Conversion/app/code/community/Mehulchaudhari/Facebookconversion/etc/config.xml -------------------------------------------------------------------------------- /Magento Facebook Conversion/app/code/community/Mehulchaudhari/Facebookconversion/etc/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Facebook Conversion/app/code/community/Mehulchaudhari/Facebookconversion/etc/system.xml -------------------------------------------------------------------------------- /Magento Facebook Conversion/app/design/frontend/base/default/layout/facebookconversion.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Facebook Conversion/app/design/frontend/base/default/layout/facebookconversion.xml -------------------------------------------------------------------------------- /Magento Facebook Conversion/app/design/frontend/base/default/template/facebookconversion/ordersuccess.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Facebook Conversion/app/design/frontend/base/default/template/facebookconversion/ordersuccess.phtml -------------------------------------------------------------------------------- /Magento Facebook Conversion/app/design/frontend/base/default/template/facebookconversion/pageview.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Facebook Conversion/app/design/frontend/base/default/template/facebookconversion/pageview.phtml -------------------------------------------------------------------------------- /Magento Facebook Conversion/app/design/frontend/base/default/template/facebookconversion/productview.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Facebook Conversion/app/design/frontend/base/default/template/facebookconversion/productview.phtml -------------------------------------------------------------------------------- /Magento Facebook Conversion/app/etc/modules/Mehulchaudhari_Facebookconversion.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Facebook Conversion/app/etc/modules/Mehulchaudhari_Facebookconversion.xml -------------------------------------------------------------------------------- /Magento Facebook Conversion/infoscript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Facebook Conversion/infoscript.txt -------------------------------------------------------------------------------- /Magento Houzzbutton For Product/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Houzzbutton For Product/README.md -------------------------------------------------------------------------------- /Magento Houzzbutton For Product/app/code/community/Mehulchaudhari/Houzzbutton/Block/Houzzbutton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Houzzbutton For Product/app/code/community/Mehulchaudhari/Houzzbutton/Block/Houzzbutton.php -------------------------------------------------------------------------------- /Magento Houzzbutton For Product/app/code/community/Mehulchaudhari/Houzzbutton/Helper/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Houzzbutton For Product/app/code/community/Mehulchaudhari/Houzzbutton/Helper/Data.php -------------------------------------------------------------------------------- /Magento Houzzbutton For Product/app/code/community/Mehulchaudhari/Houzzbutton/Helper/Data.php~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Houzzbutton For Product/app/code/community/Mehulchaudhari/Houzzbutton/Helper/Data.php~ -------------------------------------------------------------------------------- /Magento Houzzbutton For Product/app/code/community/Mehulchaudhari/Houzzbutton/etc/adminhtml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Houzzbutton For Product/app/code/community/Mehulchaudhari/Houzzbutton/etc/adminhtml.xml -------------------------------------------------------------------------------- /Magento Houzzbutton For Product/app/code/community/Mehulchaudhari/Houzzbutton/etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Houzzbutton For Product/app/code/community/Mehulchaudhari/Houzzbutton/etc/config.xml -------------------------------------------------------------------------------- /Magento Houzzbutton For Product/app/code/community/Mehulchaudhari/Houzzbutton/etc/config.xml~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Houzzbutton For Product/app/code/community/Mehulchaudhari/Houzzbutton/etc/config.xml~ -------------------------------------------------------------------------------- /Magento Houzzbutton For Product/app/code/community/Mehulchaudhari/Houzzbutton/etc/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Houzzbutton For Product/app/code/community/Mehulchaudhari/Houzzbutton/etc/system.xml -------------------------------------------------------------------------------- /Magento Houzzbutton For Product/app/code/community/Mehulchaudhari/Houzzbutton/etc/system.xml~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Houzzbutton For Product/app/code/community/Mehulchaudhari/Houzzbutton/etc/system.xml~ -------------------------------------------------------------------------------- /Magento Houzzbutton For Product/app/design/frontend/base/default/layout/houzzbutton.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Houzzbutton For Product/app/design/frontend/base/default/layout/houzzbutton.xml -------------------------------------------------------------------------------- /Magento Houzzbutton For Product/app/design/frontend/base/default/template/houzzbutton/houzzbutton.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Houzzbutton For Product/app/design/frontend/base/default/template/houzzbutton/houzzbutton.phtml -------------------------------------------------------------------------------- /Magento Houzzbutton For Product/app/design/frontend/base/default/template/houzzbutton/houzzbutton.phtml~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Houzzbutton For Product/app/design/frontend/base/default/template/houzzbutton/houzzbutton.phtml~ -------------------------------------------------------------------------------- /Magento Houzzbutton For Product/app/etc/modules/Mehulchaudhari_Houzzbutton.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Houzzbutton For Product/app/etc/modules/Mehulchaudhari_Houzzbutton.xml -------------------------------------------------------------------------------- /Magento Product Attribute Description/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Product Attribute Description/README.md -------------------------------------------------------------------------------- /Magento Product Attribute Description/app/code/local/MehulChaudhari/Description/Block/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Product Attribute Description/app/code/local/MehulChaudhari/Description/Block/Form.php -------------------------------------------------------------------------------- /Magento Product Attribute Description/app/code/local/MehulChaudhari/Description/Helper/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Product Attribute Description/app/code/local/MehulChaudhari/Description/Helper/Data.php -------------------------------------------------------------------------------- /Magento Product Attribute Description/app/code/local/MehulChaudhari/Description/Model/Observer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Product Attribute Description/app/code/local/MehulChaudhari/Description/Model/Observer.php -------------------------------------------------------------------------------- /Magento Product Attribute Description/app/code/local/MehulChaudhari/Description/etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Product Attribute Description/app/code/local/MehulChaudhari/Description/etc/config.xml -------------------------------------------------------------------------------- /Magento Product Attribute Description/app/code/local/MehulChaudhari/Description/sql/description_setup/mysql4-install-1.0.0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Product Attribute Description/app/code/local/MehulChaudhari/Description/sql/description_setup/mysql4-install-1.0.0.php -------------------------------------------------------------------------------- /Magento Product Attribute Description/etc/modules/MehulChaudhari_Description.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Product Attribute Description/etc/modules/MehulChaudhari_Description.xml -------------------------------------------------------------------------------- /Magento Product Attribute Description/product_attribute_section_admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Product Attribute Description/product_attribute_section_admin.png -------------------------------------------------------------------------------- /Magento Send Coupon code to first time and second time buyer/Email template sample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Send Coupon code to first time and second time buyer/Email template sample.html -------------------------------------------------------------------------------- /Magento Send Coupon code to first time and second time buyer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Send Coupon code to first time and second time buyer/README.md -------------------------------------------------------------------------------- /Magento Send Coupon code to first time and second time buyer/app/code/community/Mehulchaudhari/Coupon/Helper/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Send Coupon code to first time and second time buyer/app/code/community/Mehulchaudhari/Coupon/Helper/Data.php -------------------------------------------------------------------------------- /Magento Send Coupon code to first time and second time buyer/app/code/community/Mehulchaudhari/Coupon/Model/Observer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Send Coupon code to first time and second time buyer/app/code/community/Mehulchaudhari/Coupon/Model/Observer.php -------------------------------------------------------------------------------- /Magento Send Coupon code to first time and second time buyer/app/code/community/Mehulchaudhari/Coupon/etc/adminhtml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Send Coupon code to first time and second time buyer/app/code/community/Mehulchaudhari/Coupon/etc/adminhtml.xml -------------------------------------------------------------------------------- /Magento Send Coupon code to first time and second time buyer/app/code/community/Mehulchaudhari/Coupon/etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Send Coupon code to first time and second time buyer/app/code/community/Mehulchaudhari/Coupon/etc/config.xml -------------------------------------------------------------------------------- /Magento Send Coupon code to first time and second time buyer/app/code/community/Mehulchaudhari/Coupon/etc/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Send Coupon code to first time and second time buyer/app/code/community/Mehulchaudhari/Coupon/etc/system.xml -------------------------------------------------------------------------------- /Magento Send Coupon code to first time and second time buyer/app/etc/modules/Mehulchaudhari_Coupon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Send Coupon code to first time and second time buyer/app/etc/modules/Mehulchaudhari_Coupon.xml -------------------------------------------------------------------------------- /Magento Yahoo Finance,Open Api,Google api for currency Rates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Yahoo Finance,Open Api,Google api for currency Rates/README.md -------------------------------------------------------------------------------- /Magento Yahoo Finance,Open Api,Google api for currency Rates/app/code/local/Mehulchaudhari/Currency/Model/Api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Yahoo Finance,Open Api,Google api for currency Rates/app/code/local/Mehulchaudhari/Currency/Model/Api.php -------------------------------------------------------------------------------- /Magento Yahoo Finance,Open Api,Google api for currency Rates/app/code/local/Mehulchaudhari/Currency/Model/Google.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Yahoo Finance,Open Api,Google api for currency Rates/app/code/local/Mehulchaudhari/Currency/Model/Google.php -------------------------------------------------------------------------------- /Magento Yahoo Finance,Open Api,Google api for currency Rates/app/code/local/Mehulchaudhari/Currency/Model/Openapi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Yahoo Finance,Open Api,Google api for currency Rates/app/code/local/Mehulchaudhari/Currency/Model/Openapi.php -------------------------------------------------------------------------------- /Magento Yahoo Finance,Open Api,Google api for currency Rates/app/code/local/Mehulchaudhari/Currency/Model/Yahoo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Yahoo Finance,Open Api,Google api for currency Rates/app/code/local/Mehulchaudhari/Currency/Model/Yahoo.php -------------------------------------------------------------------------------- /Magento Yahoo Finance,Open Api,Google api for currency Rates/app/code/local/Mehulchaudhari/Currency/etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Yahoo Finance,Open Api,Google api for currency Rates/app/code/local/Mehulchaudhari/Currency/etc/config.xml -------------------------------------------------------------------------------- /Magento Yahoo Finance,Open Api,Google api for currency Rates/app/etc/modules/Mehulchaudhari_Currency.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Magento Yahoo Finance,Open Api,Google api for currency Rates/app/etc/modules/Mehulchaudhari_Currency.xml -------------------------------------------------------------------------------- /Pdf upload in magento media wysiwyg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Pdf upload in magento media wysiwyg/README.md -------------------------------------------------------------------------------- /Pdf upload in magento media wysiwyg/app/code/local/Pdf/Allow/Block/Thumb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Pdf upload in magento media wysiwyg/app/code/local/Pdf/Allow/Block/Thumb.php -------------------------------------------------------------------------------- /Pdf upload in magento media wysiwyg/app/code/local/Pdf/Allow/Helper/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Pdf upload in magento media wysiwyg/app/code/local/Pdf/Allow/Helper/Data.php -------------------------------------------------------------------------------- /Pdf upload in magento media wysiwyg/app/code/local/Pdf/Allow/Helper/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Pdf upload in magento media wysiwyg/app/code/local/Pdf/Allow/Helper/File.php -------------------------------------------------------------------------------- /Pdf upload in magento media wysiwyg/app/code/local/Pdf/Allow/Model/Storage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Pdf upload in magento media wysiwyg/app/code/local/Pdf/Allow/Model/Storage.php -------------------------------------------------------------------------------- /Pdf upload in magento media wysiwyg/app/code/local/Pdf/Allow/controllers/Cms/Wysiwyg/ImagesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Pdf upload in magento media wysiwyg/app/code/local/Pdf/Allow/controllers/Cms/Wysiwyg/ImagesController.php -------------------------------------------------------------------------------- /Pdf upload in magento media wysiwyg/app/code/local/Pdf/Allow/etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Pdf upload in magento media wysiwyg/app/code/local/Pdf/Allow/etc/config.xml -------------------------------------------------------------------------------- /Pdf upload in magento media wysiwyg/app/etc/modules/Pdf_Allow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Pdf upload in magento media wysiwyg/app/etc/modules/Pdf_Allow.xml -------------------------------------------------------------------------------- /Pdf upload in magento media wysiwyg/skin/adminhtml/default/default/images/thumb/csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Pdf upload in magento media wysiwyg/skin/adminhtml/default/default/images/thumb/csv.png -------------------------------------------------------------------------------- /Pdf upload in magento media wysiwyg/skin/adminhtml/default/default/images/thumb/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Pdf upload in magento media wysiwyg/skin/adminhtml/default/default/images/thumb/doc.png -------------------------------------------------------------------------------- /Pdf upload in magento media wysiwyg/skin/adminhtml/default/default/images/thumb/flv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Pdf upload in magento media wysiwyg/skin/adminhtml/default/default/images/thumb/flv.png -------------------------------------------------------------------------------- /Pdf upload in magento media wysiwyg/skin/adminhtml/default/default/images/thumb/gz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Pdf upload in magento media wysiwyg/skin/adminhtml/default/default/images/thumb/gz.png -------------------------------------------------------------------------------- /Pdf upload in magento media wysiwyg/skin/adminhtml/default/default/images/thumb/mp3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Pdf upload in magento media wysiwyg/skin/adminhtml/default/default/images/thumb/mp3.png -------------------------------------------------------------------------------- /Pdf upload in magento media wysiwyg/skin/adminhtml/default/default/images/thumb/mp4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Pdf upload in magento media wysiwyg/skin/adminhtml/default/default/images/thumb/mp4.png -------------------------------------------------------------------------------- /Pdf upload in magento media wysiwyg/skin/adminhtml/default/default/images/thumb/odf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Pdf upload in magento media wysiwyg/skin/adminhtml/default/default/images/thumb/odf.png -------------------------------------------------------------------------------- /Pdf upload in magento media wysiwyg/skin/adminhtml/default/default/images/thumb/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Pdf upload in magento media wysiwyg/skin/adminhtml/default/default/images/thumb/pdf.png -------------------------------------------------------------------------------- /Pdf upload in magento media wysiwyg/skin/adminhtml/default/default/images/thumb/xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Pdf upload in magento media wysiwyg/skin/adminhtml/default/default/images/thumb/xls.png -------------------------------------------------------------------------------- /Pdf upload in magento media wysiwyg/skin/adminhtml/default/default/images/thumb/xlsx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Pdf upload in magento media wysiwyg/skin/adminhtml/default/default/images/thumb/xlsx.png -------------------------------------------------------------------------------- /Pdf upload in magento media wysiwyg/skin/adminhtml/default/default/images/thumb/xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Pdf upload in magento media wysiwyg/skin/adminhtml/default/default/images/thumb/xml.png -------------------------------------------------------------------------------- /Pdf upload in magento media wysiwyg/skin/adminhtml/default/default/images/thumb/zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Pdf upload in magento media wysiwyg/skin/adminhtml/default/default/images/thumb/zip.png -------------------------------------------------------------------------------- /Product Image optimizer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Product Image optimizer/README.md -------------------------------------------------------------------------------- /Product Image optimizer/app/code/local/MehulChaudhari/Imagesmashit/Helper/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Product Image optimizer/app/code/local/MehulChaudhari/Imagesmashit/Helper/Data.php -------------------------------------------------------------------------------- /Product Image optimizer/app/code/local/MehulChaudhari/Imagesmashit/Model/Observer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Product Image optimizer/app/code/local/MehulChaudhari/Imagesmashit/Model/Observer.php -------------------------------------------------------------------------------- /Product Image optimizer/app/code/local/MehulChaudhari/Imagesmashit/Model/lib/SmushIt.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Product Image optimizer/app/code/local/MehulChaudhari/Imagesmashit/Model/lib/SmushIt.class.php -------------------------------------------------------------------------------- /Product Image optimizer/app/code/local/MehulChaudhari/Imagesmashit/Model/lib/class.smushit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Product Image optimizer/app/code/local/MehulChaudhari/Imagesmashit/Model/lib/class.smushit.php -------------------------------------------------------------------------------- /Product Image optimizer/app/code/local/MehulChaudhari/Imagesmashit/etc/adminhtml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Product Image optimizer/app/code/local/MehulChaudhari/Imagesmashit/etc/adminhtml.xml -------------------------------------------------------------------------------- /Product Image optimizer/app/code/local/MehulChaudhari/Imagesmashit/etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Product Image optimizer/app/code/local/MehulChaudhari/Imagesmashit/etc/config.xml -------------------------------------------------------------------------------- /Product Image optimizer/app/code/local/MehulChaudhari/Imagesmashit/etc/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Product Image optimizer/app/code/local/MehulChaudhari/Imagesmashit/etc/system.xml -------------------------------------------------------------------------------- /Product Image optimizer/app/etc/modules/MehulChaudhari_Imagesmashit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Product Image optimizer/app/etc/modules/MehulChaudhari_Imagesmashit.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/README.md -------------------------------------------------------------------------------- /Themes Switcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Themes Switcher/README.md -------------------------------------------------------------------------------- /Themes Switcher/app/code/community/MehulChaudhari/Theme/Block/Switcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Themes Switcher/app/code/community/MehulChaudhari/Theme/Block/Switcher.php -------------------------------------------------------------------------------- /Themes Switcher/app/code/community/MehulChaudhari/Theme/Helper/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Themes Switcher/app/code/community/MehulChaudhari/Theme/Helper/Data.php -------------------------------------------------------------------------------- /Themes Switcher/app/code/community/MehulChaudhari/Theme/Model/Source/Blocks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Themes Switcher/app/code/community/MehulChaudhari/Theme/Model/Source/Blocks.php -------------------------------------------------------------------------------- /Themes Switcher/app/code/community/MehulChaudhari/Theme/Model/Source/Themes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Themes Switcher/app/code/community/MehulChaudhari/Theme/Model/Source/Themes.php -------------------------------------------------------------------------------- /Themes Switcher/app/code/community/MehulChaudhari/Theme/Model/Switcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Themes Switcher/app/code/community/MehulChaudhari/Theme/Model/Switcher.php -------------------------------------------------------------------------------- /Themes Switcher/app/code/community/MehulChaudhari/Theme/etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Themes Switcher/app/code/community/MehulChaudhari/Theme/etc/config.xml -------------------------------------------------------------------------------- /Themes Switcher/app/code/community/MehulChaudhari/Theme/etc/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Themes Switcher/app/code/community/MehulChaudhari/Theme/etc/system.xml -------------------------------------------------------------------------------- /Themes Switcher/app/code/community/MehulChaudhari/Theme/template/theme/switcher.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Themes Switcher/app/code/community/MehulChaudhari/Theme/template/theme/switcher.phtml -------------------------------------------------------------------------------- /Themes Switcher/app/design/frontend/base/default/template/themeswitch/switcher.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Themes Switcher/app/design/frontend/base/default/template/themeswitch/switcher.phtml -------------------------------------------------------------------------------- /Themes Switcher/app/etc/modules/MehulChaudhari_Theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Themes Switcher/app/etc/modules/MehulChaudhari_Theme.xml -------------------------------------------------------------------------------- /Upshare/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Upshare/README.md -------------------------------------------------------------------------------- /Upshare/app/code/local/MehulChaudhari/Upshare/Helper/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Upshare/app/code/local/MehulChaudhari/Upshare/Helper/Data.php -------------------------------------------------------------------------------- /Upshare/app/code/local/MehulChaudhari/Upshare/controllers/IndexController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Upshare/app/code/local/MehulChaudhari/Upshare/controllers/IndexController.php -------------------------------------------------------------------------------- /Upshare/app/code/local/MehulChaudhari/Upshare/etc/adminhtml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Upshare/app/code/local/MehulChaudhari/Upshare/etc/adminhtml.xml -------------------------------------------------------------------------------- /Upshare/app/code/local/MehulChaudhari/Upshare/etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Upshare/app/code/local/MehulChaudhari/Upshare/etc/config.xml -------------------------------------------------------------------------------- /Upshare/app/code/local/MehulChaudhari/Upshare/etc/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Upshare/app/code/local/MehulChaudhari/Upshare/etc/system.xml -------------------------------------------------------------------------------- /Upshare/app/design/frontend/base/default/layout/upshare.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Upshare/app/design/frontend/base/default/layout/upshare.xml -------------------------------------------------------------------------------- /Upshare/app/design/frontend/base/default/template/upshare/index.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Upshare/app/design/frontend/base/default/template/upshare/index.phtml -------------------------------------------------------------------------------- /Upshare/app/etc/modules/MehulChaudhari_Upshare.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/Upshare/app/etc/modules/MehulChaudhari_Upshare.xml -------------------------------------------------------------------------------- /somelink.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5mehulhelp5/MagentoExtensions/HEAD/somelink.txt --------------------------------------------------------------------------------