Your IP : 216.73.216.95


Current Path : /var/test/www/alh/admin/view/template/simple_blog/
Upload File :
Current File : /var/test/www/alh/admin/view/template/simple_blog/article_list.tpl

<?php echo $header; ?>
    <?php echo $column_left; ?>
    
    <div id="content">
        <div class="page-header">
            <div class="container-fluid">
                <div class="pull-right">
                    <a href="<?php echo $insert; ?>" data-toggle="tooltip" title="<?php echo $button_insert; ?>" class="btn btn-primary"><i class="fa fa-plus"></i></a>
                    <button type="button" data-toggle="tooltip" title="<?php echo $button_delete; ?>" class="btn btn-danger" onclick="confirm('<?php echo $text_confirm; ?>') ? $('#form-blog-article').submit() : false;"><i class="fa fa-trash-o"></i></button>
                    <?php if(isset($found_user_view_all)) { ?>
	  					<a href="<?php echo $view_all_ticket; ?>" class="btn btn-primary" data-toggle="tooltip" title="<?php echo $button_view_all; ?>"><i class="fa fa-eye"></i></a>
	  				<?php } ?>
                </div>                
                <h1><?php echo $heading_title; ?></h1>
                <ul class="breadcrumb">
                    <?php foreach ($breadcrumbs as $breadcrumb) { ?>
                        <li><a href="<?php echo $breadcrumb['href']; ?>"><?php echo $breadcrumb['text']; ?></a></li>
                    <?php } ?>
                </ul>                
            </div>
        </div>
        
        <div class="container-fluid">
            <?php if ($error_warning) { ?>
                <div class="alert alert-danger"><i class="fa fa-exclamation-circle"></i> <?php echo $error_warning; ?>
                    <button type="button" class="close" data-dismiss="alert">&times;</button>
                </div>
            <?php } ?>
            
            <?php if ($success) { ?>
                <div class="alert alert-success"><i class="fa fa-check-circle"></i> <?php echo $success; ?>
                    <button type="button" class="close" data-dismiss="alert">&times;</button>
                </div>
            <?php } ?>
            
            <div class="panel panel-default">
                <div class="panel-heading">
                    <h3 class="panel-title"><i class="fa fa-list"></i> <?php echo $heading_title; ?></h3>
                </div>
                
                <div class="panel-body">
                    <form action="<?php echo $delete; ?>" method="post" enctype="multipart/form-data" id="form-blog-article">
                        <div class="table-responsive">
                            <table class="table table-bordered table-hover">
                                <thead>
                                    
                                    <tr>
                                        <td style="width: 1px;" class="text-center"><input type="checkbox" onclick="$('input[name*=\'selected\']').prop('checked', this.checked);" /></td>
                                        
                                        <td class="text-left">
                                            <?php if ($sort == 'sbad.article_title') { ?>
        			                			<a href="<?php echo $sort_article_title; ?>" class="<?php echo strtolower($order); ?>"><?php echo $column_article_title; ?></a>
        			                		<?php } else { ?>
        			                			<a href="<?php echo $sort_article_title; ?>"><?php echo $column_article_title; ?></a>
        			                		<?php } ?>
                                        </td>
				                
                                        <td class="text-left">
                                            <?php if ($sort == 'sbau.author_name') { ?>
        			                			<a href="<?php echo $sort_author_name; ?>" class="<?php echo strtolower($order); ?>"><?php echo $column_author_name; ?></a>
        			                		<?php } else { ?>
        			                			<a href="<?php echo $sort_author_name; ?>"><?php echo $column_author_name; ?></a>
        			                		<?php } ?>
                                        </td>	
				                        
                                        <td class="text-right">
                                            <?php if ($sort == 'sba.sort_order') { ?>
        			                			<a href="<?php echo $sort_sortorder; ?>" class="<?php echo strtolower($order); ?>"><?php echo $column_sort_order; ?></a>
        			                		<?php } else { ?>
        			                			<a href="<?php echo $sort_sortorder; ?>"><?php echo $column_sort_order; ?></a>
        			                		<?php } ?>
                                        </td>
                                        
                                        <td class="text-left">
                                            <?php if ($sort == 'sba.status') { ?>
        			                			<a href="<?php echo $sort_status; ?>" class="<?php echo strtolower($order); ?>"><?php echo $column_status; ?></a>
        			                		<?php } else { ?>
        			                			<a href="<?php echo $sort_status; ?>"><?php echo $column_status; ?></a>
        			                		<?php } ?>
                                        </td>
                                        
                                        <td class="text-right">
                                            <?php if ($sort == 'sba.date_added') { ?>
        			                			<a href="<?php echo $sort_date_added; ?>" class="<?php echo strtolower($order); ?>"><?php echo $column_date_added; ?></a>
        			                		<?php } else { ?>
        			                			<a href="<?php echo $sort_date_added; ?>"><?php echo $column_date_added; ?></a>
        			                		<?php } ?>
                                        </td>
                                        
        				                <td class="text-right"><?php echo $column_action; ?></td>
                                    </tr>
                                    
                                </thead>
                                
                                <tbody>
                                    <?php if ($articles) { ?>
			          			        <?php foreach($articles as $article) { ?>
                                            <tr>
                                                <td class="text-center">
                                                    <?php if (in_array($article['simple_blog_article_id'], $selected)) { ?>
                                                        <input type="checkbox" name="selected[]" value="<?php echo $article['simple_blog_article_id']; ?>" checked="checked" />
                                                    <?php } else { ?>
                                                        <input type="checkbox" name="selected[]" value="<?php echo $article['simple_blog_article_id']; ?>" />
                                                    <?php } ?>
                                                </td>
                                                
                                                <td class="text-left"><?php echo $article['article_title']; ?></td>
        	            						<td class="text-left"><?php echo $article['author_name']; ?></td>
        	            						<td class="text-right"><?php echo $article['sort_order']; ?></td>
                        						<td class="text-left"><?php echo $article['status']; ?></td>
                        						<td class="text-right"><?php echo $article['date_added']; ?></td>
                                                <td class="text-right">
                                                    <a href="<?php echo $article['edit']; ?>" data-toggle="tooltip" title="<?php echo $button_edit; ?>" class="btn btn-primary"><i class="fa fa-pencil"></i></a>
                                                </td>
                                            </tr>
                                        <?php } ?>
                                    <?php } else { ?>
                                        <tr>
        			          				<td class="text-center" colspan="7"><?php echo $text_no_results; ?></td>
        			          			</tr>
                                    <?php } ?>
                                </tbody>
                                
                            </table>
                        </div>
                    </form>
                    <div class="row">
                        <div class="col-lg-6 col-md-6 col-sm-6 col-xs-12 text-left"><?php echo $pagination; ?></div>
                        <div class="col-lg-6 col-md-6 col-sm-6 col-xs-12 text-right"><?php echo $results; ?></div>
                    </div>
                </div>
            </div>
        </div>
        
    </div>   
    
<?php echo $footer; ?>