PHP File Manager
Editing File: footer.php
</div> </div> </div> </div> <div id="data-viewer" class="loading"> <button type="button" class="close">×</button> <div class="inner"></div> </div> <?php if($this->users->isAdmin()): ?> <div id="page-notes"<?php echo ($this->input->cookie('page_notes')) ? ' class="panel-closed"' : ''; ?>> <a href="#" id="toggle-page-notes"><img src="/assets/images/icons/table_edit.png" alt="" /></a> <div class="inner"> <div class="notes-list"> <?php if(($page_notes = $this->common->page_notes)): ?> <?php foreach($page_notes as $note_info): ?> <div class="row"> <div class="col-xs-12"> <p><strong><?php echo $note_info->first_name; ?></strong></p> <span class="note-<?php echo ($note_info->is_solved) ? 'solved' : 'incomplete'; ?>"><?php echo nl2br(input_value($note_info->note)); ?></span> </div> </div> <?php endforeach; ?> <?php else: ?> <p><em>No notes for this page</em></p> <?php endif; ?> </div> <form action="/" method="post"> <textarea name="note" rows="4" class="form-control"></textarea> <input type="hidden" name="url" value="<?php echo input_value('/' . trim(uri_string(), '/')); ?>" /> <button type="submit" class="btn btn-primary btn-sm" name="save_page_note" value="1">Save</button> </form> </div> </div> <?php endif; ?> <?php if($this->input->get('responsive_check')): ?> <div style="position: fixed; bottom: 5px; left: 5px; z-index: 9000; border: 1px #000 solid; background: #FFF; padding: 2px 1px;"> <?php foreach(array('xs', 'sm', 'md', 'lg') as $size): ?> <div style="float: left; width: 20px; height: 20px; margin: 0 1px; background: #000; color: #FFF; text-align: center;"><span class="visible-<?php echo $size; ?>"><?php echo $size; ?></span></div> <?php endforeach; ?> </div> <?php endif; ?> </body> </html>
Cancel