Campus Notification System - Presentation Guide

Step 1 of 6

Welcome to Our System Presentation

This guided tour will walk you through our Campus Notification System - a comprehensive solution designed to streamline communication across educational institutions.

Real-time Notifications

Instant alerts for campus events

Centralized Management

Unified platform for communications

Role-based Access

Different interfaces for users

Let's begin the tour to see how we've designed and implemented this solution.

Project Overview Section

The Overview section provides the foundation of our project.

Project Objectives

Clear goals and aims

Scope Definition

Boundaries of implementation

Target Users

Student, faculty, admin groups

Key Features

Core system functionalities

This section sets the context for everything that follows.

System Design Diagrams

Our design process is documented through two key diagrams:

Data Flow Diagram (DFD)

How information moves through the system

Entity Relationship Diagram (ERD)

Database structure and relationships

These diagrams demonstrate our systematic approach to designing both process flow and data structure.

SRS Documentation

The System Documentation contains our complete Software Requirements Specification:

Functional Requirements

What the system must do

Non-Functional Requirements

Performance and usability

Testing Strategy

Ensuring system reliability

Deployment Plan

Implementation procedures

This comprehensive documentation ensures all stakeholders understand system capabilities and constraints.

Implementation & Iterations

See how we brought our design to life through iterative development:

Architecture

Three-tier architecture

Technologies

Stack and tools used

Development Phases

Iterative approach

We follow an agile methodology with clear iterations, incorporating feedback and improving functionality.

How to Navigate This Presentation

Now that you understand what's included, here's how to navigate:

Navigation Tabs

Use the blue tabs to jump between sections. Click any tab to view that section.

Replay This Guide

Click the circular button at the bottom-right to restart this guide anytime.

You're now ready to explore our Campus Notification System presentation.

Presentation Tip

Each section includes detailed explanations suitable for evaluation.

Group 4 - Software Development Course Project

This presentation demonstrates our Campus Notification System developed as part of the Software Development course at Nalikule College of Education.

PB

PETER BOWA

Team Lead & Backend Developer

SC

SMITHY CHISON

Frontend Developer & UI Designer

SA

STEPHANO ALICK

Database Administrator & Tester

BM

BLESSINGS McFORD

Documentation & Project Coordinator

About this presentation: This interactive presentation showcases our Campus Notification System designed to address communication challenges in educational institutions. Navigate through sections using the tabs above to explore project overview, system design, documentation, and implementation details.

Use the circular replay button at the bottom-right if you need to revisit the navigation guide.

Group 4 - Nalikule College

Project Overview

Introduction

Project Objectives

Develop a centralized notification system for campus-wide communications, enabling real-time alerts for events, emergencies, and announcements to students, faculty, and staff.

Scope

The system includes user management, notification creation and distribution, event scheduling, and reporting functionalities for educational institutions.

Target Users

Students, Faculty Members, Administrative Staff, and System Administrators with role-based access control and customized interfaces.

Key Features

Real-time notifications, multi-channel delivery (email, SMS, in-app), event management, user preferences, and comprehensive reporting.

System Architecture Overview

Three-Tier Architecture

Presentation Layer: Web interface and mobile apps
Application Layer: Business logic and API services
Data Layer: MySQL database and file storage

Data Flow Diagram (DFD)

Level 1

System Data Flow

Users

Students, Faculty, Admin

Notification System

Process & Management

Database

Data Storage

Inputs

  • User registration data
  • Notification content
  • Event scheduling information
  • User preferences

Outputs

  • Notifications (Email, SMS, In-app)
  • Event reminders
  • System reports
  • Confirmation messages

Data Stores

  • User database
  • Notification archive
  • Event schedules
  • Audit logs

Entity Relationship Diagram (ERD)

Database Schema

Database Tables

Users Table

  • user_id (PK)
  • username
  • email
  • role
  • created_at

Events Table

  • event_id (PK)
  • event_name
  • description
  • event_date
  • created_by

Notifications Table

  • notification_id (PK)
  • title
  • content
  • type
  • sent_at

Registrations Table

  • registration_id (PK)
  • user_id (FK)
  • event_id (FK)
  • status
  • registered_at

System Documentation

SRS v2.0

Software Requirements Specification

Functional Requirements

  • FR-01: User registration and authentication system
  • FR-02: Role-based access control (Student, Faculty, Admin)
  • FR-03: Create, edit, and delete notifications
  • FR-04: Schedule notifications for future delivery
  • FR-05: Multi-channel notification delivery (Email, SMS, In-app)
  • FR-06: Event management and calendar integration
  • FR-07: User notification preferences management
  • FR-08: Real-time notification dashboard
  • FR-09: Notification analytics and reporting
  • FR-10: Bulk notification sending

Non-Functional Requirements

  • NFR-01: System availability of 99.5% uptime
  • NFR-02: Response time under 2 seconds for all operations
  • NFR-03: Support for 10,000+ concurrent users
  • NFR-04: Data encryption for all sensitive information
  • NFR-05: Comprehensive audit logging
  • NFR-06: Cross-browser compatibility (Chrome, Firefox, Safari)
  • NFR-07: Mobile-responsive design
  • NFR-08: Backup and recovery procedures
  • NFR-09: Scalable architecture for future growth
  • NFR-10: Comprehensive documentation

