📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
esnafbul.demodesign.com.tr
/
panel
/
src
/
js
📝
tom-select.js
← Geri Dön
import TomSelect from "tom-select"; (function () { "use strict"; // Tom Select $(".tom-select").each(function () { let options = { plugins: { dropdown_input: {}, }, }; if ($(this).data("placeholder")) { options.placeholder = $(this).data("placeholder"); } if ($(this).attr("multiple") !== undefined) { options = { ...options, plugins: { ...options.plugins, remove_button: { title: "Remove this item", }, }, persist: false, create: true, onDelete: function (values) { return confirm( values.length > 1 ? "Are you sure you want to remove these " + values.length + " items?" : 'Are you sure you want to remove "' + values[0] + '"?' ); }, }; } if ($(this).data("header")) { options = { ...options, plugins: { ...options.plugins, dropdown_header: { title: $(this).data("header"), }, }, }; } new TomSelect(this, options); }); })();
💾 Kaydet
İptal
📝 Yeniden Adlandır
İptal
Kaydet
🔐 Dosya İzinleri (chmod)
İzin Değeri:
Hızlı Seçim:
777
755
644
600
777
= Herkes okur/yazar/çalıştırır
755
= Sahip tam, diğerleri okur/çalıştırır
644
= Sahip okur/yazar, diğerleri okur
600
= Sadece sahip okur/yazar
İptal
Uygula