BlogTypeInterface.php 584 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. namespace Drupal\dr8_zth;
  3. use Drupal\Core\Config\Entity\ConfigEntityInterface;
  4. /**
  5. * The specific operations of the BlogType entity type.
  6. */
  7. interface BlogTypeInterface extends ConfigEntityInterface {
  8. /**
  9. * Returns the blog type description.
  10. *
  11. * @return string
  12. * The vocabulary description.
  13. */
  14. public function getDescription();
  15. /**
  16. * Sets the blog type description.
  17. *
  18. * @param string $description
  19. * The description string.
  20. *
  21. * @return this
  22. * The blog_type instance.
  23. */
  24. public function setDescription($description);
  25. }