You are here

function flot_views_pie_examples_flot_examples_toc_alter in Flot 8

Implements hook_foo_BAR_ID_bar() for xyz_bar().

File

flot_views_pie/flot_views_pie_examples/flot_views_pie_examples.module, line 11
A collection of module hooks for the flot_views_pie_examples module.

Code

function flot_views_pie_examples_flot_examples_toc_alter(&$item_list) {
  $url = '/flot-examples/flot-views-pie/log-pie-chart';
  $options = [
    ':one' => $url,
  ];
  $item_list[] = t('<a href=":one">Pie chart views formatter</a>', $options);
}