// SYSTEM PANEL //
[ROOT]
/
mnt
/
pleskStorage
/
vhosts
/
kodsolutions.net
/
subdomains
/
syaaraa.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; public const APARTMENT_CATEGORY = 0; public const APARTMENT_TYPE = 1; public const APARTMENT_FEATURE = 3; public const APARTMENT_STATUS = 4; public const APARTMENT_AGE = 5; 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