Priority File Manager

📁 public_html
Base Directory:
/home/ecedu/public_html/cce/Models
NameTypeSizeActions
📁 .. Folder -
📄 BasicManager.php File 2087
Edit Download
📄 DB.php File 939
Edit Download
📄 DetailsManager.php File 4312
Edit Download
📄 DeviceAuth.php File 698
Edit Download
📄 Functions.php File 8554
Edit Download
📄 ImageManager.php File 2862
Edit Download
📄 News.php File 13517
Edit Download
📄 NewsModel.php File 9228
Edit Download
(int)$_SESSION['timeout']) { return false; } return true; } /** * تنظيف المحتوى من الـ HTML مع الحفاظ على فواصل الأسطر */ public function cleanContent(string $content): string { $content = nl2br($content); $content = preg_replace('#(?:\s*?){2,}#', ' ', $content); return trim(strip_tags($content)); } public function htmlToText(string $content): string { return trim(strip_tags($content)); } /** * إزالة وسوم معينة من HTML لكن ترك الباقي مصقولاً */ public function cleanHtml(string $content): string { return trim(preg_replace( '/<\/?(figure|table|tbody|thead|tr|td)([^>]*)>/i', '', $content )); } function sanitizeHtml(string $html): string { // قائمة الوسوم المسموحة $allowedTags = '