This is the API docs for LemonStand V1, which has been discontinued. LemonStand is now a cloud based platform, available at lemonstand.com.

LemonStand API

cms:onListPageEditorSidebarTabs event

Triggered by /modules/cms/controllers/cms_pages/_action_doc.htm
Author LemonStand eCommerce Inc.

Event handler signature

public array event_onListPageEditorSidebarTabs()
{return} array returns an array of tab names and tab partial paths.
Allows to add tabs to the Create/Edit Page page sidebar in the Administration Area. The handler should return an associative array of tab titles and corresponding tab partials.
public function subscribeEvents()
{
  Backend::$events->addEvent('shop:onListPageEditorSidebarTabs', $this, 'add_page_editor_tabs');
}

public function add_page_editor_tabs()
{
  return array('Special information'=>PATH_APP.'/mymodule/partials/special.htm');
}