window.theme = {};
// Theme Common Functions
window.theme.fn = {
getOptions: function(opts) {
if (typeof(opts) == 'object') {
return opts;
} else if (typeof(opts) == 'string') {
try {
return JSON.parse(opts.replace(/'/g,'"').replace(';',''));
} catch(e) {
return {};
}
} else {
return {};
}
}
};
(function($){
var getScript = $.getScript;
$.extend({
getScript: function( resources, callback ) {
var length = resources.length,
handler = function() {
counter++;
},
deferreds = [],
counter = 0,
idx = 0;
for ( ; idx < length; idx++ ) {
deferreds.push(
getScript( resources[ idx ], handler )
);
}
jQuery.when.apply( null, deferreds ).then(function() {
callback && callback();
});
},
getCss: function(resources, callback, location = null) {
$.when.apply($,
$.map(resources, function(resource) {
if ($('head').children('link[href="' + resource + '"]').length) {
console.warn('Bu CSS dosyası daha önce eklenmiş: ' + resource);
}
return $.get(resource, function() {
if(location){
var insertLocation = location;
}else{
var insertLocation = 'link[href="' + THEME_DIR + 'assets/css/ilter.css"]';
}
$('').insertBefore(insertLocation);
});
})
).then(function() {
$.when.apply( null ).then(function() {
callback && callback();
});
});
}
});
$.fn.insertText = function (text) {
return this.each(function () {
if (document.selection && this.tagName == 'TEXTAREA') {
//IE textarea support
this.focus();
sel = document.selection.createRange();
sel.text = text;
this.focus();
} else if (this.selectionStart || this.selectionStart == '0') {
//MOZILLA/NETSCAPE support
startPos = this.selectionStart;
endPos = this.selectionEnd;
scrollTop = this.scrollTop;
this.value = this.value.substring(0, startPos) + text + this.value.substring(endPos, this.value.length);
this.focus();
this.selectionStart = startPos + text.length;
this.selectionEnd = startPos + text.length;
this.scrollTop = scrollTop;
} else {
// IE input[type=text] and other browsers
this.value += text;
this.focus();
this.value = this.value; // forces cursor to end
}
});
};
$.fn.fadeRemove = function(speed){
var _this = $(this);
return _this.animate({opacity: '0'}, speed, function(){
_this.animate({height: '0px'}, speed, function(){
_this.remove();
});
});
};
$.fn.focusToEnd = function() {
return this.each(function() {
var v = $(this).val();
$(this).focus().val("").val(v);
});
};
$.fn.iPopover = function (options, ipop) {
var _this = $(this);
_this.popover(options);
_this.on('show.bs.popover', function(e){
$(e.target).attr('popover-opened', 'true');
$('[data-plugin-popover][popover-opened="true"]').not(e.target).popover('hide');
});
_this.on('hide.bs.popover', function(e){
if(ipop.scroll==true){
$(_this.data('bs.popover').tip.lastChild).find('.mCustomScrollbar').each(function () {
$(this).mCustomScrollbar('destroy');
});
}
$(_this.data('bs.popover').tip.lastChild).find('input, select, textarea').each(function () {
if ($(this).is('[type="radio"]') || $(this).is('[type="checkbox"]')) {
if ($(this).prop('checked')) {
$(this).attr('checked', 'checked');
} else {
$(this).removeAttr('checked');
}
} else {
if ($(this).is('select')) {
$(this).find(':selected').attr('selected', 'selected');
} else {
$(this).attr('value', $(this).val());
}
}
});
$(_this.data('content-id')).html($(_this.data('bs.popover').tip.lastChild).html());
$(e.target).removeAttr('popover-opened');
});
if(ipop.closeButton==true){
$('html').on('click', '[data-dismiss="popover"]', function (e) {
$(e.target).closest('div.popover').popover('hide');
});
}
return this;
};
$.fn.nval = function() {
return Number(this.val())
};
// var originalVal = $.fn.val;
// $.fn.val = function (value) {
// if (arguments.length >= 1) {
// // setter invoked, do processing
// return originalVal.call(this, value).trigger('change');
// }
// //getter invoked do processing
// return originalVal.call(this);
// };
($.vsprintf = function (e, t) {
if (null == e) throw "Not enough arguments for vsprintf";
function n(e, t, n) {
if (null == t) return "s" == e ? "" : "0";
var r,
s = "",
o = "",
a = " ";
if (n.short || n.long || n.long_long)
switch (e) {
case "e":
case "f":
case "G":
case "E":
case "G":
case "d":
n.short
? t >= 32767
? (t = 32767)
: t <= -32768 && (t = -32768)
: n.long
? t >= 2147483647
? (t = 2147483647)
: t <= -2147483648 && (t = -2147483648)
: t >= 0x8000000000000000
? (t = 0x8000000000000000)
: t <= -0x8000000000000000 && (t = -0x8000000000000000);
break;
case "X":
case "B":
case "u":
case "o":
case "x":
case "b":
t < 0 && (t = Math.abs(t) - 1), n.short ? t >= 65535 && (t = 65535) : n.long ? t >= 4294967295 && (t = 4294967295) : t >= 0x10000000000000000 && (t = 0x10000000000000000);
}
switch (e) {
case "c":
r = String.fromCharCode(parseInt(t));
break;
case "s":
r = t.toString();
break;
case "d":
case "u":
r = new Number(parseInt(t)).toString();
break;
case "o":
r = new Number(parseInt(t)).toString(8);
break;
case "x":
r = new Number(parseInt(t)).toString(16);
break;
case "B":
case "b":
r = new Number(parseInt(t)).toString(2);
break;
case "e":
var i = n.precision ? n.precision : 6;
r = new Number(t).toExponential(i).toString();
break;
case "f":
i = n.precision ? n.precision : 6;
r = new Number(t).toFixed(i).toString();
break;
case "g":
i = n.precision ? n.precision : 6;
r = new Number(t).toPrecision(i).toString();
break;
case "X":
r = new Number(parseInt(t)).toString(16).toUpperCase();
break;
case "E":
i = n.precision ? n.precision : 6;
r = new Number(t).toExponential(i).toString().toUpperCase();
break;
case "G":
i = n.precision ? n.precision : 6;
r = new Number(t).toPrecision(i).toString().toUpperCase();
}
if ((n["+"] && parseFloat(t) > 0 && -1 != ["d", "e", "f", "g", "E", "G"].indexOf(e) && (s = "+"), n[" "] && parseFloat(t) > 0 && -1 != ["d", "e", "f", "g", "E", "G"].indexOf(e) && (s = " "), n["#"] && 0 != parseInt(t)))
switch (e) {
case "o":
s = "0";
break;
case "x":
case "X":
s = "0x";
break;
case "b":
s = "0b";
break;
case "B":
s = "0B";
}
if ((n[0] && !n["-"] && (a = "0"), n.width && n.width > r.length + s.length)) for (var c = n.width - r.length - s.length, f = 0; f < c; ++f) o += a;
return n["-"] && !n[0] ? (r += o) : (r = o + r), s + r;
}
null == t && (t = []);
for (var r = "", s = 0, o = 0, a = { long: !1, short: !1, long_long: !1 }, i = !1, c = !1, f = !1, l = !1, h = !1, g = !1, p = ".", u = 0; u < e.length; ++u) {
var b = e.charAt(u);
if (i) {
switch (b) {
case "i":
b = "d";
break;
case "D":
(a.long = !0), (b = "d");
break;
case "U":
(a.long = !0), (b = "u");
break;
case "O":
(a.long = !0), (b = "o");
break;
case "F":
b = "f";
}
switch (b) {
case "c":
case "s":
case "d":
case "u":
case "o":
case "x":
case "e":
case "f":
case "g":
case "X":
case "E":
case "G":
case "b":
case "B":
var w = t[o];
if (h) {
var d = w;
if (w instanceof Array) d = w;
else if ("string" == typeof w || w instanceof String)
d = w.split("").map(function (e) {
return e.charCodeAt();
});
else if (("number" == typeof w || w instanceof Number) && a.bitwidth) {
d = [];
do {
d.unshift(w & ~(-1 << a.bitwidth));
} while ((w >>>= a.bitwidth));
} else
d = w
.toString()
.split("")
.map(function (e) {
return e.charCodeAt();
});
r += d
.map(function (e) {
return n(b, e, a);
})
.join(p);
} else r += n(b, w, a);
l || ++s, (o = s), (a = {}), (c = !1), (i = !1), (f = !1), (l = !1), (h = !1), (g = !1), (p = ".");
break;
case "v":
h = !0;
break;
case " ":
case "0":
case "-":
case "+":
case "#":
a[b] = !0;
break;
case "*":
c = !0;
break;
case ".":
f = !0;
break;
case "@":
g = !0;
break;
case "l":
a.long ? ((a.long_long = !0), (a.long = !1)) : ((a.long = !0), (a.long_long = !1)), (a.short = !1);
break;
case "q":
case "L":
(a.long_long = !0), (a.long = !1), (a.short = !1);
break;
case "h":
(a.short = !0), (a.long = !1), (a.long_long = !1);
}
if (/\d/.test(b)) {
var m = parseInt(e.substr(u));
if (((u += m.toString().length - 1), "$" == e.charAt(u + 1))) {
if (m < 0 || m > t.length) throw "out of bound";
c ? (f ? ((a.precision = t[m - 1]), (f = !1)) : "v" == e.charAt(u + 2) ? (p = t[m - 1]) : (a.width = t[m - 1]), (c = !1)) : ((l = !0), (o = m - 1)), ++u;
} else f ? ((a.precision = m), (f = !1)) : g ? ((a.bitwidth = m), (g = !1)) : (a.width = m);
} else c && !/\d/.test(e.charAt(u + 1)) && (f ? ((a.precision = t[o]), (f = !1)) : "v" == e.charAt(u + 1) ? (p = t[o]) : (a.width = t[o]), ++s, l || o++, (c = !1));
} else {
if ("%" == b) {
if ("%" == e.charAt(u + 1)) {
(r += "%"), ++u;
continue;
}
i = !0;
continue;
}
r += b;
}
}
return r;
}),
($.sprintf = function () {
if (0 == arguments.length) throw "Not enough arguments for sprintf";
var e = Array.prototype.slice.call(arguments),
t = e.shift();
return $.vsprintf(t, e);
}),
($.fn.printf = function () {
if (0 == arguments.length) throw "Not enough arguments for sprintf";
var e = Array.prototype.slice.call(arguments),
t = e.shift();
return this.append($.vsprintf(t, e));
}),
($.fn.vprintf = function (e, t) {
if (0 == arguments.length) throw "Not enough arguments for sprintf";
return this.append($.vsprintf(e, t));
}),
($.fn.vformat = function (e) {
if (0 == arguments.length) throw "Not enough arguments for sprintf";
return this.each(function () {
(self = jQuery(this)), self.html($.vsprintf(self.html(), e));
});
}),
($.fn.format = function () {
if (0 == arguments.length) throw "Not enough arguments for sprintf";
var e = Array.prototype.slice.call(arguments);
return this.each(function () {
(self = jQuery(this)), self.html($.vsprintf(self.html(), e));
});
}),
($.printf = function () {
if (0 == arguments.length) throw "Not enough arguments for sprintf";
var e = Array.prototype.slice.call(arguments),
t = e.shift(),
n = $.vsprintf(t, e);
window.console ? window.console.info(n) : window.dump(n);
}),
($.vprintf = function (e, t) {
if (0 == arguments.length) throw "Not enough arguments for sprintf";
var n = $.vsprintf(e, t);
window.console ? window.console.info(n) : window.dump(n);
});
})(jQuery);
(function ($) {
'use strict';
$.md5 = function (string, key, raw) {
function safe_add(x, y) {
var lsw = (x & 0xFFFF) + (y & 0xFFFF),
msw = (x >> 16) + (y >> 16) + (lsw >> 16);
return (msw << 16) | (lsw & 0xFFFF);
}
function bit_rol(num, cnt) {
return (num << cnt) | (num >>> (32 - cnt));
}
function md5_cmn(q, a, b, x, s, t) {
return safe_add(bit_rol(safe_add(safe_add(a, q), safe_add(x, t)), s), b);
}
function md5_ff(a, b, c, d, x, s, t) {
return md5_cmn((b & c) | ((~b) & d), a, b, x, s, t);
}
function md5_gg(a, b, c, d, x, s, t) {
return md5_cmn((b & d) | (c & (~d)), a, b, x, s, t);
}
function md5_hh(a, b, c, d, x, s, t) {
return md5_cmn(b ^ c ^ d, a, b, x, s, t);
}
function md5_ii(a, b, c, d, x, s, t) {
return md5_cmn(c ^ (b | (~d)), a, b, x, s, t);
}
function binl_md5(x, len) {
x[len >> 5] |= 0x80 << ((len) % 32);
x[(((len + 64) >>> 9) << 4) + 14] = len;
var i, olda, oldb, oldc, oldd,
a = 1732584193,
b = -271733879,
c = -1732584194,
d = 271733878;
for (i = 0; i < x.length; i += 16) {
olda = a;
oldb = b;
oldc = c;
oldd = d;
a = md5_ff(a, b, c, d, x[i], 7, -680876936);
d = md5_ff(d, a, b, c, x[i + 1], 12, -389564586);
c = md5_ff(c, d, a, b, x[i + 2], 17, 606105819);
b = md5_ff(b, c, d, a, x[i + 3], 22, -1044525330);
a = md5_ff(a, b, c, d, x[i + 4], 7, -176418897);
d = md5_ff(d, a, b, c, x[i + 5], 12, 1200080426);
c = md5_ff(c, d, a, b, x[i + 6], 17, -1473231341);
b = md5_ff(b, c, d, a, x[i + 7], 22, -45705983);
a = md5_ff(a, b, c, d, x[i + 8], 7, 1770035416);
d = md5_ff(d, a, b, c, x[i + 9], 12, -1958414417);
c = md5_ff(c, d, a, b, x[i + 10], 17, -42063);
b = md5_ff(b, c, d, a, x[i + 11], 22, -1990404162);
a = md5_ff(a, b, c, d, x[i + 12], 7, 1804603682);
d = md5_ff(d, a, b, c, x[i + 13], 12, -40341101);
c = md5_ff(c, d, a, b, x[i + 14], 17, -1502002290);
b = md5_ff(b, c, d, a, x[i + 15], 22, 1236535329);
a = md5_gg(a, b, c, d, x[i + 1], 5, -165796510);
d = md5_gg(d, a, b, c, x[i + 6], 9, -1069501632);
c = md5_gg(c, d, a, b, x[i + 11], 14, 643717713);
b = md5_gg(b, c, d, a, x[i], 20, -373897302);
a = md5_gg(a, b, c, d, x[i + 5], 5, -701558691);
d = md5_gg(d, a, b, c, x[i + 10], 9, 38016083);
c = md5_gg(c, d, a, b, x[i + 15], 14, -660478335);
b = md5_gg(b, c, d, a, x[i + 4], 20, -405537848);
a = md5_gg(a, b, c, d, x[i + 9], 5, 568446438);
d = md5_gg(d, a, b, c, x[i + 14], 9, -1019803690);
c = md5_gg(c, d, a, b, x[i + 3], 14, -187363961);
b = md5_gg(b, c, d, a, x[i + 8], 20, 1163531501);
a = md5_gg(a, b, c, d, x[i + 13], 5, -1444681467);
d = md5_gg(d, a, b, c, x[i + 2], 9, -51403784);
c = md5_gg(c, d, a, b, x[i + 7], 14, 1735328473);
b = md5_gg(b, c, d, a, x[i + 12], 20, -1926607734);
a = md5_hh(a, b, c, d, x[i + 5], 4, -378558);
d = md5_hh(d, a, b, c, x[i + 8], 11, -2022574463);
c = md5_hh(c, d, a, b, x[i + 11], 16, 1839030562);
b = md5_hh(b, c, d, a, x[i + 14], 23, -35309556);
a = md5_hh(a, b, c, d, x[i + 1], 4, -1530992060);
d = md5_hh(d, a, b, c, x[i + 4], 11, 1272893353);
c = md5_hh(c, d, a, b, x[i + 7], 16, -155497632);
b = md5_hh(b, c, d, a, x[i + 10], 23, -1094730640);
a = md5_hh(a, b, c, d, x[i + 13], 4, 681279174);
d = md5_hh(d, a, b, c, x[i], 11, -358537222);
c = md5_hh(c, d, a, b, x[i + 3], 16, -722521979);
b = md5_hh(b, c, d, a, x[i + 6], 23, 76029189);
a = md5_hh(a, b, c, d, x[i + 9], 4, -640364487);
d = md5_hh(d, a, b, c, x[i + 12], 11, -421815835);
c = md5_hh(c, d, a, b, x[i + 15], 16, 530742520);
b = md5_hh(b, c, d, a, x[i + 2], 23, -995338651);
a = md5_ii(a, b, c, d, x[i], 6, -198630844);
d = md5_ii(d, a, b, c, x[i + 7], 10, 1126891415);
c = md5_ii(c, d, a, b, x[i + 14], 15, -1416354905);
b = md5_ii(b, c, d, a, x[i + 5], 21, -57434055);
a = md5_ii(a, b, c, d, x[i + 12], 6, 1700485571);
d = md5_ii(d, a, b, c, x[i + 3], 10, -1894986606);
c = md5_ii(c, d, a, b, x[i + 10], 15, -1051523);
b = md5_ii(b, c, d, a, x[i + 1], 21, -2054922799);
a = md5_ii(a, b, c, d, x[i + 8], 6, 1873313359);
d = md5_ii(d, a, b, c, x[i + 15], 10, -30611744);
c = md5_ii(c, d, a, b, x[i + 6], 15, -1560198380);
b = md5_ii(b, c, d, a, x[i + 13], 21, 1309151649);
a = md5_ii(a, b, c, d, x[i + 4], 6, -145523070);
d = md5_ii(d, a, b, c, x[i + 11], 10, -1120210379);
c = md5_ii(c, d, a, b, x[i + 2], 15, 718787259);
b = md5_ii(b, c, d, a, x[i + 9], 21, -343485551);
a = safe_add(a, olda);
b = safe_add(b, oldb);
c = safe_add(c, oldc);
d = safe_add(d, oldd);
}
return [a, b, c, d];
}
function binl2rstr(input) {
var i,
output = '';
for (i = 0; i < input.length * 32; i += 8) {
output += String.fromCharCode((input[i >> 5] >>> (i % 32)) & 0xFF);
}
return output;
}
function rstr2binl(input) {
var i,
output = [];
output[(input.length >> 2) - 1] = undefined;
for (i = 0; i < output.length; i += 1) {
output[i] = 0;
}
for (i = 0; i < input.length * 8; i += 8) {
output[i >> 5] |= (input.charCodeAt(i / 8) & 0xFF) << (i % 32);
}
return output;
}
function rstr_md5(s) {
return binl2rstr(binl_md5(rstr2binl(s), s.length * 8));
}
function rstr_hmac_md5(key, data) {
var i,
bkey = rstr2binl(key),
ipad = [],
opad = [],
hash;
ipad[15] = opad[15] = undefined;
if (bkey.length > 16) {
bkey = binl_md5(bkey, key.length * 8);
}
for (i = 0; i < 16; i += 1) {
ipad[i] = bkey[i] ^ 0x36363636;
opad[i] = bkey[i] ^ 0x5C5C5C5C;
}
hash = binl_md5(ipad.concat(rstr2binl(data)), 512 + data.length * 8);
return binl2rstr(binl_md5(opad.concat(hash), 512 + 128));
}
function rstr2hex(input) {
var hex_tab = '0123456789abcdef',
output = '',
x,
i;
for (i = 0; i < input.length; i += 1) {
x = input.charCodeAt(i);
output += hex_tab.charAt((x >>> 4) & 0x0F) +
hex_tab.charAt(x & 0x0F);
}
return output;
}
function str2rstr_utf8(input) {
return unescape(encodeURIComponent(input));
}
function raw_md5(s) {
return rstr_md5(str2rstr_utf8(s));
}
function hex_md5(s) {
return rstr2hex(raw_md5(s));
}
function raw_hmac_md5(k, d) {
return rstr_hmac_md5(str2rstr_utf8(k), str2rstr_utf8(d));
}
function hex_hmac_md5(k, d) {
return rstr2hex(raw_hmac_md5(k, d));
}
return (function($){
if (!key) {
if (!raw) {
return hex_md5(string);
} else {
return raw_md5(string);
}
}
if (!raw) {
return hex_hmac_md5(key, string);
} else {
return raw_hmac_md5(key, string);
}
}).apply(this, [jQuery]);
};
}(typeof jQuery === 'function' ? jQuery : this));
// Datepicker
(function(theme, $){
theme = theme || {};
var instanceName = '__datepicker';
var PluginDatePicker = function(_el, opts){
return this.initialize(_el, opts);
};
PluginDatePicker.defaults = {};
PluginDatePicker.prototype = {
initialize: function(_el, opts){
if(_el.data(instanceName)){
return this;
}
this._el = _el;
this
.setVars()
.setData()
.setOptions(opts)
.build();
return this;
},
setVars: function(){
this.skin = this._el.data('plugin-skin');
return this;
},
setData: function(){
this._el.data(instanceName, this);
return this;
},
setOptions: function(opts){
this.options = $.extend(true,{}, PluginDatePicker.defaults, opts);
return this;
},
build: function(){
this._el.bootstrapDP(this.options);
if(!!this.skin && typeof(this._el.data('datepicker').picker) != 'undefined'){
this._el.data('datepicker').picker.addClass('datepicker-' + this.skin);
}
return this;
}
};
// expose to scope
$.extend(theme,{
PluginDatePicker: PluginDatePicker
});
// jquery plugin
$.fn.pluginDatePicker = function(opts){
return this.each(function(){
var _this = $(this);
if(_this.data(instanceName)){
return _this.data(instanceName);
}else{
return new PluginDatePicker(_this, opts);
}
});
}
}).apply(this, [window.theme, jQuery]);
(function($){
'use strict';
if($('[data-plugin-datepicker]').length>0){
$.getScript([
THEME_DIR + 'assets/vendor/bootstrap-datepicker/js/bootstrap-datepicker.js'
],
function(){
$.getCss([
THEME_DIR + 'assets/vendor/bootstrap-datepicker/css/bootstrap-datepicker3.css'
],
function(){
if(typeof($.fn.datepicker) != 'undefined'){
$.fn.bootstrapDP = $.fn.datepicker.noConflict();
}
if($.isFunction($.fn['bootstrapDP'])){
$(function(){
$('[data-plugin-datepicker]').each(function(){
var _this = $(this),
pluginOptions = _this.data('plugin-options'),
startDate = new RegExp('^[+]+[0-9]+[a-z]$'),
opts ={
format: 'dd/mm/yyyy',
language: 'tr',
autoclose: true,
todayHighlight: (startDate.test(pluginOptions && pluginOptions.startDate ? pluginOptions.startDate : '') ? false : true),//true
zIndexOffset: 1001
};
if(pluginOptions)
opts = $.extend(true,{}, opts, pluginOptions);
_this.pluginDatePicker(opts);
});
});
}
});
});
}
}).apply(this, [jQuery]);
// TimePicker
(function(theme, $){
theme = theme || {};
var instanceName = '__timepicker';
var PluginTimePicker = function(_el, opts){
return this.initialize(_el, opts);
};
PluginTimePicker.defaults ={
disableMousewheel: true,
icons:{
up: 'fa fa-chevron-up',
down: 'fa fa-chevron-down'
}
};
PluginTimePicker.prototype ={
initialize: function(_el, opts){
if(_el.data(instanceName)){
return this;
}
this._el = _el;
this
.setData()
.setOptions(opts)
.build();
return this;
},
setData: function(){
this._el.data(instanceName, this);
return this;
},
setOptions: function(opts){
this.options = $.extend(true,{}, PluginTimePicker.defaults, opts);
return this;
},
build: function(){
this._el.timepicker(this.options);
return this;
}
};
// expose to scope
$.extend(theme,{
PluginTimePicker: PluginTimePicker
});
// jquery plugin
$.fn.pluginTimePicker = function(opts){
return this.each(function(){
var _this = $(this);
if(_this.data(instanceName)){
return _this.data(instanceName);
}else{
return new PluginTimePicker(_this, opts);
}
});
}
}).apply(this, [window.theme, jQuery]);
(function($){
'use strict';
if($('[data-plugin-timepicker]').length>0){
$.getScript([
THEME_DIR + 'assets/vendor/bootstrap-timepicker/bootstrap-timepicker.js'
],
function(){
$.getCss([
THEME_DIR + 'assets/vendor/bootstrap-timepicker/css/bootstrap-timepicker.css'
],
function(){
if($.isFunction($.fn['timepicker'])){
$(function(){
$('[data-plugin-timepicker]').each(function(){
var _this = $(this),
opts ={};
var pluginOptions = _this.data('plugin-options');
if(pluginOptions)
opts = pluginOptions;
_this.pluginTimePicker(opts);
});
});
}
});
});
}
}).apply(this, [jQuery]);
(function($){
'use strict';
if($.isFunction($.fn['mCustomScrollbar'])){
$(function(){
$('[data-plugin-scroll-table]').each(function(){
var _this = $(this);
var pluginOptions = _this.data('plugin-options');
var table = _this.find('table.table');
var thead = table.find('thead');
var tbody = table.find('tbody');
table.mCustomScrollbar({
axis: 'x',
theme: 'dark',
mouseWheel:{
preventDefault: true
},
advanced:{
updateOnContentResize: true
},
mouseWheelPixels: 100,
scrollInertia: 250
});
if(pluginOptions.tbody==true){
var title = thead.find('tr th');
var list = tbody.find('tr');
list.each(function(){
for(var i=0; i < title.length; i++){
var td = $(this).find('td');
if($(td[i]).parent('tr').hasClass('bos')){
$(td[i]).attr('style', 'width:100%');
}else{
$(td[i]).attr('style', $(title[i]).attr('style'));
}
}
});
tbody.css('max-height', pluginOptions.maxHeight).mCustomScrollbar({
axis: 'y',
theme: 'minimal',
mouseWheel:{
preventDefault: true
},
advanced:{
updateOnContentResize: true
},
mouseWheelPixels: 100,
scrollInertia: 250
});
}
});
});
}
}).apply(this, [jQuery]);
// Options Creator Plugin
(function(theme, $){
'use strict';
theme = theme || {};
var instanceName = '__optionList';
var PluginOptionsCreator = function(_el){
return this.initialize(_el);
};
PluginOptionsCreator.prototype = {
initialize: function(_el){
if ( _el.data( instanceName ) ) {
return this;
}
this._el = _el;
this._el.data(instanceName, this);
this.selector().create();
return this;
},
selector: function(){
this.selectors = {
'class': '.plugin-optionList',
'title': this._el.find('.table-responsive > .option-list thead'),
'body': this._el.find('.table-responsive > .option-list tbody'),
'list': this._el.find('.table-responsive > .option-list tbody .mCustomScrollBox .mCSB_container'),
'list_class': '.table-responsive > .option-list',
'template': this._el.find('.table-responsive > .option-template tbody'),
'add': this._el.find('.option-add'),
'move_class': '.option-move',
'delete_class': '.option-delete',
'data_class': '.option-data',
'output': this._el.find('.option-output')
};
return this;
},
create: function(){
var _this = this;
_this.selectors.list.sortable({
axis:"y",
handle: _this.selectors.move_class,
cancel: '',
opacity: '0.7',
group: _this.selectors.list_class,
delay: 0,
connectWith: _this.selectors.list_class,
placeholder: 'btn-outline-primary',
start: function(event, ui){
_this.getList();
ui.placeholder.html(_this.selectors.template.find('tr').html());
_this.stylePlaceholder(ui.placeholder);
},
stop: function(event, ui){
_this.getList();
},
update: function(){
_this.getList();
}
}).disableSelection();
_this.addRandom();
_this.getList();
_this.styleFunc();
if(_this.selectors.list.find('tr').length<='1'){
_this.selectors.list.sortable('disable');
}
_this.selectors.add.click(function(e){
_this.addFunc();
});
_this.selectors.list.on('click', _this.selectors.delete_class, function(e){
_this.deleteFunc(e);
});
_this.selectors.list.on('change click keypress keyup focus focusout blur', _this.selectors.data_class, function(e){
_this.getList();
});
return this;
},
getList: function(){
var _this = this;
var options_data = new Array();
_this.selectors.list.find('tr:not(.bos)').each(function(){
var data ={},
val = '';
$(this).find(".option-data").each(function(){
if($(this).prop('tagName')=='SELECT'){
val = $(this).val();
}else if($(this).prop('tagName')=='INPUT'){
if($(this).attr('type') !== 'checkbox' && $(this).attr('type') !== 'radio'){
val = $(this).val();
}else{
if($(this).is(':checked')){
val = '1';//$(this).val();
}else{
val = '0';
}
}
}else if($(this).prop('tagName')=='TEXTAREA'){
val = $(this).val();
}
var nameKeys = _this.getName($(this).attr('name'));
_this.setJson(data, nameKeys, val.replace(/"/g, '"'));
});
data['ol_sort'] = ($(this).index() + 1);
options_data.push(data);
});
var option_datas = window.JSON.stringify(options_data);
_this.selectors.output.val(option_datas);
_this.selectors.output.trigger('change');
return this;
},
setJson: function (o, keys, value) {
var _this = this;
if (isUndefined(o)) {
throw new Error("ArgumentError: param 'o' expected to be an object or array, found undefined");
}
if (!keys || keys.length === 0) {
throw new Error("ArgumentError: param 'keys' expected to be an array with least one element");
}
var key = keys[0];
var nextKey = keys[1];
var tailKeys = keys.slice(1);
if (keys.length === 1) {
o[key] = value;
return;
}else{
if (isUndefined(o[key]) || !isObject(o[key])) {
o[key] = {};
}
return _this.setJson(o[key], tailKeys, value);
}
},
addFunc: function(){
var _this = this;
let template = $.parseHTML(_this.selectors.template.html());
_this.selectors.list.append(template).sortable('refresh');
if(_this.selectors.list.find('.bos').length=='1'){
_this.selectors.list.find('.bos').remove();
}
if(_this.selectors.list.find('tr').length>='2'){
_this.selectors.list.sortable('enable').sortable('refresh');
}
$(_this.selector.body).mCustomScrollbar('scrollTo', 'bottom');
_this.addRandom();
_this.getList();
return this;
},
addRandom: function(){
var _this = this;
var nav = _this.selectors.list.find('tr td .nav');
for(var n=0; n < nav.length; n++){
var navLinks = $(nav[n]).find('.nav-item > .nav-link');
for(var l=0; l < nav.length; l++){
if($(navLinks[l]).attr('random')!=='true')
{
var id = $(navLinks[l]).attr('aria-controls'),
href = $(navLinks[l]).attr('href');
$(navLinks[l]).attr('random', true).attr('href', href + '-' + n).attr('aria-controls', id + '-' + n);
$(href).attr('id', id + '-' + n);
}
}
}
},
deleteFunc: function(e){
var _this = this;
$(e.currentTarget).closest('tr').remove();
_this.selectors.list.sortable('refresh');
if(_this.selectors.list.find('tr').length=='0'){
_this.selectors.list.append('
Öğe Yok |
').sortable('disable');
}
if(_this.selectors.list.find('tr').length=='1'){
_this.selectors.list.sortable('disable');
}
_this.getList();
return this;
},
styleFunc: function(){
var _this = this;
var title = _this.selectors.title.find('tr th');
var list = _this.selectors.list.find('tr');
list.each(function(){
for(var i=0; i < title.length; i++){
var td = $(this).find('td');
if($(td[i]).parent('tr').hasClass('bos')){
$(td[i]).attr('style', 'width:100%');
}else{
$(td[i]).attr('style', $(title[i]).attr('style'));
}
}
});
var template = _this.selectors.template.find('tr td');
for(var i=0; i < title.length; i++){
$(template[i]).attr('style', $(title[i]).attr('style'));
}
},
stylePlaceholder: function(element){
var _this = this;
var elementler = element.find('td'),
td_height = $(elementler[0]).outerHeight();
element.html(' | ');
},
getName: function(nameWithNoType) {
var keys = nameWithNoType.split("["); // split string into array
keys = $.map(keys, function (key) { return key.replace(/\]/g, ""); }); // remove closing brackets
if (keys[0] === "") { keys.shift(); } // ensure no opening bracket ("[foo][inn]" should be same as "foo[inn]")
return keys;
}
};
// expose to scope
$.extend(theme,{
PluginOptionsCreator: PluginOptionsCreator
});
// jquery plugin
$.fn.pluginOptionsCreator = function(){
return this.each(function(){
var _this = $(this);
if (_this.data(instanceName)) {
return _this.data(instanceName);
} else {
return new PluginOptionsCreator(_this);
}
});
}
}).apply(this, [window.theme, jQuery]);
(function($){
'use strict';
if($.isFunction($.fn['sortable'])){
$(function(){
$('[data-plugin-optionList]').each(function(){
var _this = $(this);
_this.pluginOptionsCreator();
});
});
}
}).apply(this, [jQuery]);
// Menu Creator Plugin
(function(theme, $){
theme = theme || {};
var PluginMenuList = function(_el, opts){
return this.init(_el, opts);
},
_this;
PluginMenuList.defaults = {};
PluginMenuList.prototype ={
init: function(_el, opts){
this._el = _el;
this.options(opts).create();
return this;
},
create: function(){
var _this = this;
_this._el.nestable(_this.options);
return this;
},
options: function(opts){
this.options = $.extend(true,{}, PluginMenuList.defaults, opts);
return this;
}
};
// expose to scope
$.extend(theme,{
PluginMenuList: PluginMenuList
});
// jquery plugin
$.fn.pluginMenuList = function(opts){
return this.each(function(){
var _this = $(this);
return new PluginMenuList(_this, opts);
});
}
}).apply(this, [window.theme, jQuery]);
var iMenu = function() {
changesFunc = function(_el, opts){
var nestable_data = window.JSON.stringify(_el.nestable('serialize')).replace(/children/g, 'items');
$(opts.output).val(nestable_data);
};
return {
init: function(_el, opts) {
changesFunc(_el, opts);
_el.on('change', function(){
if(opts==null){
var opts = $(this).data('plugin-options');
}
changesFunc($(this), opts);
});
_el.on('click', '.dd-edit', function(){
var element = $(this).parent('span.actions').parent('div.dd-handle').parent('li.dd-item');
var content = element.data('content');
var location = element.closest('[data-plugin-menu]').attr('id');
element.attr('id', 'dd-process');
// return false;
modal(this, 'modal_detail', 'system/setting/menu/edit/' + location, false, content);
});
_el.on('click', '.dd-delete', function(){
var location = $(this).closest('[data-plugin-menu]'),
list = location.find('ol.dd-list');
$(this).parent('span.actions').parent('div.dd-handle').parent('li.dd-item').remove();
var listCount = list.find('li.dd-item').length;
if(!listCount){
list.remove();
}
_el.trigger('change');
});
},
create: function(el, title, content){
var _el = $('#' + el + '_passives_list');
var list = $('#' + el + '_passives_list > ol.dd-list');
if(!list.length){
_el.append('
');
list = $('#' + el + '_passives_list > ol.dd-list');
}
var menu_template =
'' +
'' +
'' + title + '' +
'' +
' ' +
' ' +
'' +
'' +
'
' +
'';
list.append(menu_template);
_el.trigger('change');
},
edit: function(el, title, content){
var _el = $('#' + el);
var element = $('#' + el + ' > ol.dd-list').find('#dd-process');
content = $.parseJSON(content);
if(!element.length || !content){
notification('error', 'İŞLEM HATASI!', 'Menü öğesi güncellenemedi.');
return false;
}
element.find('.title').html(title);
element.data('content', content);
element.removeAttr('id');
_el.trigger('change');
},
cancel: function(){
$('#dd-process').removeAttr('id');
}
}
}();
(function($){
'use strict';
if($('[data-plugin-menu]').length>0){
$.getScript([
THEME_DIR + 'assets/vendor/nestable/jquery.nestable.min.js'
],
function(){
$.getCss([
THEME_DIR + 'assets/vendor/nestable/nestable.css'
],
function(){
if($.isFunction($.fn['nestable'])){
$(function(){
$('[data-plugin-menu]').each(function(){
var _this = $(this),
opts ={
group: $(this).prop('id'),
handleClass: 'dd-arrow',
emptyText: ' Öğe Yok',
callback: function(l, e){
l.trigger('change');
},
beforeDragStop: function(l, e){
l.trigger('change');
}
};
var pluginOptions = _this.data('plugin-options');
if(pluginOptions)
opts = $.extend(true,{}, opts, pluginOptions);
_this.pluginMenuList(opts);
iMenu.init(_this, opts);
});
});
}
});
});
}
}).apply(this, [jQuery]);
// Codemirror
(function(theme, $){
theme = theme || {};
var instanceName = '__codemirror';
var PluginCodeMirror = function(_el, opts){
return this.initialize(_el, opts);
};
PluginCodeMirror.defaults = {
lineNumbers: true,
styleActiveLine: true,
matchBrackets: true,
theme: 'monokai'
};
PluginCodeMirror.prototype = {
initialize: function(_el, opts){
if(_el.data(instanceName)){
return this;
}
this._el = _el;
this
.setData()
.setOptions(opts)
.build();
return this;
},
setData: function(){
this._el.data(instanceName, this);
return this;
},
setOptions: function(opts){
this.options = $.extend(true,{}, PluginCodeMirror.defaults, opts);
return this;
},
build: function(){
var name = this._el.attr('name');
CodeEditor[name] = { name: name, codemirror: CodeMirror.fromTextArea(this._el.get(0), this.options)};
return this;
}
};
// expose to scope
$.extend(theme,{
PluginCodeMirror: PluginCodeMirror
});
// jquery plugin
$.fn.pluginCodeMirror = function(opts){
return this.each(function(){
var _this = $(this);
if(_this.data(instanceName)){
return _this.data(instanceName);
}else{
return new PluginCodeMirror(_this, opts);
}
});
}
}).apply(this, [window.theme, jQuery]);
(function($){
'use strict';
if($('[data-plugin-codemirror]').length>0){
$.getScript([
THEME_DIR + 'assets/vendor/codemirror/js/codemirror.js'
],
function(){
$.getScript([
THEME_DIR + 'assets/vendor/codemirror/addon/selection/active-line.js',
THEME_DIR + 'assets/vendor/codemirror/addon/edit/matchbrackets.js',
THEME_DIR + 'assets/vendor/codemirror/mode/htmlmixed.js',
THEME_DIR + 'assets/vendor/codemirror/mode/xml.js',
THEME_DIR + 'assets/vendor/codemirror/mode/javascript.js',
THEME_DIR + 'assets/vendor/codemirror/mode/css.js',
THEME_DIR + 'assets/vendor/codemirror/mode/clike.js',
THEME_DIR + 'assets/vendor/codemirror/mode/php.js'
],
function(){
$.getCss([
THEME_DIR + 'assets/vendor/codemirror/css/codemirror.css',
THEME_DIR + 'assets/vendor/codemirror/theme/blackboard.css'
],
function(){
if(typeof CodeMirror!==undefined){
$(function(){
setTimeout(function(){
$('[data-plugin-codemirror]').each(function(){
var _this = $(this),
opts ={
lineNumbers: true,
matchBrackets: true,
indentUnit: 4,
indentWithTabs: true,
lineSeparator: '\n',
theme: 'blackboard',
lineWrapping: true
};
var pluginOptions = _this.data('plugin-options');
if(pluginOptions)
opts = $.extend(true,{}, opts, pluginOptions);
_this.pluginCodeMirror(opts);
});
}, 500);
});
}
});
})
});
}
}).apply(this, [jQuery]);
// TagsInput
(function($){
'use strict';
if($('[data-plugin-tagsinput]').length>0){
$.getScript([
THEME_DIR + 'assets/vendor/tagsinput/tagsinput.js'
],
function(){
$.getCss([
THEME_DIR + 'assets/vendor/tagsinput/tagsinput.css'
],
function(){
if($.isFunction($.fn['tagsInput'])){
$(function(){
$('[data-plugin-tagsinput]').each(function(){
var _this = $(this),
opts ={
'minInputWidth': 'auto',
'width': '1%',
'flex': '1 1 auto',
'height': '1%',
'interactive': true,
'defaultText': 'Yazınız',
'removingText': 'Kaldırın',
'removeWithBackspace': true,
'delimiter': ',',
'minChars': 0,
'maxChars': null,
'placeholderColor': '#666666',
'onAddTag': function(){
_this.trigger('change');
},
'onRemoveTag': function(){
_this.trigger('change');
}
};
var pluginOptions = _this.data('plugin-options');
if(pluginOptions)
opts = $.extend(true,{}, opts, pluginOptions);
_this.tagsInput(opts);
});
});
}
});
});
}
}).apply(this, [jQuery]);
// ClipboardJS
(function($){
'use strict';
if($('[data-plugin-clipboard]').length>0){
if(typeof ClipboardJS!==undefined){
$(function(){
$('[data-plugin-clipboard]').each(function(){
var _this = this;
var copy = new ClipboardJS(_this);
copy.on('error', function(e) {
notification('error', 'HATA!', 'Kopyalanamadı.
Lütfen yazılım danışmanınıza başvurun.');
});
});
});
}
}
}).apply(this, [jQuery]);
// Max Length
(function($){
'use strict';
if($('[data-plugin-maxlength]').length>0){
$.getScript([
THEME_DIR + 'assets/vendor/bootstrap-maxlength/bootstrap-maxlength.js'
],
function(){
if($.isFunction($.fn['maxlength'])){
$(function(){
$('[data-plugin-maxlength]').each(function(){
var _this = $(this);
_this.maxlength({
warningClass: 'badge badge-success',
alwaysShow: true,
});
});
});
}
})
}
}).apply(this, [jQuery]);
// Custom Tinymce Editor - Meditor
var TEditor = function(_this) {
var editorId = _this.attr('id'),
pluginOptions = _this.data('plugin-options');
tinymce.baseURL = THEME_DIR + 'assets/vendor/tinymce';
tinymce.PluginManager.add('TEditor', function(TEditor, url) {
var pluginOptions = $('#' + TEditor.id).data('plugin-options');
TEditor.ui.registry.addIcon('fa-folder-open', ''),
TEditor.ui.registry.addIcon('fa-newspaper', ''),
TEditor.ui.registry.addIcon('fa-project-diagram', ''),
TEditor.ui.registry.addIcon('fa-code-branch', ''),
TEditor.ui.registry.addIcon('fa-link', ''),
TEditor.ui.registry.addIcon('fa-trash', ''),
TEditor.ui.registry.addIcon('fa-file-alt', '');
if(pluginOptions.ilterFilePlugin || pluginOptions.ilterContentPlugin || pluginOptions.ilterProductPlugin){
var activeEl = null;
TEditor.on('keyDown', function (event) {
var keycode = (event.keyCode ? event.keyCode : event.which),
element = $(TEditor.selection.getNode());
if(keycode==8){
if (element.is('p')) {
var prev = element.prev();
if(!element.text() || !element.html())
{
if(prev.is('.TEditorElement.nEdit') || prev.is('.TEditorElementLink.nEdit')){
TEditor.dom.remove(prev);
}
}
}
}
if(keycode==46){
if (element.is('p')) {
var next = element.next();
if(!element.text() || !element.html())
{
if(next.is('.TEditorElement.nEdit') || next.is('.TEditorElementLink.nEdit')){
TEditor.dom.remove(next);
}
}
}
}
if(keycode==13 && !event.shiftKey){
if(element.parent().is('.yEdit')){
return false;
}
}
});
TEditor.ui.registry.addContextToolbar('TEditorContext1', {
predicate: function(node){
if($(node) && $(node).hasClass('TEditorElement') && $(node).data('element')=='file' && $(node).data('file-type')=='image'){
activeEl = node;
return true;
}
return false;
},
items: 'TEditorDelete | TEditorLink',
position: 'node',
scope: 'node'
}),
TEditor.ui.registry.addContextToolbar('TEditorContext2', {
predicate: function(node){
if($(node) && $(node).hasClass('TEditorElement')){
activeEl = node;
return true;
}
return false;
},
items: 'TEditorDelete',
position: 'node',
scope: 'node'
}),
TEditor.ui.registry.addButton('TEditorDelete', {
text: null,
tooltip: 'Kaldır',
icon: 'fa-trash',
onAction: function () {
var selectedElementAnchor = TEditor.dom.getParent(activeEl, '.TEditorElementLink.nEdit');
if(selectedElementAnchor)
{
activeEl = selectedElementAnchor;
}
TEditor.dom.remove(activeEl);
TEditor.focus();
TEditor.nodeChanged();
if (TEditor.dom.isEmpty(TEditor.getBody())) {
TEditor.setContent('');
TEditor.selection.setCursorLocation();
}
activeEl = null;
}
}),
TEditor.ui.registry.addButton('TEditorFile', {
text: 'Dosya Seç',
tooltip: 'Dosya Seç',
icon: 'fa-folder-open',
onAction: function (event) {
modalOpener = 'editor';
editorType = pluginOptions.editorType;
uploadWidth = ilterData.uploadWidth;
uploadHeight = ilterData.uploadHeight;
previewWidthHeight = ilterData.previewWidthHeight;
modal(this, 'modal_file', 'tools/file-manager/modal/all', false, {openType: 'modal', dir: 'content', modalOpener: 'editor'});
activeEditor = TEditor;
}
}),
TEditor.ui.registry.addButton('TEditorContent', {
text: 'İçerik Seç',
tooltip: 'İçerik Seç',
icon: 'fa-newspaper',
onAction: function (event) {
modalOpener = 'editor';
editorType = pluginOptions.editorType;
modal(this, 'modal_content', 'contents/modal/list/all', false, {openType: 'modal', modalOpener: 'editor'});
activeEditor = TEditor;
}
}),
TEditor.ui.registry.addButton('TEditorProduct', {
text: 'Ürün/Hizmet Seç',
tooltip: 'Ürün/Hizmet Seç',
icon: 'fa-project-diagram',
onAction: function (event) {
modalOpener = 'editor';
editorType = pluginOptions.editorType;
modal(this, 'modal_product', 'products/modal/list/all', false, {openType: 'modal', modalOpener: 'editor'});
activeEditor = TEditor;
}
});
}
if(pluginOptions.ilterShortCodePlugin){
TEditor.ui.registry.addButton('TEditorCode', {
text: 'Kısa Kodlar',
tooltip: 'Kısa Kodlar',
icon: 'fa-code-branch',
onAction: function (event) {
modalOpener = 'editor';
editorType = pluginOptions.editorType;
modal(this, 'modal_system', 'system/help/action/short_codes', false, {openType: 'modal', modalOpener: 'editor', data: pluginOptions.ilterShortCodePluginData});
activeEditor = TEditor;
}
});
}
if(pluginOptions.ilterTemplatePlugin){
TEditor.ui.registry.addButton('TEditorTemplate', {
text: 'Şablonlar',
tooltip: 'Şablonlar',
icon: 'fa-file-alt',
onAction: function (event) {
modalOpener = 'editor';
editorType = pluginOptions.editorType;
modal(this, 'modal_content', 'tools/templates/modal/list/' + pluginOptions.ilterTemplatePluginType, false, {openType: 'modal', modalOpener: 'editor'});
activeEditor = TEditor;
}
});
}
TEditor.ui.registry.addButton('TEditorHelp', {
title: 'Yardım',
icon: 'info',
onAction: function (event) {
modal(this, 'modal_content', 'yardim/editor');
}
});
var TEditorLinkTitle = '';
var TEditorLinkTarget = '';
var TEditorLinkAddress = '';
TEditor.ui.registry.addButton('TEditorLink', {
text: null,
tooltip: 'Bağlantı Ekle/Düzenle',
icon: 'fa-link',
onAction: function() {
var element = TEditor.selection.getNode(),
selectedElement = TEditor.dom.getParent(element, '.TEditorElement.nEdit'),
selectedElementId = selectedElement.dataset.elementId ? selectedElement.dataset.elementId : null,
selectedElementAnchor = TEditor.dom.getParent(selectedElement, '.TEditorElementLink.nEdit');
TEditor.selection.select(selectedElement);
if(!selectedElement)
{
return false;
}
if(editorType=='email')
{
selectedElementAnchor = TEditor.dom.select('[data-element-id="' + selectedElementId + '"]')[0];
var emailFileLink = $(selectedElementAnchor).find('.TEditorElementLink').attr('href');
TEditorLinkAddress = emailFileLink!=='' ? emailFileLink : '';
}
else if(selectedElementAnchor)
{
TEditorLinkAddress = selectedElementAnchor.href!=='' ? selectedElementAnchor.href : '';
TEditorLinkTarget = selectedElementAnchor.target!=='' ? selectedElementAnchor.target : '';
TEditorLinkTitle = selectedElementAnchor.title!=='' ? selectedElementAnchor.title : '';
}
TEditor.windowManager.open({
title: 'Bağlantı Ekle/Düzenle',
body: {
type: 'panel',
items: [
{
type: 'input',
name: 'address',
label: 'Adres',
placeholder: ADDRESS_SITE
},
{
type: 'input',
name: 'title',
label: 'Başlık',
placeholder: 'Adres Başlığı',
value: TEditorLinkTitle
},
{
type: 'selectbox',
name: 'target',
label: 'Bağlantıyı Aç',
items: [
{ value: '', text: 'Mevcut Pencere' },
{ value: '_blank', text: 'Yeni Pencere' }
]
}
]
},
initialData: {
address: TEditorLinkAddress,
target: TEditorLinkTarget,
title: TEditorLinkTitle
},
buttons: [
{
type: 'cancel',
text: 'Kapat'
},
{
type: 'submit',
text: 'Kaydet',
primary: true
}
],
onSubmit: function(api) {
var sendData = api.getData(),
hrefData,
TEditorSelectionContent = TEditor.selection.getContent({format : 'html'});
if(editorType=='email')
{
hrefData = TEditorSelectionContent.replaceAll('href="' + TEditorLinkAddress + '"', 'href="' + sendData.address + '"');
}
else
{
hrefData = '' + TEditorSelectionContent + '';
}
TEditor.selection.setContent(hrefData);
TEditor.selection.select(TEditor.dom.select('[data-element-id="' + selectedElementId + '"]')[0]);
var selectedElementNew = TEditor.selection.getNode(),
selectedElementAnchorNew = TEditor.dom.getParent(selectedElementNew, '.TEditorElementLink.nEdit');
$(selectedElementNew).attr('contenteditable', false);
$(selectedElementAnchorNew).attr('contenteditable', false);
api.close();
}
});
}
});
});
tinymce.init({
selector: '#' + editorId,
height: pluginOptions.height,
object_resizing: false,
relative_urls: false,
convert_urls: false,
remove_script_host: false,
document_base_url: ADDRESS_SITE,
language: 'tr',
forced_root_block : '',
verify_html: false,
menubar: false,
convert_newlines_to_brs : true,
plugins: [
'autolink lists link charmap preview hr anchor pagebreak searchreplace wordcount visualblocks visualchars code fullscreen insertdatetime nonbreaking save table directionality emoticons template paste textpattern codesample toc print noneditable TEditor'
],
toolbar1: 'undo redo | insert | styleselect | fontselect fontsizeselect | bold italic strikethrough underline | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent forecolor backcolor emoticons | codesample link table | cut copy paste pastetext | fullscreen preview code searchreplace print',
toolbar2: (pluginOptions.ilterFilePlugin ? ' TEditorFile |' : '') + (pluginOptions.ilterContentPlugin ? ' TEditorContent |' : '') + (pluginOptions.ilterProductPlugin ? ' TEditorProduct |' : '') + (pluginOptions.ilterShortCodePlugin ? ' TEditorCode |' : '') + (pluginOptions.ilterTemplatePlugin ? ' TEditorTemplate' : ''),
content_css: [THEME_DIR + 'assets/vendor/TEditor/iAjans.css', THEME_DIR + 'assets/vendor/fontawesome/css/all.min.css'],
valid_elements : '*[*]',
protect: [
/\/g, // Protect
],
noneditable_noneditable_class: 'nEdit',
noneditable_editable_class: 'yEdit',
table_toolbar: '',
br_in_pre: false,
setup: function (TEditor) {
},
init_instance_callback: function (tinymce_editor) {
tinymce_editor.on('change keyup keypress blur', function (e) {
tinymce_editor.save();
});
}
});
};
(function($){
'use strict';
if($('[data-plugin-teditor]').length>0){
$.getScript([
THEME_DIR + 'assets/vendor/tinymce/tinymce.js'
],
function(){
if(typeof tinymce!==undefined){
$(function(){
$('[data-plugin-teditor]').each(function(){
TEditor($(this));
});
});
}
})
}
}).apply(this, [jQuery]);
// Multi Select
function multiSelect(id){
$.getScript([
THEME_DIR + 'assets/vendor/bootstrap-select/js/bootstrap-select.min.js'
],
function(){
$.getCss([
THEME_DIR + 'assets/vendor/bootstrap-select/css/bootstrap-select.min.css'
],
function(){
if($.isFunction($.fn['selectpicker'])){
$(function(){
$(id).each(function(){
var _this = $(this),
opts = {
'display': 'static',
'actionsBox': true,
'liveSearch': true,
'liveSearchPlaceholder': 'Arayın..',
'hideDisabled': false,
'selectAllText': 'Tümünü Seç',
'selectAllClass': 'btn-outline-primary',
'deselectAllText': 'Seçimleri Kaldır',
'deselectAllClass': 'btn-outline-danger',
'noneSelectedText': 'Hiçbir şey seçilmedi!',
'noneResultsText': '{0} ile eşleşen bir seçenek bulunamadı!',
'countSelectedText': function (numSelected, numTotal) {
return '{0} öğe seçildi';
}
},
pluginOptions = _this.data('plugin-options');
if(pluginOptions)
opts = $.extend(true,{}, opts, pluginOptions);
_this.selectpicker(opts);
});
});
}
});
});
}
(function($){
'use strict';
if($('[data-plugin-multiselect]').length>0){
multiSelect('[data-plugin-multiselect]');
}
}).apply(this, [jQuery]);
// Input Mask
(function($){
'use strict';
if($('[data-plugin-inputmask]').length>0){
$.getScript([
THEME_DIR + 'assets/vendor/jquery-inputmask/jquery.inputmask.min.js'
],
function(){
$.getScript([
THEME_DIR + 'assets/vendor/jquery-inputmask/inputmask.phone.extensions.min.js'
],
function(){
if($.isFunction($.fn['inputmask'])){
Inputmask.extendAliases({
phonetr: {
alias: "abstractphone",
countrycode: "90",
phoneCodes: [
{
mask: "+90(###)-###-####",
cc: "TR",
cd: "Turkey"
}
]
}
});
$(function(){
$('[data-plugin-inputmask]').each(function(){
var _this = $(this),
opts = {},
pluginOptions = _this.data('plugin-options');
if(pluginOptions)
opts = $.extend(true,{}, opts, pluginOptions);
_this.inputmask(opts);
});
});
}
})
});
}
}).apply(this, [jQuery]);
// Color Picker
(function($){
'use strict';
if($('[data-plugin-colorpicker]').length>0){
$.getScript([
THEME_DIR + 'assets/vendor/bootstrap-colorpicker/js/bootstrap-colorpicker.min.js'
],
function(){
$.getCss([
THEME_DIR + 'assets/vendor/bootstrap-colorpicker/css/bootstrap-colorpicker.css'
],
function(){
if($.isFunction($.fn['colorpicker'])){
$(function(){
$('[data-plugin-colorpicker]').each(function(){
var _this = $(this),
opts = {},
pluginOptions = _this.data('plugin-options');
if(pluginOptions)
opts = $.extend(true,{}, opts, pluginOptions);
_this.colorpicker(opts);
});
});
}
})
});
}
}).apply(this, [jQuery]);
//Touch Spin
(function($){
'use strict';
if($('[data-plugin-touchspin]').length>0){
$.getScript([
THEME_DIR + 'assets/vendor/bootstrap-touchspin/jquery.bootstrap-touchspin.min.js'
],
function(){
$.getCss([
THEME_DIR + 'assets/vendor/bootstrap-touchspin/jquery.bootstrap-touchspin.min.css'
],
function(){
if($.isFunction($.fn['TouchSpin'])){
$(function(){
$('[data-plugin-touchspin]').each(function(){
var _this = $(this),
opts = {
verticalup: '+',
verticaldown: '-',
verticalupclass: 'btn btn-outline-default',
verticaldownclass: 'btn btn-outline-default',
buttonup_txt: '',
buttondown_txt: '',
buttonup_class: 'btn btn-outline-default pl-2 pr-2',
buttondown_class: 'btn btn-outline-default pl-2 pr-2',
firstclickvalueifempty: parseInt(_this.attr('placeholder'))
},
pluginOptions = _this.data('plugin-options');
if(pluginOptions)
opts = $.extend(true,{}, opts, pluginOptions);
_this.TouchSpin(opts);
});
});
}
})
});
}
}).apply(this, [jQuery]);
// Slider
(function(theme, $) {
theme = theme || {};
var instanceName = '__slider';
var PluginSlider = function(_el, opts) {
return this.initialize(_el, opts);
};
PluginSlider.defaults = {
};
PluginSlider.prototype = {
initialize: function(_el, opts) {
if ( _el.data( instanceName ) ) {
return this;
}
this._el = _el;
this
.setVars()
.setData()
.setOptions(opts)
.build();
return this;
},
setVars: function() {
var $output = this._el.data('plugin-slider-output');
this.$output = this._el.find($output) ? this._el.find($output) : null;
return this;
},
setData: function() {
this._el.data(instanceName, this);
return this;
},
setOptions: function(opts) {
var _self = this;
this.options = $.extend( true, {}, PluginSlider.defaults, opts );
if ( this.$output ) {
$.extend( this.options, {
slide: function( event, ui ) {
_self.onSlide( event, ui );
}
});
}
return this;
},
build: function() {
this._el.slider( this.options );
return this;
},
onSlide: function( event, ui ) {
if ( !ui.values ) {
this.$output.val( ui.value );
} else {
this.$output.val( ui.values[ 0 ] + '/' + ui.values[ 1 ] );
}
this.$output.trigger('change');
}
};
// expose to scope
$.extend(theme, {
PluginSlider: PluginSlider
});
// jquery plugin
$.fn.pluginSlider = function(opts) {
return this.each(function() {
var _this = $(this);
if (_this.data(instanceName)) {
return _this.data(instanceName);
} else {
return new PluginSlider(_this, opts);
}
});
}
}).apply(this, [window.theme, jQuery]);
(function($){
'use strict';
if($('[data-plugin-slider]').length>0){
if($.isFunction($.fn['slider'])){
$(function(){
$('[data-plugin-slider]').each(function(){
var _this = $(this),
opts = {range: true},
pluginOptions = _this.data('plugin-options');
if(pluginOptions)
opts = $.extend(true,{}, opts, pluginOptions);
_this.pluginSlider(opts);
});
});
}
}
}).apply(this, [jQuery]);
// Tooltip
(function($){
'use strict';
if($('[data-plugin-tooltip]').length>0){
if($.isFunction($.fn['tooltip'])){
$(function(){
$('[data-plugin-tooltip]').each(function(){
var _this = $(this);
_this.tooltip();
});
});
}
}
}).apply(this, [jQuery]);
// Uppercase
(function($){
'use strict';
if($('[data-plugin-buyuk-harf]').length>0){
$('[data-plugin-buyuk-harf]').each(function(){
var _this = $(this);
_this.on('ready load keyup keydown keypress change', function () {
var data = $(this).val().substr(0, 11).replace(/ö/g, 'o').replace(/ç/g, 'c').replace(/ş/g, 's').replace(/ğ/g, 'g').replace(/ü/g, 'u').replace(/Ö/g, 'O').replace(/Ç/g, 'C').replace(/Ş/g, 'S').replace(/İ/g, 'I').replace(/Ğ/g, 'G').replace(/Ü/g, 'U').replace(/([^a-zA-Z0-9 \.\-_])/g, '').replace(/ /g, '').toUpperCase();
$(this).val(data);
});
});
}
}).apply(this, [jQuery]);
// polyfill Object.keys to get option keys in IE<9
var objectKeys = function(obj) {
if (Object.keys) {
return Object.keys(obj);
} else {
var key, keys = [];
for (key in obj) { keys.push(key); }
return keys;
}
};
var isObject = function(obj) { return obj === Object(obj); }; // true for Objects and Arrays
var isUndefined = function(obj) { return obj === void 0; }; // safe check for undefined values
var isValidArrayIndex = function(val) { return /^[0-9]+$/.test(String(val)); }; // 1,2,3,4 ... are valid array indexes
var isArray = Array.isArray || function(obj) { return Object.prototype.toString.call(obj) === "[object Array]"; };
$(document).on('click', '#file-select', function (e){
$(document).find('.selected-file').trigger('click');
}),
$(document).on('click', '#file-remove', function (e){
$(document).find('#file-remove').addClass('d-none');
$(document).find('.selected-file-name').val('Dosya Seçilmedi');
$(document).find('.selected-file').val('');
}),
$(document).on('change', '.selected-file', function (e){
var file = e.target.files[0] ? e.target.files[0] : null;
if(!file){
$(document).find('.selected-file-name').val('Dosya Seçilmedi');
}else if(fileOptions['acceptedMimeTypes']!==undefined && $.inArray(file.type.toLowerCase(), fileOptions['acceptedMimeTypes'])=='-1'){
notification('error', 'İŞLEM HATASI!', '' + file.name + ' Başlıklı dosya izin verilen dosya türlerinden değildir.');
$(document).find('#file-remove').addClass('d-none');
$(document).find('.selected-file-name').val('Dosya Seçilmedi');
$(document).find('.selected-file').val('');
}else if(file.size>fileOptions['size']){
notification('error', 'İŞLEM HATASI!', 'Yüklenecek dosyanın boyutu en fazla ' + fileOptions['sizeText'] + ' olmalıdır.
' + file.name + ' Başlıklı dosya bu boyuttan büyüktür.');
$(document).find('#file-remove').addClass('d-none');
$(document).find('.selected-file-name').val('Dosya Seçilmedi');
$(document).find('.selected-file').val('');
}else{
$(document).find('#file-remove').removeClass('d-none');
$(document).find('.selected-file-name').val(file.name);
}
});
$(document).ready(function() {
$("#whatsapp-toggle-1").click(function() {
$("#whatsapp-ticket-button-text").toggle(1000);
$(".whatsapp-ticket-ballon").toggle(1000);
});
$("#whatsapp-toggle-2").click(function() {
$("#whatsapp-ticket-button-text").toggle(1000);
$(".whatsapp-ticket-ballon").toggle(1000);
});
});