ParagraphsCategoryInterface.php in Paragraphs Editor Enhancements 8
Namespace
Drupal\paragraphs_eeFile
src/ParagraphsCategoryInterface.phpView source
<?php
namespace Drupal\paragraphs_ee;
use Drupal\Core\Config\Entity\ConfigEntityInterface;
/**
* Interface for Paragraphs category entities.
*/
interface ParagraphsCategoryInterface extends ConfigEntityInterface {
/**
* Get the description of the Paragraphs category.
*
* @return string
* The category description.
*/
public function getDescription();
/**
* Get the weight of the Paragraphs category.
*
* @return int
* The category weight.
*/
public function getWeight();
}
Interfaces
Name | Description |
---|---|
ParagraphsCategoryInterface | Interface for Paragraphs category entities. |