Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Your IP : 18.119.157.241
<?php
session_start();
#.............................................................................
# Register Syntax:
# Param #1 - Action name (user friendly)
# Param #2 - mapping to internal function
# string delimited with "."
# [0] - module name (aka .php file) - with relative source paths from the app base path
# [1] - function name to be executed
# [2] - comments/description about the Action
# All the actions defined here are executed by CRequestBroker::ExecuteAction
#.............................................................................
//////LOGIN TO SMS PORTAL\\\\\\
CRequestBroker::RegisterAction("signin", "src/login.signin");
//====== Exam Application Form ========//
CRequestBroker::RegisterAction("getExamapplication", "src/examapp.getExamapplication");
CRequestBroker::RegisterAction("getSubjectNamesForSelectedSub", "src/examapp.getSubjectNamesForSelectedSub");
CRequestBroker::RegisterAction("sendExamAppDetails", "src/examapp.sendExamAppDetails");
CRequestBroker::RegisterAction("submitExamApplication", "src/examapp.submitExamApplication");
CRequestBroker::RegisterAction("DisplayApplications", "src/yourExmAppList.DisplayApplications");
CRequestBroker::RegisterAction("getDropDownList", "src/onlineApp.getDropDownList");
//
|