The script below is designed to take each folder defined as "WIDGET" and iterate over its files, loading their contents into the database as a widget object.
It works fine, however, as you can see below, for every folder inside of the widget folder that I want to execute this routine against, I have to create a separate branch of nearly identical code, seeding the DEFINE statement with the hard-coded path to the folder that contains the widget contents for that widget object. For example, the foldername (WIDGET) and the $sidebar_id for that widget object (which are the same).
Since I'm naming my folders inside the "widgets" directory, the same as my registered "widgets" in the database, I'd like to convert this routine into a dynamic one that loops over the directories inside the "widgets" folder and for each folder it finds, executes the code starting with the DEFINE statement.
How would I convert this to a single routine that executes for any folder inside of "widgets" folder?
//Install Wigets
$sidebars_widgets = get_option('sidebars_widgets');
$widget_id = count($opts)+1;
$widget_ops = get_option('widget_text');
//1st Widget Area
//make this directory pointer dynamic based on which folder under widgets we are currently working on
DEFINE ('WIDGET', ABSPATH.'/wp-content/plugins/myplugin/widgets/home-header-area/');
$directory_widgets = new DirectoryIterator(WIDGET);
foreach ($directory_widgets as $files_widgets) {
if ($files_widgets->isFile()) {
$file_name_widget = $files_widgets->getFilename();
$widget_text = file_get_contents(WIDGET. $file_name_widget);
$sidebar_id = 'home-header-widget'; //make this dynamic based on the current foldername in the loop
$sidebars_widgets[$sidebar_id] = array("text-".$widget_id);
$widget_ops[$widget_id] = array('title' => $files_widgets->getBasename('.txt'),'text' => $widget_text,);
update_option('widget_text', $widget_ops);
update_option('sidebars_widgets', $sidebars_widgets);
}
}
//2nd Widget Area
//make this directory pointer dynamic based on which folder under widgets we are currently working on
DEFINE ('WIDGET', ABSPATH.'/wp-content/plugins/myplugin/widgets/inside-header-area/');
$directory_widgets = new DirectoryIterator(WIDGET);
foreach ($directory_widgets as $files_widgets) {
if ($files_widgets->isFile()) {
$file_name_widget = $files_widgets->getFilename();
$widget_text = file_get_contents(WIDGETS. $file_name_widget);
$sidebar_id = 'inside-header-widget'; //make this dynamic based on the current foldername in the loop
$sidebars_widgets[$sidebar_id] = array("text-".$widget_id);
$widget_ops[$widget_id] = array('title' => $files_widgets->getBasename('.txt'),'text' => $widget_text,);
update_option('widget_text', $widget_ops);
update_option('sidebars_widgets', $sidebars_widgets);
}
}
Updated Code with Charles answer:
$base = dirname(__FILE__).'/widgets/';
$rdi = new RecursiveDirectoryIterator($base);
foreach(new RecursiveIteratorIterator($rdi) as $files_widgets)
{
if ($files_widgets->isFile())
{
$file_name_widget = $files_widgets->getFilename();
$widget_text = file_get_contents($base . [current directory?] .$file_name_widget);
//NOT SURE IF THIS IS IT OR NOT. I NEED THE CURRENT PARENT DIRECTORY'S NAME
$sidebar_id = $files_widgets->getBasename(); //make this dynamic based on the current foldername in the loop
$sidebars_widgets[$sidebar_id] = array("text-".$widget_id);
$widget_ops[$widget_id] = array('title' => $files_widgets->getBasename('.txt'),'text' => $widget_text,);
update_option('widget_text', $widget_ops);
update_option('sidebars_widgets', $sidebars_widgets);
}
}