0

i checked the script of existing option like All Polls, My Polls etc all these coming from xml with some integer value. But I don't know how to add new option. For reference i attached screen-sort.

enter image description here

Thank you in advance

Pank
  • 13,800
  • 10
  • 32
  • 45

2 Answers2

0

Those dont come from an xml file, check the file /module/poll/include/component/controller/index.class.php in there look for "buildMenu"

Purefan
  • 1,498
  • 24
  • 44
0
  1. Go to poll index controller:

    module/poll/include/component/controller/index.class.php

  2. Find $this->template()->buildSectionMenu('poll', $aFilterMenu);

  3. You can add more options in the list by adding items in $aFilterMenu array

    eg : $aFilterMenu['xyz'] = 'xyz';

LittleBobbyTables - Au Revoir
  • 32,008
  • 25
  • 109
  • 114
Ankit Agrawal
  • 6,034
  • 6
  • 25
  • 49