├── Assets ├── js │ ├── MyJs.js │ ├── tests │ │ ├── unit │ │ │ ├── .jshintrc │ │ │ ├── phantom.js │ │ │ └── alert.js │ │ ├── visual │ │ │ ├── alert.html │ │ │ ├── popover.html │ │ │ ├── carousel.html │ │ │ ├── tooltip.html │ │ │ └── button.html │ │ └── README.md │ ├── faPrint.js │ ├── npm.js │ ├── AjaxSearch.js │ ├── transition.js │ ├── alert.js │ └── popover.js ├── img │ ├── 3.png │ ├── 05.jpg │ ├── lkpjkd.png │ ├── user.png │ ├── checklist.png │ ├── 17cricket-600.jpg │ ├── Tow Computers.jpg │ ├── facebook-like.png │ ├── 20190720_221301.jpg │ ├── bbc-blocks-dark.png │ ├── facebook-like-filled.png │ ├── _Profile_Picture │ │ ├── team1.jpg │ │ └── Tow Computers.jpg │ ├── uh60colombiapolice_policia.jpg │ ├── warmerdam-mockup-500x333.jpg │ ├── VideoCapture_20191124-110130.jpg │ ├── VideoCapture_20191124-110416.jpg │ ├── harissa_lamb_with_92207_16x9.jpg │ ├── southernindianmixedv_86569_16x9.jpg │ ├── prawn_saffron_biryani_82760_16x9.jpg │ ├── 87d6b69f-5e92-40f9-9dee-21c716afb707.jpg │ └── 1526762_1546604135591154_3974891804158661746_n.jpg ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── fontawesome-webfont.woff2 │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── Ajax Search │ ├── Logout.php │ ├── disLike.php │ ├── getLogin.php │ ├── addLike.php │ ├── addComment.php │ ├── getSignup.php │ └── fetch-news.php ├── _Partial Components │ ├── conn.php │ ├── Format.php │ ├── Database.php │ └── Footer.php └── CSS │ └── News_Stjjjjjyle.CSS ├── Administrator ├── _Partial Components │ ├── CRUD.php │ ├── conn.php │ ├── Format.php │ ├── Footer.php │ ├── Database.php │ └── Navigation.php ├── Logout.php ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── fontawesome-webfont.woff2 │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── Dari │ ├── Logout.php │ ├── _Partial Components │ │ ├── conn.php │ │ ├── Format.php │ │ ├── Footer.php │ │ ├── Database.php │ │ └── Navigation.php │ ├── Delete │ │ ├── DeleteMail.php │ │ ├── DeleteUsers.php │ │ ├── DeleteQuestion.php │ │ ├── DeleteTeacher.php │ │ ├── DeleteFaculty.php │ │ ├── DeleteSubject.php │ │ └── DeleteResult.php │ ├── Actions │ │ ├── EnableUser.php │ │ ├── DisableUser.php │ │ ├── EnableSubject.php │ │ ├── StandardUser.php │ │ ├── AdministratorUser.php │ │ └── DisableSubject.php │ ├── Ajax Search │ │ ├── addFaculty.php │ │ ├── editFaculty.php │ │ ├── addTeacher.php │ │ ├── addSubject.php │ │ ├── editTeachers.php │ │ ├── editSubjects.php │ │ ├── addQuestions.php │ │ ├── editQuestions.php │ │ ├── addResult.php │ │ ├── fetch-mail.php │ │ ├── fetch-teacher.php │ │ ├── fetch-QuizResult.php │ │ └── fetch-question.php │ ├── About-Us.php │ ├── js │ │ └── AjaxSearch.js │ ├── Add-Faculty.php │ └── View-Mail.php ├── Pashto │ ├── Logout.php │ ├── _Partial Components │ │ ├── conn.php │ │ ├── Format.php │ │ ├── Footer.php │ │ ├── Database.php │ │ └── Navigation.php │ ├── Delete │ │ ├── DeleteMail.php │ │ ├── DeleteNews.php │ │ ├── DeleteUsers.php │ │ ├── DeleteCategory.php │ │ └── DeleteComment.php │ ├── Actions │ │ ├── EnableUser.php │ │ ├── StandardUser.php │ │ ├── addCategory.php │ │ ├── AdministratorUser.php │ │ ├── editCategory.php │ │ ├── addNews.php │ │ ├── editNews.php │ │ └── addResult.php │ ├── js │ │ └── AjaxSearch.js │ ├── Ajax Search │ │ ├── fetch-Category.php │ │ ├── fetch-mail.php │ │ ├── fetch-News.php │ │ └── fetch-QuizResult.php │ ├── About-Us.php │ ├── Add-Category.php │ └── View-Mail.php ├── Delete │ ├── DeleteMail.php │ ├── DeleteUser.php │ ├── DeleteQuestion.php │ ├── DeleteTeacher.php │ ├── DeleteNews.php │ ├── DeleteSubject.php │ ├── DeleteCategory.php │ └── DeleteResult.php ├── Ajax Search │ ├── addCategory.php │ ├── editCategory.php │ ├── addNews.php │ ├── editNews.php │ ├── addSubject.php │ ├── fetch-Category.php │ ├── fetch-News.php │ └── fetch-QuizResult.php ├── Actions │ ├── addCategory.php │ └── editTeachers.php ├── js │ └── AjaxSearch.js ├── About.php ├── Add-Category.php └── Edit-Category.php ├── .htaccess ├── _Partial Components ├── conn.php ├── Format.php ├── Database.php └── Footer.php ├── updatePass.php ├── Dari ├── updatePass.php ├── index.php ├── Forgot-password.php └── Reset-pass.php ├── Pashto ├── updatePass.php ├── _Partial Components │ ├── Format.php │ ├── Database.php │ ├── Footer.php │ └── Method.php ├── News.php ├── index.php ├── About-us.php ├── Term.php ├── Contact-us.php ├── CSS │ └── News_Style.CSS ├── Forgot-password.php └── Reset-pass.php ├── About-us.php ├── Privacy.php ├── Contact-us.php ├── Forgot-password.php ├── NewsERD.txt ├── Reset-pass.php └── MyProfile.php /Assets/js/MyJs.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Administrator/_Partial Components/CRUD.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Assets/img/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nasratullah-Shafiq/news_portal/HEAD/Assets/img/3.png -------------------------------------------------------------------------------- /Assets/img/05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nasratullah-Shafiq/news_portal/HEAD/Assets/img/05.jpg -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- 1 | RewriteEngine on 2 | RewriteCond %{REQUEST_FILENAME} !-f 3 | RewriteRule ^([^\.]+)$ $1.php [NC,L] -------------------------------------------------------------------------------- /Assets/img/lkpjkd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nasratullah-Shafiq/news_portal/HEAD/Assets/img/lkpjkd.png -------------------------------------------------------------------------------- /Assets/img/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nasratullah-Shafiq/news_portal/HEAD/Assets/img/user.png -------------------------------------------------------------------------------- /Assets/img/checklist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nasratullah-Shafiq/news_portal/HEAD/Assets/img/checklist.png -------------------------------------------------------------------------------- /Assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nasratullah-Shafiq/news_portal/HEAD/Assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /Assets/img/17cricket-600.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nasratullah-Shafiq/news_portal/HEAD/Assets/img/17cricket-600.jpg -------------------------------------------------------------------------------- /Assets/img/Tow Computers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nasratullah-Shafiq/news_portal/HEAD/Assets/img/Tow Computers.jpg -------------------------------------------------------------------------------- /Assets/img/facebook-like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nasratullah-Shafiq/news_portal/HEAD/Assets/img/facebook-like.png -------------------------------------------------------------------------------- /Assets/img/20190720_221301.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nasratullah-Shafiq/news_portal/HEAD/Assets/img/20190720_221301.jpg -------------------------------------------------------------------------------- /Assets/img/bbc-blocks-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nasratullah-Shafiq/news_portal/HEAD/Assets/img/bbc-blocks-dark.png -------------------------------------------------------------------------------- /Administrator/Logout.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Administrator/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nasratullah-Shafiq/news_portal/HEAD/Administrator/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /Assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nasratullah-Shafiq/news_portal/HEAD/Assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /Assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nasratullah-Shafiq/news_portal/HEAD/Assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /Assets/img/facebook-like-filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nasratullah-Shafiq/news_portal/HEAD/Assets/img/facebook-like-filled.png -------------------------------------------------------------------------------- /Administrator/Dari/Logout.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Administrator/Pashto/Logout.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nasratullah-Shafiq/news_portal/HEAD/Assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /Assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nasratullah-Shafiq/news_portal/HEAD/Assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /Assets/img/_Profile_Picture/team1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nasratullah-Shafiq/news_portal/HEAD/Assets/img/_Profile_Picture/team1.jpg -------------------------------------------------------------------------------- /_Partial Components/conn.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Assets/img/uh60colombiapolice_policia.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nasratullah-Shafiq/news_portal/HEAD/Assets/img/uh60colombiapolice_policia.jpg -------------------------------------------------------------------------------- /Assets/img/warmerdam-mockup-500x333.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nasratullah-Shafiq/news_portal/HEAD/Assets/img/warmerdam-mockup-500x333.jpg -------------------------------------------------------------------------------- /Administrator/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nasratullah-Shafiq/news_portal/HEAD/Administrator/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /Administrator/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nasratullah-Shafiq/news_portal/HEAD/Administrator/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /Assets/Ajax Search/Logout.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Assets/_Partial Components/conn.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Assets/img/VideoCapture_20191124-110130.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nasratullah-Shafiq/news_portal/HEAD/Assets/img/VideoCapture_20191124-110130.jpg -------------------------------------------------------------------------------- /Assets/img/VideoCapture_20191124-110416.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nasratullah-Shafiq/news_portal/HEAD/Assets/img/VideoCapture_20191124-110416.jpg -------------------------------------------------------------------------------- /Assets/img/harissa_lamb_with_92207_16x9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nasratullah-Shafiq/news_portal/HEAD/Assets/img/harissa_lamb_with_92207_16x9.jpg -------------------------------------------------------------------------------- /Assets/js/tests/unit/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends" : "../../.jshintrc", 3 | "devel" : true, 4 | "es3" : false, 5 | "qunit" : true 6 | } 7 | -------------------------------------------------------------------------------- /Administrator/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nasratullah-Shafiq/news_portal/HEAD/Administrator/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /Administrator/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nasratullah-Shafiq/news_portal/HEAD/Administrator/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /Assets/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nasratullah-Shafiq/news_portal/HEAD/Assets/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Assets/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nasratullah-Shafiq/news_portal/HEAD/Assets/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Assets/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nasratullah-Shafiq/news_portal/HEAD/Assets/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Assets/img/_Profile_Picture/Tow Computers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nasratullah-Shafiq/news_portal/HEAD/Assets/img/_Profile_Picture/Tow Computers.jpg -------------------------------------------------------------------------------- /Assets/img/southernindianmixedv_86569_16x9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nasratullah-Shafiq/news_portal/HEAD/Assets/img/southernindianmixedv_86569_16x9.jpg -------------------------------------------------------------------------------- /Administrator/Dari/_Partial Components/conn.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Administrator/_Partial Components/conn.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Assets/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nasratullah-Shafiq/news_portal/HEAD/Assets/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /Assets/img/prawn_saffron_biryani_82760_16x9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nasratullah-Shafiq/news_portal/HEAD/Assets/img/prawn_saffron_biryani_82760_16x9.jpg -------------------------------------------------------------------------------- /Administrator/Pashto/_Partial Components/conn.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Assets/img/87d6b69f-5e92-40f9-9dee-21c716afb707.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nasratullah-Shafiq/news_portal/HEAD/Assets/img/87d6b69f-5e92-40f9-9dee-21c716afb707.jpg -------------------------------------------------------------------------------- /Administrator/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nasratullah-Shafiq/news_portal/HEAD/Administrator/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Administrator/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nasratullah-Shafiq/news_portal/HEAD/Administrator/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Administrator/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nasratullah-Shafiq/news_portal/HEAD/Administrator/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Administrator/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nasratullah-Shafiq/news_portal/HEAD/Administrator/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /Assets/img/1526762_1546604135591154_3974891804158661746_n.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nasratullah-Shafiq/news_portal/HEAD/Assets/img/1526762_1546604135591154_3974891804158661746_n.jpg -------------------------------------------------------------------------------- /Administrator/Delete/DeleteMail.php: -------------------------------------------------------------------------------- 1 | delContactUs($Contact_ID); 8 | } 9 | 10 | header('Location: ../Mail.php'); 11 | ?> 12 | -------------------------------------------------------------------------------- /Administrator/Delete/DeleteUser.php: -------------------------------------------------------------------------------- 1 | delUsers($del_id); 8 | } 9 | 10 | header('Location: ../Manage-Users.php'); 11 | ?> 12 | 13 | -------------------------------------------------------------------------------- /Administrator/Dari/Delete/DeleteMail.php: -------------------------------------------------------------------------------- 1 | delContactUs($Contact_ID); 8 | } 9 | 10 | header('Location: ../Mail.php'); 11 | ?> 12 | -------------------------------------------------------------------------------- /Administrator/Dari/Delete/DeleteUsers.php: -------------------------------------------------------------------------------- 1 | delUsers($del_id); 8 | } 9 | 10 | header('Location: ../Manage-Users.php'); 11 | ?> 12 | 13 | -------------------------------------------------------------------------------- /Administrator/Pashto/Delete/DeleteMail.php: -------------------------------------------------------------------------------- 1 | delContactUs($Contact_ID); 8 | } 9 | 10 | header('Location: ../Mail.php'); 11 | ?> 12 | -------------------------------------------------------------------------------- /Administrator/Pashto/Delete/DeleteNews.php: -------------------------------------------------------------------------------- 1 | delNews($News_ID); 8 | } 9 | 10 | header('Location: ../Manage-News.php'); 11 | ?> 12 | 13 | -------------------------------------------------------------------------------- /Administrator/Pashto/Delete/DeleteUsers.php: -------------------------------------------------------------------------------- 1 | delUsers($del_id); 8 | } 9 | 10 | header('Location: ../Manage-Users.php'); 11 | ?> 12 | 13 | -------------------------------------------------------------------------------- /Administrator/Delete/DeleteQuestion.php: -------------------------------------------------------------------------------- 1 | delQuestions($Question_ID); 8 | } 9 | 10 | header('Location: ../Manage-Questions.php'); 11 | ?> 12 | 13 | -------------------------------------------------------------------------------- /Administrator/Delete/DeleteTeacher.php: -------------------------------------------------------------------------------- 1 | delTeachers($Teacher_ID); 9 | } 10 | 11 | header('Location: ../Manage-Teacher.php'); 12 | ?> 13 | 14 | -------------------------------------------------------------------------------- /Administrator/Dari/Actions/EnableUser.php: -------------------------------------------------------------------------------- 1 | 6 | enableUser($User_ID); 11 | } 12 | 13 | header('Location: ../Manage-Users.php'); 14 | ?> 15 | -------------------------------------------------------------------------------- /Administrator/Dari/Delete/DeleteQuestion.php: -------------------------------------------------------------------------------- 1 | delQuestions($Question_ID); 8 | } 9 | 10 | header('Location: ../Manage-Questions.php'); 11 | ?> 12 | 13 | -------------------------------------------------------------------------------- /Administrator/Dari/Delete/DeleteTeacher.php: -------------------------------------------------------------------------------- 1 | delTeachers($Teacher_ID); 9 | } 10 | 11 | header('Location: ../Manage-Teacher.php'); 12 | ?> 13 | 14 | -------------------------------------------------------------------------------- /Administrator/Pashto/Actions/EnableUser.php: -------------------------------------------------------------------------------- 1 | 6 | enableUser($User_ID); 11 | } 12 | 13 | header('Location: ../Manage-Users.php'); 14 | ?> 15 | -------------------------------------------------------------------------------- /Administrator/Dari/Actions/DisableUser.php: -------------------------------------------------------------------------------- 1 | 6 | disableUser($User_ID); 11 | } 12 | 13 | 14 | header('Location: ../Manage-Users.php'); 15 | ?> 16 | -------------------------------------------------------------------------------- /Administrator/Dari/Actions/EnableSubject.php: -------------------------------------------------------------------------------- 1 | 6 | enableSubject($Subject_ID); 11 | } 12 | 13 | header('Location: ../Manage-Subject.php'); 14 | ?> 15 | -------------------------------------------------------------------------------- /Administrator/Dari/Delete/DeleteFaculty.php: -------------------------------------------------------------------------------- 1 | 6 | delFaculty($Facutly_ID); 11 | } 12 | 13 | header('Location: ../Manage-Faculty.php'); 14 | ?> 15 | 16 | -------------------------------------------------------------------------------- /Assets/Ajax Search/disLike.php: -------------------------------------------------------------------------------- 1 | disLike($Like_ID); 11 | 12 | } 13 | ?> -------------------------------------------------------------------------------- /Administrator/Dari/Actions/StandardUser.php: -------------------------------------------------------------------------------- 1 | standardUser($User_ID); 8 | } 9 | else{ 10 | header('Location: ../Manage-Users.php'); 11 | } 12 | 13 | header('Location: ../Manage-Users.php'); 14 | ?> 15 | -------------------------------------------------------------------------------- /Administrator/Pashto/Actions/StandardUser.php: -------------------------------------------------------------------------------- 1 | standardUser($User_ID); 8 | } 9 | else{ 10 | header('Location: ../Manage-Users.php'); 11 | } 12 | 13 | header('Location: ../Manage-Users.php'); 14 | ?> 15 | -------------------------------------------------------------------------------- /updatePass.php: -------------------------------------------------------------------------------- 1 | updatePass($Password, $User_ID); 11 | } 12 | ?> -------------------------------------------------------------------------------- /Administrator/Ajax Search/addCategory.php: -------------------------------------------------------------------------------- 1 | addCategories($Category); 11 | 12 | } 13 | ?> -------------------------------------------------------------------------------- /Administrator/Pashto/Actions/addCategory.php: -------------------------------------------------------------------------------- 1 | addCategories($Category); 11 | 12 | } 13 | ?> -------------------------------------------------------------------------------- /Dari/updatePass.php: -------------------------------------------------------------------------------- 1 | updatePass($Password, $User_ID); 11 | } 12 | ?> -------------------------------------------------------------------------------- /Pashto/updatePass.php: -------------------------------------------------------------------------------- 1 | updatePass($Password, $User_ID); 11 | } 12 | ?> -------------------------------------------------------------------------------- /Assets/Ajax Search/getLogin.php: -------------------------------------------------------------------------------- 1 | userLogin($Email, $Password); 11 | } 12 | ?> -------------------------------------------------------------------------------- /Administrator/Dari/Actions/AdministratorUser.php: -------------------------------------------------------------------------------- 1 | 6 | adminUser($User_ID); 11 | } 12 | else{ 13 | header('Location: ../Manage-Users.php'); 14 | } 15 | 16 | header('Location: ../Manage-Users.php'); 17 | ?> 18 | -------------------------------------------------------------------------------- /Administrator/Pashto/Actions/AdministratorUser.php: -------------------------------------------------------------------------------- 1 | 6 | adminUser($User_ID); 11 | } 12 | else{ 13 | header('Location: ../Manage-Users.php'); 14 | } 15 | 16 | header('Location: ../Manage-Users.php'); 17 | ?> 18 | -------------------------------------------------------------------------------- /Assets/Ajax Search/addLike.php: -------------------------------------------------------------------------------- 1 | addLike($News_ID, $User_ID); 13 | 14 | } 15 | ?> -------------------------------------------------------------------------------- /Administrator/Actions/addCategory.php: -------------------------------------------------------------------------------- 1 | addCategory($Category, $Language); 11 | 12 | } 13 | ?> 14 | -------------------------------------------------------------------------------- /Administrator/Dari/Ajax Search/addFaculty.php: -------------------------------------------------------------------------------- 1 | addFaculty($Faculty, $Language); 11 | 12 | } 13 | ?> -------------------------------------------------------------------------------- /Administrator/Dari/Actions/DisableSubject.php: -------------------------------------------------------------------------------- 1 | 6 | disableSubject($Subject_ID); 11 | } 12 | //else{ 13 | // header('Location: ../Manage-Subject.php'); 14 | //} 15 | 16 | 17 | header('Location: ../Manage-Subject.php'); 18 | ?> 19 | -------------------------------------------------------------------------------- /Administrator/Ajax Search/editCategory.php: -------------------------------------------------------------------------------- 1 | updateCategory($Category_ID, $Category); 11 | 12 | } 13 | ?> -------------------------------------------------------------------------------- /Administrator/Pashto/Actions/editCategory.php: -------------------------------------------------------------------------------- 1 | editCategory($Category_ID, $Category); 12 | 13 | } 14 | ?> -------------------------------------------------------------------------------- /Assets/Ajax Search/addComment.php: -------------------------------------------------------------------------------- 1 | addComment($News_ID, $User_ID, $Comment); 13 | 14 | } 15 | ?> -------------------------------------------------------------------------------- /Administrator/Dari/Ajax Search/editFaculty.php: -------------------------------------------------------------------------------- 1 | updateFaculty($Faculty, $Language, $Faculty_ID); 12 | 13 | } 14 | ?> -------------------------------------------------------------------------------- /Administrator/Delete/DeleteNews.php: -------------------------------------------------------------------------------- 1 | $data) { 7 | $data2 = $_GET[$key] = base64_decode(urldecode($data)); 8 | $News_ID = ((($data2*999999)/9999)/123456789); 9 | } 10 | $data = $_GET['del']; 11 | 12 | $deleteNews = $exm->delNews($News_ID); 13 | 14 | } 15 | 16 | header('Location: ../Manage-News.php'); 17 | ?> 18 | 19 | 20 | -------------------------------------------------------------------------------- /Administrator/Delete/DeleteSubject.php: -------------------------------------------------------------------------------- 1 | $data) { 7 | $data2 = $_GET[$key] = base64_decode(urldecode($data)); 8 | $Subject_ID = ((($data2*999999)/9999)/123456789); 9 | } 10 | $data = $_GET['del']; 11 | 12 | $deleteSubject = $exm->delSubjects($Subject_ID); 13 | 14 | } 15 | 16 | header('Location: ../Manage-Subject.php'); 17 | ?> 18 | -------------------------------------------------------------------------------- /Administrator/Pashto/Delete/DeleteCategory.php: -------------------------------------------------------------------------------- 1 | delCategory($Category_ID); 11 | } 12 | 13 | header('Location: ../Manage-Category.php'); 14 | ?> 15 | 16 | -------------------------------------------------------------------------------- /Administrator/Ajax Search/addNews.php: -------------------------------------------------------------------------------- 1 | addNews($Heading, $Body, $Source, $Category_ID); 14 | 15 | } 16 | ?> -------------------------------------------------------------------------------- /Administrator/Dari/Delete/DeleteSubject.php: -------------------------------------------------------------------------------- 1 | 6 | delSubjects($Subject_ID); 11 | if($deleteSubject){ 12 | $msg = "Subject has deleted Successfully"; 13 | } 14 | else{ 15 | $error = "Subject Not Deleted!"; 16 | } 17 | } 18 | 19 | header('Location: ../Manage-Subject.php'); 20 | ?> 21 | -------------------------------------------------------------------------------- /Administrator/Delete/DeleteCategory.php: -------------------------------------------------------------------------------- 1 | 2 | $data) { 8 | $data2 = $_GET[$key] = base64_decode(urldecode($data)); 9 | $Category_ID = ((($data2*999999)/9999)/123456789); 10 | } 11 | $data = $_GET['del']; 12 | 13 | $deleteCategory = $exm->delCategory($Category_ID); 14 | 15 | } 16 | 17 | header('Location: ../Manage-Category.php'); 18 | ?> 19 | -------------------------------------------------------------------------------- /Administrator/Pashto/Delete/DeleteComment.php: -------------------------------------------------------------------------------- 1 | 6 | delComment($Comment_ID); 11 | if($deleteComment){ 12 | $msg = "Comment has deleted Successfully"; 13 | } 14 | else{ 15 | $error = "Comment Not Deleted!"; 16 | } 17 | } 18 | 19 | //header('Location: ../Manage-Subject.php'); 20 | ?> 21 | -------------------------------------------------------------------------------- /Administrator/Pashto/Actions/addNews.php: -------------------------------------------------------------------------------- 1 | addNews($Heading, $Body, $Source, $Category_ID); 15 | 16 | } 17 | ?> -------------------------------------------------------------------------------- /Administrator/Delete/DeleteResult.php: -------------------------------------------------------------------------------- 1 | delQuizResult($Result_ID); 8 | } 9 | if(isset($_GET['id'])){ 10 | $User_ID = $_GET['id']; 11 | $QuizResult = $exm->getQuizResultByID($User_ID); 12 | $row = $QuizResult->fetch_assoc(); 13 | 14 | } 15 | 16 | $Result = $row['User_ID']; 17 | header('Location: ../Quiz-Result.php?id='.$Result); 18 | ?> 19 | 20 | -------------------------------------------------------------------------------- /Administrator/Dari/Delete/DeleteResult.php: -------------------------------------------------------------------------------- 1 | delQuizResult($Result_ID); 8 | } 9 | if(isset($_GET['id'])){ 10 | $User_ID = $_GET['id']; 11 | $QuizResult = $exm->getQuizResultByID($User_ID); 12 | $row = $QuizResult->fetch_assoc(); 13 | 14 | } 15 | 16 | $Result = $row['User_ID']; 17 | header('Location: ../Quiz-Result.php?id='.$Result); 18 | ?> 19 | 20 | -------------------------------------------------------------------------------- /Administrator/Ajax Search/editNews.php: -------------------------------------------------------------------------------- 1 | updateNews($News_ID, $Heading, $Body, $Source, $Category_ID); 14 | } 15 | ?> 16 | -------------------------------------------------------------------------------- /Assets/js/faPrint.js: -------------------------------------------------------------------------------- 1 | module.exports = { prefix: 'fas', iconName: 'print', icon: [512, 512, [], "f02f", "M464 192h-16V81.941a24 24 0 0 0-7.029-16.97L383.029 7.029A24 24 0 0 0 366.059 0H88C74.745 0 64 10.745 64 24v168H48c-26.51 0-48 21.49-48 48v132c0 6.627 5.373 12 12 12h52v104c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V384h52c6.627 0 12-5.373 12-12V240c0-26.51-21.49-48-48-48zm-80 256H128v-96h256v96zM128 224V64h192v40c0 13.2 10.8 24 24 24h40v96H128zm304 72c-13.254 0-24-10.746-24-24s10.746-24 24-24 24 10.746 24 24-10.746 24-24 24z"] }; -------------------------------------------------------------------------------- /Administrator/Pashto/Actions/editNews.php: -------------------------------------------------------------------------------- 1 | editNews($News_ID, $Heading, $Body, $Source, $Category_ID); 15 | 16 | } 17 | ?> -------------------------------------------------------------------------------- /Assets/js/npm.js: -------------------------------------------------------------------------------- 1 | // This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment. 2 | require('../../js/transition.js') 3 | require('../../js/alert.js') 4 | require('../../js/button.js') 5 | require('../../js/carousel.js') 6 | require('../../js/collapse.js') 7 | require('../../js/dropdown.js') 8 | require('../../js/modal.js') 9 | require('../../js/tooltip.js') 10 | require('../../js/popover.js') 11 | require('../../js/scrollspy.js') 12 | require('../../js/tab.js') 13 | require('../../js/affix.js') -------------------------------------------------------------------------------- /Administrator/Dari/Ajax Search/addTeacher.php: -------------------------------------------------------------------------------- 1 | addTeachers($Teacher_Name, $Email, $Language, $Gender, $Mobile_No, $Time); 15 | 16 | } 17 | ?> -------------------------------------------------------------------------------- /Assets/Ajax Search/getSignup.php: -------------------------------------------------------------------------------- 1 | userRegistration($Full_Name, $Username, $Password, $Email, $Gender, $Phone_No, $image); 16 | } 17 | ?> -------------------------------------------------------------------------------- /Administrator/Actions/editTeachers.php: -------------------------------------------------------------------------------- 1 | updateTeachers($Teacher_Name, $Language, $Email, $Gender, $Mobile_No, $Time, $Teacher_ID); 16 | } 17 | 18 | ?> -------------------------------------------------------------------------------- /Administrator/Ajax Search/addSubject.php: -------------------------------------------------------------------------------- 1 | addSubjects($Subject, $Language, $Credit_Hours, $Teacher_ID, $Faculty_ID, $Time, $Status); 15 | 16 | } 17 | ?> -------------------------------------------------------------------------------- /Administrator/Dari/Ajax Search/addSubject.php: -------------------------------------------------------------------------------- 1 | addSubjects($Subject, $Language, $Credit_Hours, $Teacher_ID, $Faculty_ID, $Time, $Status); 15 | 16 | } 17 | ?> -------------------------------------------------------------------------------- /Administrator/Dari/Ajax Search/editTeachers.php: -------------------------------------------------------------------------------- 1 | updateTeachers($Teacher_Name, $Language, $Email, $Gender, $Mobile_No, $Time, $Teacher_ID); 16 | 17 | } 18 | ?> -------------------------------------------------------------------------------- /Administrator/Dari/Ajax Search/editSubjects.php: -------------------------------------------------------------------------------- 1 | updateSubjects($Subject, $Language, $Credit_Hours, $Teacher, $Faculty, $Time, $Status, $Subject_ID); 17 | 18 | } 19 | ?> -------------------------------------------------------------------------------- /Administrator/Dari/Ajax Search/addQuestions.php: -------------------------------------------------------------------------------- 1 | addQuestions($Question, $Answer0, $Answer1, $Answer2, $Answer3, $Language, $Right_Answer, $Subject_ID); 18 | 19 | } 20 | ?> -------------------------------------------------------------------------------- /About-us.php: -------------------------------------------------------------------------------- 1 | 4 | 5 |
BBC News is located in England London City. and is one of the most famous 16 | broadcasting channel. which is broadcasting news to more than 100 countries by 17 | 50 language from 6 AM to 6 PM. 18 |
19 |پښتو ژبه د اتریش په درسی نصاب کی د یو مضمون په توګه شامله ده. په پلازمینه ویانا کي نو شمیر افغان ماشومان په ښونځیو کي د نورو مضامینو تر څنګ پښتو ژبه هم د یو مضمون په توګه لولي. 15 |
16 |
24 | 

پښتو ژبه د اتریش په درسی نصاب کی د یو مضمون په توګه شامله ده. په پلازمینه ویانا کي نو شمیر افغان ماشومان په ښونځیو کي د نورو مضامینو تر څنګ پښتو ژبه هم د یو مضمون په توګه لولي. 15 |
16 |
24 | 
