File Manager

Current Directory: /home/astoriaah/www/administrator/components/com_widgetkit/src/Content
Viewing File: /home/astoriaah/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(); }