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 : /nginx/html/Student/JimMartinson/Lab12/drupal/core/modules/image/src/ |
Upload File : |
<?php namespace Drupal\image; /** * Interface for storage controller for "image style" configuration entities. */ interface ImageStyleStorageInterface { /** * Stores a replacement ID for an image style being deleted. * * The method stores a replacement style to be used by the configuration * dependency system when a image style is deleted. The replacement style is * replacing the deleted style in other configuration entities that are * depending on the image style being deleted. * * @param string $name * The ID of the image style to be deleted. * @param string $replacement * The ID of the image style used as replacement. */ public function setReplacementId($name, $replacement); /** * Retrieves the replacement ID of a deleted image style. * * The method is retrieving the value stored by ::setReplacementId(). * * @param string $name * The ID of the image style to be replaced. * * @return string|null * The ID of the image style used as replacement, if there's any, or NULL. * * @see \Drupal\image\ImageStyleStorageInterface::setReplacementId() */ public function getReplacementId($name); /** * Clears a replacement ID from the storage. * * The method clears the value previously stored with ::setReplacementId(). * * @param string $name * The ID of the image style to be replaced. * * @see \Drupal\image\ImageStyleStorageInterface::setReplacementId() */ public function clearReplacementId($name); }