first commit
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
asort($campaigns);
|
||||
$selected = $ads_tracker_list->getAppAdsTrackerPlatformId()."_".$ads_tracker_list->getAppAdsTrackerCampaignId();
|
||||
?>
|
||||
|
||||
<select name="ads_tracker_list[platform_campaign]" id="ads_tracker_list_platform_campaign">
|
||||
|
||||
<?php foreach ($campaigns as $key => $value): ?>
|
||||
|
||||
<?php $campaign_id = explode("_",$key) ?>
|
||||
|
||||
<?php
|
||||
if (!appAdsTracker::getIsCampaignSytemDefault($campaign_id[0])): ?>
|
||||
<option value="<?php echo $key; ?>" <?php if ($selected== $key): ?> selected="selected"<?php endif; ?>><?php echo appAdsTracker::langFilter($value); ?></option>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php endforeach; ?>
|
||||
|
||||
</select>
|
||||
Reference in New Issue
Block a user