Sindbad~EG File Manager
<?php
use Illuminate\Auth\UserTrait;
use Illuminate\Auth\UserInterface;
use Illuminate\Auth\Reminders\RemindableTrait;
use Illuminate\Auth\Reminders\RemindableInterface;
class AppMessage
{
public static $page_size = 100;
//Members
public static $MEMBER_SAVE_SUCCESS = "Member's details saved successfully.";
//Paymen
public static $PAYMENT_FAILURE_INSERTION = "Problem occured while processing your request. Please try after sometimes";
//General
public static $GENERAL_ERROR = 'Some thing went wrong while processing your request. Please try after sometime or get in touch with system administrator.';
public static $TOPIC_FOLLOW_ERROR = 'you are not following this topic.';
//Register
public static $REGISTER_SUCCESS = "Registration Successfully.";
//profile
public static $PROFILE_SUCCESS = "Profile Update Successfully.";
//Password Chagne
public static $PWD_CHANGE_SUCCESS = "Your password has been change";
public static $PWD_CHANGE_NOT_MACHE = "Please enter the same password";
public static $PWD_CHANGE_INVALID_CURRENT = "Invalid your current password";
//IC
public static $IC_ALREADY_SUBMIT = "Sorry! Your IC is already submitted";
//IC COI
public static $IC_COI_Count = "Sorry! you cannot add more than six Co-Instructor.";
public static $IC_COI_Duration = "Sorry! you cannot add more than 75 Minutes.";
public static $IC_COI_atleast_1 = "Please, Add atleast one Co-Instructor";
//IC consent
public static $IC_CONSENT_SUCCESS = "Thank you for providing your response. An automated email shall be sent to the chief instructor conveying your response.";
//FP
public static $FP_ALREADY_SUBMIT = "Sorry! Your FP is already submitted";
public static $FP_RATIFIED_MEMBER = "Please add atleast one ratified member of AIOS to proceed. The ratified member can be a chief author or a presenting author or one of the co-authors. You cannot submit an abstract without associating an AIOS member whose membership number is ratified.";
public static $FP_PA_Count = "Already Presenting Author for 5 FPs";
//FP COA
public static $FP_COA_Count = "Sorry! you cannot add more than three Co-Authors.";
public static $FP_COA_Duplicate = "Sorry! you have already added this Co-Author.";
//arc
public static $ARC_ALREADY_SUBMIT = "Sorry! Your ARC is already submitted";
public static $ARC_RATIFIED_MEMBER = "Please add atleast one ratified member of AIOS to proceed. The ratified member can be a chief author or a presenting author or one of the co-authors. You cannot submit an abstract without associating an AIOS member whose membership number is ratified.";
public static $ARC_PA_Count = "Already Presenting Author for 1 ARCs";
public static $ARCLDP_ALREADY_SUBMIT = "Sorry! Your ARC LDP is already applied";
//AppleTree
public static $AppleTree_ALREADY_SUBMIT = "Sorry! Your AppleTree is already submitted";
public static $AppleTree_RATIFIED_MEMBER = "Please add atleast one ratified member of AIOS to proceed. The ratified member can be a chief author or a presenting author or one of the co-authors. You cannot submit an abstract without associating an AIOS member whose membership number is ratified.";
public static $AppleTree_PA_Count = "Already Presenting Author for 2 AppleTrees";
public static $ARCInn_ALREADY_SUBMIT = "Sorry! Your ARC - Innovator's corner is already submitted";
//Faculty Talks
public static $FT_ALREADY_SUBMIT = "Sorry! Your Faculty Talks is already submitted";
//FP COA
public static $ARC_GUIDE_Count = "Sorry! you cannot add more than 1 Guide.";
public static $ARC_GUIDE_Duplicate = "Sorry! you have already added Guide.";
//PP
public static $PP_ALREADY_SUBMIT = "Sorry! Your PP is already submitted";
public static $PP_RATIFIED_MEMBER = "Please add atleast one ratified member of AIOS to proceed. The ratified member can be a chief author or a presenting author or one of the co-authors. You cannot submit an abstract without associating an AIOS member whose membership number is ratified.";
public static $PP_PA_Count = "Already Presenting Author for 2 PPs";
//PP COA
public static $PP_COA_Count = "Sorry! you cannot add more than three Co-Authors.";
public static $PP_COA_Duplicate = "Sorry! you have already added this Co-Author.";
//VT
public static $VT_ALREADY_SUBMIT = "Sorry! Your VT is already submitted";
public static $VT_RATIFIED_MEMBER = "Please add atleast one ratified member of AIOS to proceed. The ratified member can be a chief author or a presenting author or one of the co-authors. You cannot submit an abstract without associating an AIOS member whose membership number is ratified.";
public static $VT_PA_Count = "Already Presenting Author for 4 VTs";
//VT COA
public static $VT_COA_Count = "Sorry! you cannot add more than three Co-Authors.";
public static $VT_COA_Duplicate = "Sorry! you have already added this Co-Author.";
//Mark
public static $MARK_SUCCESS = "Marks saved successfully.";
//Forum
//Title
public static $TOPIC_INSERT_SUCCESS = 'Topic is saved successfully.';
public static $TOPIC_INSERT_MODERATORS_SUCCESS = 'Topic is saved successfully.Your Post has been Send for Approval by Moderators';
public static $REPLY_INSERT_SUCCESS = 'Thank you for making reply.';
public static $REPLY_INSERT_MODERATORS_SUCCESS = 'Thank you for making reply.Your Reply has been Send for Approval by Moderators';
public static $TOPIC_FOLLOW_SUCCESS = "You are now Following this Topic";
public static $TOPIC_FOLLOW_INSERT_SUCCESS = "Record saved successfully.";
public static $FORUM_DEVICE_INSERT_SUCCESS = 'Device information is saved successfully.';
public static $FORUM_DEVICE_DUPLICATE_INFO = 'Device is already registered with us.';
public static $FORUM_TOPIC_STATUS_UPDATE_SUCCESS = "Topic status is updated successfully.";
public static $FORUM_REPLY_STATUS_UPDATE_SUCCESS = 'Reply status is updated successfully.';
public static $FORUM_REPLY_VOTE_SUCCESS = "Your vote has been recorded. Thank you.";
public static $FORUM_TOPIC_VOTE_SUCCESS = "Your vote has been recorded. Thank you.";
public static $FORUM_REPLY_READ_SUCCESS = "Replies have been marked as read.";
public static $FORUM_REPLY_READ_DELETE_SUCCESS = "Removed all the replies read entries that have been made before seven days";
//Delegate Registration
//Delegate
public static $DELEGATE_SUCCESS = 'You are redirecting to payment page. Please wait for a while.';
public static $DELEGATE_SUCCESS_PAYLATER = "Delegates' details has been saved for making payment later.";
public static $DELEGATE_NOT_SELECTED = "Please select atleast one delegate and continue making payment.";
public static $REG_CHANGE_TYPE_TOBEREGISTER_SUCCESS = 'Delegate has been moved to "To Be Registered List".';
public static $REG_CHANGE_TYPE_REGISTERED_SUCCESS = 'Delegate has been moved to "Wishlist". ';
//Payment
public static $PAYMENT_INVALID_AMOUNT = 'Invalid Amount';
public static $PAYMENT_TWICE_SINGLE_LOGIN = 'Only one user is allowed to register/pay for a login at a time. Currently more than one user is login with the same credentials.so please continue after 15 minutes.';
public static $PAYMENT_NO_DELEGATES = 'No delegates exists';
public static $WEBSITE_URL = "http://abstract.urbanedge.co.in/";
}
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists