Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
firepot
/
wp-content
/
themes
/
momota
/
lib
/
colibriwp
/
src
/
Components
:
Sidebar.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace ColibriWP\Theme\Components; use ColibriWP\Theme\Core\ComponentBase; use ColibriWP\Theme\View; class Sidebar extends ComponentBase { public function renderContent( $options = array() ) { $id = isset( $options['id'] ) ? $options['id'] : 'post'; View::partial( 'sidebar', $id, array( 'component' => $this, ) ); } /** * @return array(); */ protected static function getOptions() { return array(); } }