// SYSTEM PANEL //
[ROOT]
/
mnt
/
pleskStorage
/
vhosts
/
kodsolutions.net
/
subdomains
/
go-rent.kodsolutions.net
/
app
/
Helpers
[ PARENT ]
EDIT :: Constants.php
<?php namespace App\Helpers; final class Constants { public const PAYMENT_STATUS = 0; public const FIRST_BANNER = 0; public const SECOND_BANNER = 1; public const VISION_PAGE_TYPE = 0; public const MISSION_PAGE_TYPE = 1; public const VALUE_PAGE_TYPE = 2; public const ABOUT_PAGE_TYPE = 3; public const SLIDER_PAGE_TYPE = 4; public const VIDEO_PAGE_TYPE = 5; public const OFFICE_JOIN_PAGE_TYPE = 6; public const DOWNLOAD_PAGE_TYPE = 7; public const CUSTOMER_JOIN_PAGE_TYPE = 8; // Car Categories public const CAT_BRAND = 0; public const CAT_MODEL = 1; public const CAT_YEAR = 2; public const CAT_FUEL_TYPE = 3; public const CAT_TRANSMISSION_TYPE = 4; public const CAT_INSURANCE_TYPE = 5; public const CAT_COLOR_TYPE = 6; public const CAT_VEHICLE_TYPE = 7; public const CAT_STATUS_TYPE = 8; public const CAR_CATEGORY = 9 ; public const USER_TYPE = 'customer'; public const OWNER_TYPE = 'owner'; public const DEVELOPER_TYPE = 'developer'; public const MARKETER_TYPE = 'marketer'; public const OFFICE_TYPE = 'office'; public const FEATURE_TYPE = 0; public const QUESTION_TYPE = 1; public const CLIENT_TYPE = 2; public const COUNTER_TYPE = 3; public const PENDING_REQUEST = 0; public const OPENED_REQUEST = 1; public const CLOSED_REQUEST = 2; }
SAVE
CANCEL