I'm looking information on how to make it so users of a particular theme I am developing and modify some values through an Admin or Theme options menu. Obviously a simple question with a most likely long answer =/
Let me first explain what I am trying to do. For instance I have
$bfms['imagepath'] = 'http://www.exphryl.com/bf/topmenu/';
$bfms['box1title'] = 'where to find us';
$bfms['box1button'] = 'csab server info'; //Roll Over Button To Pop Up Detail
$bfms['box1detail'] = 'All Info on our Battlefield 3 Server, admins readily available</br>to make your playing experience as fun as possible'; //Two Lines Tops. At most 100 Characters Per Line
$bfms['box1image'] = 'server.jpg';
This eventually produces something like : http://www.exphryl.com/bf/topmenu/index.php
What I am trying to accomplish is for the values in the code to be easily modified without having the manually edit the PHP File. (For people that aren't to familiar with such things and want to just install and easily maintain it).
1.) Is there a Theme a person knows of that accomplishes this I could just reference for an example? (Figure be the easiest route, didn't see any at a few searches)
2.) Would such a thing have to be a "Mod" or is there a way to throw everything in to the theme install?