__('Your changes has been saved', 'LayerSlider')
];
// Notify OSD
if( isset( $_GET['message'] ) ) {
wp_localize_script('ls-common', 'LS_statusMessage', [
'icon' => isset( $_GET['error'] ) ? 'error' : 'success',
'iconColor' => isset( $_GET['error'] ) ? '#ff2323' : '#8BC34A',
'text' => $notifications[ $_GET['message'] ],
'timeout' => 8000
]);
}
// Icons
wp_localize_script('ls-common', 'LS_InterfaceIcons', [
'notifications' => [
'error' => lsGetSVGIcon('exclamation-triangle'),
'success' => lsGetSVGIcon('check'),
]
]);
include LS_ROOT_PATH . '/includes/ls_global.php';
?>