| Current Path : /home/ereika83/www/wp-content/plugins/pressplay/templates/ |
| Current File : /home/ereika83/www/wp-content/plugins/pressplay/templates/projects-list.php |
<select id="pp_projects_select">
<?php
if (is_array( $projects_list )) {
foreach ($projects_list as $campaign_id => $campaign) {
?>
<optgroup label="<?php echo htmlspecialchars( $campaign['name'] ); ?>">
<?php
foreach ($campaign['projects'] as $project) {
?>
<option value="<?php echo $project['id']; ?>"><?php echo $project['name']; ?></option>
<?php
}
?>
</optgroup>
<?php
}
}
?>
</select>