FaviconDLType.php 335 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace Favicon;
  3. interface FaviconDLType
  4. {
  5. /**
  6. * Retrieve remote favicon URL.
  7. */
  8. const HOTLINK_URL = 0;
  9. /**
  10. * Retrieve downloaded favicon path (requires cache).
  11. */
  12. const DL_FILE_PATH = 1;
  13. /**
  14. * Retrieve the image content as a binary string.
  15. */
  16. const RAW_IMAGE = 2;
  17. }