Testing Strategy

Unit Testing

  • Individual component testing
  • Code coverage target: 80%+
  • PHPUnit for backend tests
  • Jest for frontend tests

Integration Testing

  • API endpoint testing
  • Database integration tests
  • Third-party service integration
  • End-to-end workflow testing

User Acceptance Testing

  • Real user scenario testing
  • Feedback collection mechanism
  • Usability testing sessions
  • Performance under load

Security Testing

  • Penetration testing
  • SQL injection prevention
  • XSS vulnerability testing
  • Authentication bypass testing

Deployment & Operations

  • Environment: Linux server with Apache/Nginx
  • Database: MySQL 8.0+ with daily backups
  • Backup Strategy: Full daily + incremental hourly backups
  • Monitoring: Application performance monitoring
  • Scalability: Load balancer ready architecture
  • Maintenance: Scheduled monthly maintenance windows

Security Measures

  • HTTPS enforcement for all communications
  • Password hashing with bcrypt algorithm
  • SQL injection prevention using prepared statements
  • Cross-site scripting (XSS) protection
  • CSRF tokens for all form submissions
  • Rate limiting on authentication endpoints
  • Regular security audits and updates

Implementation

Technical Details

Architecture

Three-tier architecture separating presentation, business logic, and data layers for maintainability and scalability.

  • Frontend: HTML5, CSS3, JavaScript, Bootstrap 5
  • Backend: PHP 8.1+
  • Database: MySQL 8.0 with InnoDB engine
  • APIs: RESTful API for mobile integration
  • Caching: Redis for session and data caching

Technologies Used

  • Development: Git for version control, Composer for PHP dependencies
  • Testing: PHPUnit, Jest, Selenium for automated testing
  • Deployment: Docker containers, CI/CD with GitHub Actions
  • Monitoring: New Relic for APM, Sentry for error tracking
  • Communication: Twilio API for SMS, SendGrid for email

System Components

User Interface

Responsive web application accessible from any device

Application Server

Business logic, API endpoints, and processing engine

Database Layer

Secure data storage with backup and recovery

Notification Engine

Multi-channel delivery system

Development Iterations

Agile Methodology

Iteration 1: Foundation

Duration: Weeks 1-3

  • Project setup and environment configuration
  • Basic user authentication system
  • Database schema design and implementation
  • Core notification data models
  • Basic administrative interface

Iteration 2: Core Features

Duration: Weeks 4-6

  • Notification creation and management
  • User role-based access control
  • Email notification delivery
  • Basic event scheduling
  • User profile management

Iteration 3: Enhanced Features

Duration: Weeks 7-9

  • SMS notification integration
  • Advanced scheduling with recurrence
  • Bulk notification sending
  • Notification templates
  • Mobile-responsive design

Iteration 4: Polish & Testing

Duration: Weeks 10-12

  • Comprehensive testing suite
  • Performance optimization
  • Security enhancements
  • Analytics and reporting
  • User acceptance testing

Key Features

Functionality Highlights

Real-time Notifications

Instant delivery of important announcements and alerts through multiple channels including email, SMS, and in-app notifications.

  • Priority-based notification system
  • Delivery status tracking
  • Read receipts for important messages
  • Emergency alert override system

Event Management

Comprehensive event scheduling with automatic reminders and registration tracking for campus events.

  • Recurring event support
  • Automated reminder system
  • Attendance tracking and reporting
  • Calendar integration

User Preferences

Customizable notification settings allowing users to control what they receive and how they receive it.

  • Notification channel preferences
  • Do-not-disturb scheduling
  • Category-based filtering
  • Emergency override options

Analytics & Reporting

Comprehensive dashboards and reports for administrators to track notification effectiveness and user engagement.

  • Delivery success rate tracking
  • User engagement metrics
  • Event attendance reports
  • System usage statistics

Project Achievements

Successfully Implemented
  • Complete user authentication system
  • Multi-channel notification delivery
  • Role-based access control
  • Responsive web interface
  • Comprehensive testing suite
Technical Excellence
  • Clean, maintainable codebase
  • Comprehensive documentation
  • Security best practices implemented
  • Scalable architecture design
  • Performance optimization
24
Upcoming Events
1,240
Active Users
86
New Notifications

Upcoming Events

  • Orientation Day
    Dec 15, 2025 Main Hall
  • Health Clinic
    Dec 22, 2025 Health Center
  • Final Exams
    Dec 20-24, 2025 Various Venues

Recent Notifications

Library Hours Changed
New library schedule effective next week
Assignment Reminder
Submit by Dec 18, 2025
Registration Confirmed
You are registered for Health Clinic

Quick Actions

About This Prototype

This is a working prototype of the Campus Notification System dashboard. It simulates real-time notifications, event management, and user interactions. Click the buttons to experience different system functionalities.