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

class BASE_CMP_ModerationPanelList extends OW_Component
{
    public function __construct( array $items )
    {
        parent::__construct();
        
        $tplItems = array();
        
        foreach ( $items as $item )
        {
            $tplItems[] = array_merge(array(
                "label" => null,
                "url" => null,
                "count" => 0
            ), $item);
        }
        
        $this->assign("items", $tplItems);
    }
}