Show example
```PHP
-$this->getInput('your input name here');
+
+$item = array(); // Create a new item
+
+$item['title'] = 'Hello World!';
+
+$this->items[] = $item; // Add item to the list
+
```
-## Items
-The item array is used to store parameter that are collected in the [`collectData`](#the-collectdata-function) function. Following properties are supported by **RSS-Bridge** :
+