opening_hours_admin.tpl.php in Opening hours 7
Same filename and directory in other branches
Template for the opening hours admin interface.
Is not really a template in Drupal-sense, mainly a container for the markup necessary to render the opening hours interface.
1 theme call to opening_hours_admin.tpl.php
- opening_hours_node_edit_page in includes/
opening_hours.pages.inc - Page for editing the opening hours for a specific node.
File
templates/opening_hours_admin.tpl.phpView source
<?php
/**
* @file
* Template for the opening hours admin interface.
*
* Is not really a template in Drupal-sense, mainly a container for the
* markup necessary to render the opening hours interface.
*/
?>
<div id="opening-hours-admin">
<p class="placeholder"><?php
print t('Loading administration interface…');
?></p>
</div>
<script type="text/template" id="oho-admin-main-template">
<div class="dateheader" title="<?php
print t('Click to change dates');
?>">
<h2><?php
echo t('Week !week, !year', array(
'!week' => '<%- weekNumber %>',
'!year' => '<%- year %>',
));
?></h2>
<h3>
<span class="date from"><%- fromDate %></span>
<% if (toDate) { %>
– <span class="date to"><%- toDate %></span>
<% } %>
</h3>
</div>
<ul class="navigation clear-block">
<li><a class="prev-week" href="#prev" title="<?php
print t('Previous week');
?>">‹</a>
<li><a class="current-week" href="#current"><?php
print t('Current week');
?></a>
<li><a class="next-week" href="#next" title="<?php
print t('Next week');
?>">›</a>
</ul>
<table class="days">
<thead>
<tr>
<% _.each(dateHeaders, function (header) { %><th><%= header %></th><% }); %>
</tr>
</thead>
<tbody><tr></tr></tbody>
</table>
</script>
<script type="text/template" id="oho-instance-display-template">
<span class="start_time"><%= start_time %></span> –
<span class="end_time"><%= end_time %></span>
<p class="category"><%- category %></p>
<p class="notice"><%- notice %></p>
</script>
<script type="text/template" id="oho-instance-edit-template">
<form action="." id="oho-instance-edit-form">
<fieldset class="date-time">
<input type="text" class="date text" size="9" title="<?php
print t('Date');
?>" value="<%= date %>" <% if (!isNew) { %>disabled="disabled"<% } %> />
<input type="text" class="start_time text" size="7" title="<?php
print t('Start time');
?>" value="<%= start_time %>" />
to
<input type="text" class="end_time text" size="7" title="<?php
print t('End time');
?>" value="<%= end_time %>" />
</fieldset>
<fieldset class="repeat">
<label for="oho-repeat-rule"><?php
print t('Repeat');
?></label>
<select name="oho-repeat-rule" id="oho-repeat-rule">
<option value="">never</option>
<option value="weekly">every week</option>
</select>
<label class="end" for="oho-repeat-end-date"><?php
print t('until');
?></label>
<input type="text" class="text end repeat-end-date" name="oho-repeat-end-date" id="oho-repeat-end-date" size="9" title="<?php
print t('End date');
?>" value="<%= repeat_end_date %>" />
</fieldset>
<fieldset class="details">
<% if (Drupal.settings.OpeningHours.categories) { %>
<label>
<?php
echo t('Category');
?>
<select class="oho-category category-tid" name="oho-category">
<option value=""><?php
echo t('- None -');
?></option>
<% _.each(Drupal.settings.OpeningHours.categories, function (name, tid) { %>
<option <% if (category_tid == tid) { %>selected="selected" <% } %>value="<%= tid %>">
<%= name %>
</option>
<% }); %>
</select>
</label>
<% } %>
<label for="oho-notice"><?php
print t('Notice');
?></label>
<input type="text" class="notice text" name="oho-notice" id="oho-notice" title="<?php
print t('What’s special about this instance?');
?>" size="60" value="<%= notice %>" />
</fieldset>
</form>
</script>