Your IP : 216.73.216.61


Current Path : /home/gonzalx/www/administrator/components/com_widgetkit/src/Content/
Upload File :
Current File : /home/gonzalx/www/administrator/components/com_widgetkit/src/Content/TypeInterface.php

<?php

namespace YOOtheme\Widgetkit\Content;

interface TypeInterface
{
    /**
     * Gets the config or config value.
     *
     * @param  mixed $name
     * @return array
     */
    public function getConfig($name = null);

    /**
     * Gets the items for this content type.
     *
     * @param  ContentInterface $content
     * @return ItemCollection
     */
    public function getItems(ContentInterface $content);

    /**
     * Gets the type data as array.
     *
     * @return array
     */
    public function toArray();
}