Added msising publish-dialog.phtml and fixed .gitignore file

This commit is contained in:
Albert Santoni 2015-10-15 18:03:03 -04:00
parent 8322b580aa
commit 30d742af92
2 changed files with 40 additions and 1 deletions

2
.gitignore vendored
View File

@ -4,7 +4,7 @@
vendor/*
composer.phar
*~$
*log.*
*\.log.*
**/*.egg-info/*
**/build/*
**/dist/*

View File

@ -0,0 +1,39 @@
<div class="inner_editor_title">
<h2>
<?php echo _("Publishing") ?> "<span ng-bind="media.track_title" class="title_obj_name"></span>"
</h2>
</div>
<div class="inner_editor_wrapper">
<form class="media-metadata">
<input ng-value="media.id" class="obj_id" type="hidden"/>
<label>
<?php echo _("Title") ?>
<input disabled ng-model="media.track_title" type="text"/>
</label>
<label>
<?php echo _("Creator") ?>
<input disabled ng-model="media.creator" type="text"/>
</label>
<fieldset>
<legend><?php echo _("Publish to:"); ?></legend>
<input type="checkbox" name="publish_sources" id="station_podcast" value="station_podcast"><label for="station_podcast"><?php echo(_("My Station Podcast"));?></label><br/>
<input type="checkbox" name="publish_sources" id="soundcloud" value="soundcloud"><label for="soundcloud">SoundCloud</label>
</fieldset>
</form>
</div>
<div class="btn-toolbar clearfix">
<div class="btn-group pull-right">
<button ng-click="discard()" class="btn" type="button" name="cancel">
<?php echo _("Cancel") ?>
</button>
</div>
<div class='btn-group pull-right'>
<button ng-click="publish()" class="btn" title='<?php echo _("Publish") ?>' type="button">
<?php echo _("Publish") ?>
</button>
</div>
<div class='success' style='display:none'></span></div>
</div>