95 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			95 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /*  Copyright 2014-2016 Presslabs SRL <ping@presslabs.com>
 | |
| 
 | |
|     This program is free software; you can redistribute it and/or modify
 | |
|     it under the terms of the GNU General Public License, version 2, as
 | |
|     published by the Free Software Foundation.
 | |
| 
 | |
|     This program is distributed in the hope that it will be useful,
 | |
|     but WITHOUT ANY WARRANTY; without even the implied warranty of
 | |
|     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | |
|     GNU General Public License for more details.
 | |
| 
 | |
|     You should have received a copy of the GNU General Public License
 | |
|     along with this program; if not, write to the Free Software
 | |
|     Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 | |
| */
 | |
| 
 | |
| class Gitium_Submenu_Commits extends Gitium_Menu {
 | |
| 
 | |
| 	public function __construct() {
 | |
| 		parent::__construct( $this->gitium_menu_slug, $this->commits_menu_slug );
 | |
| 		add_action( GITIUM_ADMIN_MENU_ACTION, array( $this, 'admin_menu' ) );
 | |
| 	}
 | |
| 
 | |
| 	public function admin_menu() {
 | |
| 		$submenu_hook = add_submenu_page(
 | |
| 			$this->menu_slug,
 | |
| 			__( 'Git Commits', 'gitium' ),
 | |
| 			__( 'Commits', 'gitium' ),
 | |
| 			GITIUM_MANAGE_OPTIONS_CAPABILITY,
 | |
| 			$this->submenu_slug,
 | |
| 			array( $this, 'page' )
 | |
| 		);
 | |
| 		new Gitium_Help( $submenu_hook, 'commits' );
 | |
| 	}
 | |
| 
 | |
| 	public function table_head() {
 | |
| 		?>
 | |
| 		<thead>
 | |
| 		<tr>
 | |
| 			<th scope="col"><?php _e( 'Commits', 'gitium' ); ?></th>
 | |
| 			<th scope="col"></th>
 | |
| 		</tr>
 | |
| 		</thead>
 | |
| 		<?php
 | |
| 	}
 | |
| 
 | |
| 	public function table_end_row() {
 | |
| 		echo '</tr>';
 | |
| 	}
 | |
| 
 | |
| 	public function table_start_row() {
 | |
| 		static $counter = 0;
 | |
| 		$counter++;
 | |
| 		echo ( 0 != $counter % 2 ) ? '<tr class="active">' : '<tr class="inactive">';
 | |
| 	}
 | |
| 
 | |
| 	public function page() {
 | |
| 		?>
 | |
| 		<div class="wrap">
 | |
| 		<h2><?php printf( __( 'Last %s commits', 'gitium' ), GITIUM_LAST_COMMITS ); ?></h2>
 | |
| 		<table class="wp-list-table widefat plugins">
 | |
| 		<?php $this->table_head(); ?>
 | |
| 		<tbody>
 | |
| 		<?php
 | |
| 		foreach ( $this->git->get_last_commits( GITIUM_LAST_COMMITS ) as $commit_id => $data ) {
 | |
| 			unset( $committer_name );
 | |
| 			extract( $data );
 | |
| 			if ( isset( $committer_name ) ) {
 | |
| 				$committer         = "<span title='$committer_email'> -> $committer_name " . sprintf( __( 'committed %s ago', 'gitium' ), human_time_diff( strtotime( $committer_date ) ) ) . '</span>';
 | |
| 				$committers_avatar = '<div style="position:absolute; left:30px; border: 1px solid white; background:white; height:17px; top:30px; border-radius:2px">' . get_avatar( $committer_email, 16 ) . '</div>';
 | |
| 			} else {
 | |
| 				$committer = '';
 | |
| 				$committers_avatar = '';
 | |
| 			}
 | |
| 			$this->table_start_row();
 | |
| 			?>
 | |
| 			<td style="position:relative">
 | |
| 				<div style="float:left; width:auto; height:auto; padding-left:2px; padding-right:5px; padding-top:2px; margin-right:5px; border-radius:2px"><?php echo get_avatar( $author_email, 32 ); ?></div>
 | |
| 				<?php echo $committers_avatar; ?>
 | |
| 				<div style="float:left; width:auto; height:auto;"><strong><?php echo esc_html( $subject ); ?></strong><br />
 | |
| 				<span title="<?php echo esc_attr( $author_email ); ?>"><?php echo esc_html( $author_name ) . ' ' . sprintf( __( 'authored %s ago', 'gitium' ), human_time_diff( strtotime( $author_date ) ) ); ?></span><?php echo $committer; ?></div>
 | |
| 			</td>
 | |
| 			<td><p style="padding-top:8px"><?php echo $commit_id; ?></p></td>
 | |
| 		<?php
 | |
| 			$this->table_end_row();
 | |
| 		}
 | |
| 		?>
 | |
| 		</tbody>
 | |
| 		</table>
 | |
| 		</div>
 | |
| 		<?php
 | |
| 	}
 | |
| }
 |