<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet"
        integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css"
        integrity="sha512-SzlrxWUlpfuzQ+pcUCosxcglQRNAq/DZjVsC0lE40xsADsfeQoEypE+enwcOiGjk/bSuGGKHEyjSoQ1zVisanQ=="
        crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
</html>
<?php

$h = "[[softdbhost]]";
$d = "[[softdb]]";
$u = "[[softdbuser]]";
$p = "[[softdbpass]]";

$calendar_title = "[[site_name]]";

$calendar_email = "[[admin_email]]";

$calendar_url = "[[softurl]]/";

$table_prefix = "[[dbprefix]]";

$default_module = 2;

// display sub-category events along with events in selected category
$include_child_categories = true;

// display events in parent category along with events in selected category
$include_parent_categories = true;

// How to display the titles on the header of the calendar
$week_titles[] = "Sunday";
$week_titles[] = "Monday";
$week_titles[] = "Tuesday";
$week_titles[] = "Wednesday";
$week_titles[] = "Thursday";
$week_titles[] = "Friday";
$week_titles[] = "Saturday";

//used with the quarter view
$week_titles_s[] = "Sun";
$week_titles_s[] = "Mon";
$week_titles_s[] = "Tue";
$week_titles_s[] = "Wed";
$week_titles_s[] = "Thu";
$week_titles_s[] = "Fri";
$week_titles_s[] = "Sat";

//used with the year view
$week_titles_ss[] = "S";
$week_titles_ss[] = "M";
$week_titles_ss[] = "T";
$week_titles_ss[] = "W";
$week_titles_ss[] = "T";
$week_titles_ss[] = "F";
$week_titles_ss[] = "S";

// FCK Editor can be used for HTML of event text (Depreciated)
$fck_editor_path = "";

$fck_editor_toolbar = "Basic"; // Basic or Default

// CK Editor now can be used for HTML

$ck_editor_path = "";

// CKEditor 5 (free Classic build). When set, replaces CKEditor 4 for description fields.
$ck_editor_5_enabled = false;
$ck_editor_5_url = "https://cdn.ckeditor.com/ckeditor5/47.6.1";
$ck_editor_5_license_key = ""; // Get free key at https://portal.ckeditor.com/checkout?plan=free

// The default start category for the event calendar
$start_category_id = 1;

// Language File
$language = "lang/en_us.php";

// Day/week view start hour
$day_week_start_hour = 8;

?>