/home/edulekha/studygroup.edulekha.com/ow_system_plugins/base/components/breadcrumb.php
<?php

class BASE_CMP_Breadcrumb extends OW_Component
{
    public function __construct( $items, $title = '' )
    {
        parent::__construct();
        
        $this->items = $items;
        
        $this->assign('items', $items);
        $this->assign('title', $title);
    }
}