1 ম উত্তরে উল্লিখিত হিসাবে,
পরিবেশ_শক্তি আপনিই সন্ধান করছেন।
ঠিক আছে, আমরা একই ধরণের বিকাশ মডেলও ব্যবহার করি এবং সহজেই ব্যবহারের জন্য যদি বৈশিষ্ট্য মডিউল ব্যবহার করা হয় তবে আপনার ফাইলটিতে সেটিংস লিখিত থাকতে পারে। এটি রঙটি স্বয়ংক্রিয়ভাবে পরিবর্তিত করে।
নীচের কোডটি অনুসরণ করুন, এটি বৈশিষ্ট্য মডিউলটির মাধ্যমে আমদানি করা যেতে পারে।
/**
* Implements hook_default_environment_indicator_environment().
*/
function mymodule_default_environment_indicator_environment() {
$export = array();
$environment = new stdClass();
$environment->disabled = FALSE; /* Edit this to true to make a default environment disabled initially */
$environment->api_version = 1;
$environment->machine = 'live';
$environment->name = 'Live';
$environment->regexurl = 'example.com';
$environment->settings = array(
'color' => '#bb0000',
'text_color' => '#ffffff',
'weight' => '',
'position' => 'top',
'fixed' => 0,
);
$export['live'] = $environment;
$environment = new stdClass();
$environment->disabled = FALSE; /* Edit this to true to make a default environment disabled initially */
$environment->api_version = 1;
$environment->machine = 'staging';
$environment->name = 'Staging';
$environment->regexurl = 'stage.example.com';
$environment->settings = array(
'color' => '#000099',
'text_color' => '#ffffff',
'weight' => '',
'position' => 'top',
'fixed' => 0,
);
$export['staging'] = $environment;
$environment = new stdClass();
$environment->disabled = FALSE; /* Edit this to true to make a default environment disabled initially */
$environment->api_version = 1;
$environment->machine = 'dev';
$environment->name = 'Dev';
$environment->regexurl = 'dev.example.com';
$environment->settings = array(
'color' => '#000066',
'text_color' => '#ffffff',
'weight' => '',
'position' => 'top',
'fixed' => 0,
);
$export['dev'] = $environment;
return $export;
}