COMPONENT NAME

Every Component has an important setting that is used in various places.

 public static function getSettings()
    {
        $ret = parent::getSettings();
        $ret['componentName'] = 'My Component';
        return $ret;
    }

Categories

If the Component can be added as paragraph in Paragraphs_Component you can specify additional settings that help structuring the menu.

Example:

 $ret['componentCategory'] = 'special';
 $ret['componentPriority'] = 10;

Available categories are:

The 'componentPriority' setting allows you to change the order within that category.