Your IP : 216.73.216.95


Current Path : /var/www/alh/admin/view/journal2/js/controllers/settings/
Upload File :
Current File : /var/www/alh/admin/view/journal2/js/controllers/settings/import_export.js

define(['./../module', 'underscore'], function (module, _) {

    module.controller('ImportExportSettingsController', function ($scope, $routeParams, $location, $timeout, localStorageService, Rest, Spinner) {

        $scope.settings = {
            include_store_data: 0,
            add_dummy_images: 0
        };

        Spinner.hide();

        $scope.confirmation = function ($event) {
            if ($scope.settings.include_store_data && !confirm('WARNING! This will include store data from this installation. Importing this file into your store will reset your data to the one in this file. ')) {
                $event.preventDefault();
                return false;
            }
        };

    });

});