]> CyberLeo.Net >> Repos - Github/YOURLS.git/blob - yourls-infos.php
Use PHP_VERSION_ID
[Github/YOURLS.git] / yourls-infos.php
1 <?php
2 // TODO: make things cleaner. This file is an awful HTML/PHP soup.
3 define( 'YOURLS_INFOS', true );
4 require_once( dirname( __FILE__ ).'/includes/load-yourls.php' );
5 require_once( YOURLS_INC.'/functions-infos.php' );
6 yourls_maybe_require_auth();
7
8 // Variables should be defined in yourls-loader.php, if not try GET request (old behavior of yourls-infos.php)
9 if( !isset( $keyword ) && isset( $_GET['id'] ) )
10         $keyword = $_GET['id'];
11 if( !isset( $aggregate ) && isset( $_GET['all'] ) && $_GET['all'] == 1 && yourls_allow_duplicate_longurls() )
12         $aggregate = true;
13
14 if ( !isset( $keyword ) ) {
15         yourls_do_action( 'infos_no_keyword' );
16         yourls_redirect( YOURLS_SITE, 302 );
17 }
18         
19 // Get basic infos for this shortened URL
20 $keyword = yourls_sanitize_string( $keyword );
21 $longurl = yourls_get_keyword_longurl( $keyword );
22 $clicks = yourls_get_keyword_clicks( $keyword );
23 $timestamp = yourls_get_keyword_timestamp( $keyword );
24 $title = yourls_get_keyword_title( $keyword );
25
26 // Update title if it hasn't been stored yet
27 if( $title == '' ) {
28         $title = yourls_get_remote_title( $longurl );
29         yourls_edit_link_title( $keyword, $title );
30 }
31
32 if ( $longurl === false ) {
33         yourls_do_action( 'infos_keyword_not_found' );
34         yourls_redirect( YOURLS_SITE, 302 );
35 }
36
37 yourls_do_action( 'pre_yourls_infos', $keyword );
38
39
40 if( yourls_do_log_redirect() ) {
41
42         $table = YOURLS_DB_TABLE_LOG;
43         $referrers = array();
44         $direct = $notdirect = 0;
45         $countries = array();
46         $dates = array();
47         $list_of_days = array();
48         $list_of_months = array();
49         $list_of_years = array();
50         $last_24h = array();
51         
52         if( yourls_allow_duplicate_longurls() )
53                 $keyword_list = yourls_get_longurl_keywords( $longurl );
54         // Define keyword query range : either a single keyword or a list of keywords
55         if( $aggregate ) {
56                 $keyword_range = "IN ( '" . join( "', '", $keyword_list ) . "' )"; // IN ( 'blah', 'bleh', 'bloh' )
57         } else {
58                 $keyword_range = sprintf( "= '%s'", yourls_escape( $keyword ) );
59         }
60         
61         
62         // *** Referrers ***
63         $query = "SELECT `referrer`, COUNT(*) AS `count` FROM `$table` WHERE `shorturl` $keyword_range GROUP BY `referrer`;";
64         $rows = $ydb->get_results( yourls_apply_filter( 'stat_query_referrer', $query ) );
65         
66         // Loop through all results and build list of referrers, countries and hits per day
67         foreach( (array)$rows as $row ) {
68                 if ( $row->referrer == 'direct' ) {
69                         $direct = $row->count;
70                         continue;
71                 }
72                 
73                 $host = yourls_get_domain( $row->referrer );
74                 if( !array_key_exists( $host, $referrers ) )
75                         $referrers[$host] = array( );
76                 if( !array_key_exists( $row->referrer, $referrers[$host] ) ) {
77                         $referrers[$host][$row->referrer] = $row->count;
78                         $notdirect += $row->count;                      
79                 } else {
80                         $referrers[$host][$row->referrer] += $row->count;
81                         $notdirect += $row->count;                              
82                 }
83         }
84         
85         // Sort referrers. $referrer_sort is a array of most frequent domains
86         arsort( $referrers );
87         $referrer_sort = array();
88         $number_of_sites = count( array_keys( $referrers ) );
89         foreach( $referrers as $site => $urls ) {
90                 if( count($urls) > 1 || $number_of_sites == 1 )
91                         $referrer_sort[$site] = array_sum( $urls );
92         }
93         arsort($referrer_sort);
94
95         
96         // *** Countries ***
97         $query = "SELECT `country_code`, COUNT(*) AS `count` FROM `$table` WHERE `shorturl` $keyword_range GROUP BY `country_code`;";
98         $rows = $ydb->get_results( yourls_apply_filter( 'stat_query_country', $query ) );
99         
100         // Loop through all results and build list of countries and hits
101         foreach( (array)$rows as $row ) {
102                 if ("$row->country_code")
103                         $countries["$row->country_code"] = $row->count;
104         }
105         
106         // Sort countries, most frequent first
107         if ( $countries )
108                 arsort( $countries );
109
110                 
111         // *** Dates : array of $dates[$year][$month][$day] = number of clicks ***
112         $query = "SELECT 
113                 DATE_FORMAT(`click_time`, '%Y') AS `year`, 
114                 DATE_FORMAT(`click_time`, '%m') AS `month`, 
115                 DATE_FORMAT(`click_time`, '%d') AS `day`, 
116                 COUNT(*) AS `count` 
117         FROM `$table`
118         WHERE `shorturl` $keyword_range
119         GROUP BY `year`, `month`, `day`;";
120         $rows = $ydb->get_results( yourls_apply_filter( 'stat_query_dates', $query ) );
121         
122         // Loop through all results and fill blanks
123         foreach( (array)$rows as $row ) {
124                 if( !array_key_exists($row->year, $dates ) )
125                         $dates[$row->year] = array();
126                 if( !array_key_exists( $row->month, $dates[$row->year] ) )
127                         $dates[$row->year][$row->month] = array();
128                 if( !array_key_exists( $row->day, $dates[$row->year][$row->month] ) )
129                         $dates[$row->year][$row->month][$row->day] = $row->count;
130                 else
131                         $dates[$row->year][$row->month][$row->day] += $row->count;
132         }
133         
134         // Sort dates, chronologically from [2007][12][24] to [2009][02][19]
135         ksort( $dates );
136         foreach( $dates as $year=>$months ) {
137                 ksort( $dates[$year] );
138                 foreach( $months as $month=>$day ) {
139                         ksort( $dates[$year][$month] );
140                 }
141         }
142         
143         // Get $list_of_days, $list_of_months, $list_of_years
144         reset( $dates );
145         if( $dates ) {
146                 extract( yourls_build_list_of_days( $dates ) );
147         }
148
149         
150         // *** Last 24 hours : array of $last_24h[ $hour ] = number of click ***
151         $query = "SELECT
152                 DATE_FORMAT(DATE_ADD(`click_time`, INTERVAL " . YOURLS_HOURS_OFFSET . " HOUR), '%H %p') AS `time`,
153                 COUNT(*) AS `count`
154         FROM `$table`
155         WHERE `shorturl` $keyword_range AND DATE_ADD(`click_time`, INTERVAL " . YOURLS_HOURS_OFFSET . " HOUR) > (CURRENT_TIMESTAMP - INTERVAL 1 DAY)
156         GROUP BY `time`;";
157         $rows = $ydb->get_results( yourls_apply_filter( 'stat_query_last24h', $query ) );
158         
159         $_last_24h = array();
160         foreach( (array)$rows as $row ) {
161                 if ( isset( $row->time ) )
162                         $_last_24h[ "$row->time" ] = $row->count;
163         }
164         
165         $now = intval( date('U') );
166         for ($i = 23; $i >= 0; $i--) {
167                 $h = date('H A', ($now - ($i * 60 * 60) + (YOURLS_HOURS_OFFSET * 60 * 60)) );
168                 // If the $last_24h doesn't have all the hours, insert missing hours with value 0
169                 $last_24h[ $h ] = array_key_exists( $h, $_last_24h ) ? $_last_24h[ $h ] : 0 ;
170         }
171         unset( $_last_24h );
172         
173         // *** Queries all done, phew ***       
174         
175         // Filter all this junk if applicable. Be warned, some are possibly huge datasets.
176         $referrers      = yourls_apply_filter( 'pre_yourls_info_referrers', $referrers );
177         $referrer_sort  = yourls_apply_filter( 'pre_yourls_info_referrer_sort', $referrer_sort );
178         $direct         = yourls_apply_filter( 'pre_yourls_info_direct', $direct );
179         $notdirect      = yourls_apply_filter( 'pre_yourls_info_notdirect', $notdirect );
180         $dates          = yourls_apply_filter( 'pre_yourls_info_dates', $dates );
181         $list_of_days   = yourls_apply_filter( 'pre_yourls_info_list_of_days', $list_of_days );
182         $list_of_months = yourls_apply_filter( 'pre_yourls_info_list_of_months', $list_of_months );
183         $list_of_years  = yourls_apply_filter( 'pre_yourls_info_list_of_years', $list_of_years );
184         $last_24h       = yourls_apply_filter( 'pre_yourls_info_last_24h', $last_24h );
185         $countries      = yourls_apply_filter( 'pre_yourls_info_countries', $countries );
186
187         // I can haz debug data
188         /**
189         echo "<pre>";
190         echo "referrers: "; print_r( $referrers );
191         echo "referrer sort: "; print_r( $referrer_sort );
192         echo "direct: $direct\n";
193         echo "notdirect: $notdirect\n";
194         echo "dates: "; print_r( $dates );
195         echo "list of days: "; print_r( $list_of_days );
196         echo "list_of_months: "; print_r( $list_of_months );
197         echo "list_of_years: "; print_r( $list_of_years );
198         echo "last_24h: "; print_r( $last_24h );
199         echo "countries: "; print_r( $countries );
200         die();
201         **/
202
203 }
204
205 yourls_html_head( 'infos', yourls_s( 'Statistics for %s', YOURLS_SITE.'/'.$keyword ) );
206 yourls_html_logo();
207 yourls_html_menu();
208 ?>
209
210 <h2 id="informations"><?php echo yourls_esc_html( $title ); ?></h2>
211
212 <h3><span class="label"><?php yourls_e( 'Short URL'); ?>:</span> <img src="<?php yourls_favicon() ?>"/>
213 <?php if( $aggregate ) {
214         $i = 0;
215         foreach( $keyword_list as $k ) {
216                 $i++;
217                 if ( $i == 1 ) {
218                         yourls_html_link( yourls_link($k) );
219                 } else {
220                         yourls_html_link( yourls_link($k), "/$k" );
221                 }
222                 if ( $i < count( $keyword_list ) )
223                         echo ' + ';
224         }
225 } else {
226         yourls_html_link( yourls_link($keyword) );
227         if( isset( $keyword_list ) && count( $keyword_list ) > 1 )
228                 echo ' <a href="'. yourls_link($keyword).'+all" title="' . yourls_esc_attr__( 'Aggregate stats for duplicate short URLs' ) . '"><img src="' . yourls_match_current_protocol( YOURLS_SITE ) . '/images/chart_bar_add.png" border="0" /></a>';
229 } ?></h3>
230 <h3 id="longurl"><span class="label"><?php yourls_e( 'Long URL'); ?>:</span> <img class="fix_images" src="<?php echo yourls_get_favicon_url( $longurl );?>" /> <?php yourls_html_link( $longurl, yourls_trim_long_string( $longurl ), 'longurl' ); ?></h3>
231
232 <div id="tabs">
233         <div class="wrap_unfloat">
234         <ul id="headers" class="toggle_display stat_tab">
235                 <?php if( yourls_do_log_redirect() ) { ?>
236                 <li class="selected"><a href="#stat_tab_stats"><h2><?php yourls_e( 'Traffic statistics'); ?></h2></a></li>
237                 <li><a href="#stat_tab_location"><h2><?php yourls_e( 'Traffic location'); ?></h2></a></li>
238                 <li><a href="#stat_tab_sources"><h2><?php yourls_e( 'Traffic sources'); ?></h2></a></li>
239                 <?php } ?>
240                 <li><a href="#stat_tab_share"><h2><?php yourls_e( 'Share'); ?></h2></a></li>
241         </ul>
242         </div>
243
244                         
245 <?php if( yourls_do_log_redirect() ) { ?>
246         <div id="stat_tab_stats" class="tab">
247                 <h2><?php yourls_e( 'Traffic statistics'); ?></h2>
248                 
249                 <?php yourls_do_action( 'pre_yourls_info_stats', $keyword ); ?>
250                 
251                 <?php if ( $list_of_days ) { ?>
252                 
253                         <?php
254                         $graphs = array(
255                                 '24' => yourls__( 'Last 24 hours' ),
256                                 '7'  => yourls__( 'Last 7 days' ),
257                                 '30' => yourls__( 'Last 30 days' ),
258                                 'all'=> yourls__( 'All time' ),
259                         );
260                         
261                         // Which graph to generate ?
262                         $do_all = $do_30 = $do_7 = $do_24 = false;
263                         $hits_all = array_sum( $list_of_days );
264                         $hits_30  = array_sum( array_slice( $list_of_days, -30 ) );
265                         $hits_7   = array_sum( array_slice( $list_of_days, -7 ) );
266                         $hits_24  = array_sum( $last_24h );
267                         if( $hits_all > 0 )
268                                 $do_all = true; // graph for all days range
269                         if( $hits_30 > 0 && count( array_slice( $list_of_days, -30 ) ) == 30 )
270                                 $do_30 = true; // graph for last 30 days
271                         if( $hits_7 > 0 && count( array_slice( $list_of_days, -7 ) ) == 7 )
272                                 $do_7 = true; // graph for last 7 days
273                         if( $hits_24 > 0 )
274                                 $do_24 = true; // graph for last 24 hours
275                         
276                         // Which graph to display ?
277                         $display_all = $display_30 = $display_7 = $display_24 = false;
278                         if( $do_24 ) {
279                                 $display_24 = true;
280                         } elseif ( $do_7 ) {
281                                 $display_7 = true;
282                         } elseif ( $do_30 ) {
283                                 $display_30 = true;
284                         } elseif ( $do_all ) {
285                                 $display_all = true;
286                         }                               
287                         ?>
288
289                         <table border="0" cellspacing="2">
290                         <tr>
291                                 <td valign="top">
292                                 <ul id="stats_lines" class="toggle_display stat_line">
293                                 <?php
294                                 if( $do_24 == true )
295                                         echo '<li><a href="#stat_line_24">' . yourls__( 'Last 24 hours' ) . '</a>';
296                                 if( $do_7 == true )
297                                         echo '<li><a href="#stat_line_7">' . yourls__( 'Last 7 days' ) . '</a>';
298                                 if( $do_30 == true )
299                                         echo '<li><a href="#stat_line_30">' . yourls__( 'Last 30 days' ) . '</a>';
300                                 if( $do_all == true )
301                                         echo '<li><a href="#stat_line_all">' . yourls__( 'All time' ) . '</a>';
302                                 ?>                              
303                                 </ul>
304                                 <?php
305                                 // Generate, and display if applicable, each needed graph
306                                 foreach( $graphs as $graph => $graphtitle ) {
307                                         if( ${'do_'.$graph} == true ) {
308                                                 $display = ( ${'display_'.$graph} === true ? 'display:block' : 'display:none' );
309                                                 echo "<div id='stat_line_$graph' class='stats_line line' style='$display'>";
310                                                 echo '<h3>' . yourls_s( 'Number of hits : %s' , $graphtitle ) . '</h3>';
311                                                 switch( $graph ) {
312                                                         case '24':
313                                                                 yourls_stats_line( $last_24h, "stat_line_$graph" );
314                                                                 break;
315
316                                                         case '7':
317                                                         case '30':
318                                                                 $slice = array_slice( $list_of_days, intval( $graph ) * -1 );
319                                                                 yourls_stats_line( $slice, "stat_line_$graph" );
320                                                                 unset( $slice );
321                                                                 break;
322
323                                                         case 'all':
324                                                                 yourls_stats_line( $list_of_days, "stat_line_$graph" );
325                                                                 break;
326                                                 }
327                                                 echo "</div>\n";
328                                         }                       
329                                 } ?>
330                                 
331                                 </td>
332                                 <td valign="top">
333                                 <h3><?php yourls_e( 'Historical click count' ); ?></h3>
334                                 <?php
335                                 $ago = round( (date('U') - strtotime($timestamp)) / (24* 60 * 60 ) );
336                                 if( $ago <= 1 ) {
337                                         $daysago = '';
338                                 } else {
339                                         $daysago = ' (' . sprintf( yourls_n( 'about 1 day ago', 'about %s days ago', $ago ), $ago ) . ')';
340                                 }
341                                 ?>
342                                 <p><?php echo /* //translators: eg Short URL created on March 23rd 1972 */ yourls_s( 'Short URL created on %s', yourls_date_i18n( "F j, Y @ g:i a", ( strtotime( $timestamp ) + YOURLS_HOURS_OFFSET * 3600 ) ) ) . $daysago; ?></p>
343                                 <div class="wrap_unfloat">
344                                         <ul class="no_bullet toggle_display stat_line" id="historical_clicks">
345                                         <?php
346                                         foreach( $graphs as $graph => $graphtitle ) {
347                                                 if ( ${'do_'.$graph} ) {
348                                                         $link = "<a href='#stat_line_$graph'>$graphtitle</a>";
349                                                 } else {
350                                                         $link = $graphtitle;
351                                                 }
352                                                 $stat = '';
353                                                 if( ${'do_'.$graph} ) {
354                                                         switch( $graph ) {
355                                                                 case '7':
356                                                                 case '30':
357                                                                         $stat = yourls_s( '%s per day', round( ( ${'hits_'.$graph} / intval( $graph ) ) * 100 ) / 100 );
358                                                                         break;
359                                                                 case '24':
360                                                                         $stat = yourls_s( '%s per hour', round( ( ${'hits_'.$graph} / 24 ) * 100 ) / 100 );
361                                                                         break;
362                                                                 case 'all':
363                                                                         if( $ago > 0 )
364                                                                                 $stat = yourls_s( '%s per day', round( ( ${'hits_'.$graph} / $ago ) * 100 ) / 100 );
365                                                         }
366                                                 }
367                                                 $hits = sprintf( yourls_n( '%s hit', '%s hits', ${'hits_'.$graph} ), ${'hits_'.$graph} );
368                                                 echo "<li><span class='historical_link'>$link</span> <span class='historical_count'>$hits</span> $stat</li>\n";
369                                         }
370                                         ?>
371                                         </ul>
372                                 </div>
373                 
374                                 <h3><?php yourls_e( 'Best day' ); ?></h3>
375                                 <?php
376                                 $best = yourls_stats_get_best_day( $list_of_days );
377                                 $best_time['day']   = date( "d", strtotime( $best['day'] ) );
378                                 $best_time['month'] = date( "m", strtotime( $best['day'] ) );
379                                 $best_time['year']  = date( "Y", strtotime( $best['day'] ) );
380                                 ?>
381                                 <p><?php echo sprintf( /* //translators: eg. 43 hits on January 1, 1970 */ yourls_n( '<strong>%1$s</strong> hit on %2$s', '<strong>%1$s</strong> hits on %2$s', $best['max'] ), $best['max'],  yourls_date_i18n( "F j, Y", strtotime( $best['day'] ) ) ); ?>. 
382                                 <a href="" class='details hide-if-no-js' id="more_clicks"><?php yourls_e( 'Click for more details' ); ?></a></p>
383                                 <ul id="details_clicks" style="display:none">
384                                         <?php
385                                         foreach( $dates as $year=>$months ) {
386                                                 $css_year = ( $year == $best_time['year'] ? 'best_year' : '' );
387                                                 if( count( $list_of_years ) > 1 ) {
388                                                         $li = "<a href='' class='details' id='more_year$year'>" . yourls_s( 'Year %s', $year ) . '</a>';
389                                                         $display = 'none';
390                                                 } else {
391                                                         $li = yourls_s( 'Year %s', $year );
392                                                         $display = 'block';
393                                                 }
394                                                 echo "<li><span class='$css_year'>$li</span>";
395                                                 echo "<ul style='display:$display' id='details_year$year'>";
396                                                 foreach( $months as $month=>$days ) {
397                                                         $css_month = ( ( $month == $best_time['month'] && ( $css_year == 'best_year' ) ) ? 'best_month' : '' );
398                                                         $monthname = yourls_date_i18n( "F", mktime( 0, 0, 0, $month, 1 ) );
399                                                         if( count( $list_of_months ) > 1 ) {
400                                                                 $li = "<a href='' class='details' id='more_month$year$month'>$monthname</a>";
401                                                                 $display = 'none';
402                                                         } else {
403                                                                 $li = "$monthname";
404                                                                 $display = 'block';
405                                                         }
406                                                         echo "<li><span class='$css_month'>$li</span>";
407                                                         echo "<ul style='display:$display' id='details_month$year$month'>";
408                                                                 foreach( $days as $day=>$hits ) {
409                                                                         $class = ( $hits == $best['max'] ? 'class="bestday"' : '' );
410                                                                         echo "<li $class>$day: " . sprintf( yourls_n( '1 hit', '%s hits', $hits ), $hits ) ."</li>\n";
411                                                                 }
412                                                         echo "</ul>\n";
413                                                 }
414                                                 echo "</ul>\n";
415                                         }
416                                         ?>
417                                 </ul>
418                                 
419                                 </td>
420                                 
421                         </tr>
422                         </table>
423
424                 <?php yourls_do_action( 'post_yourls_info_stats', $keyword ); ?>
425                 
426                 <?php } else {
427                         echo '<p>' . yourls__( 'No traffic yet. Get some clicks first!' ) . '</p>';
428                 } ?>
429         </div>
430
431
432         <div id="stat_tab_location" class="tab">
433                 <h2><?php yourls_e( 'Traffic location' ); ?></h2>
434                 
435                 <?php yourls_do_action( 'pre_yourls_info_location', $keyword ); ?>
436
437                 <?php if ( $countries ) { ?>
438                         
439                         <table border="0" cellspacing="2">
440                         <tr>
441                                 <td valign="top">
442                                         <h3><?php yourls_e( 'Top 5 countries' ); ?></h3>
443                                         <?php yourls_stats_pie( $countries, 5, '340x220', 'stat_tab_location_pie' ); ?>
444                                         <p><a href="" class='details hide-if-no-js' id="more_countries"><?php yourls_e( 'Click for more details' ); ?></a></p>
445                                         <ul id="details_countries" style="display:none" class="no_bullet">
446                                         <?php
447                                         foreach( $countries as $code=>$count ) {
448                                                 echo "<li><img src='".yourls_geo_get_flag( $code )."' /> $code (".yourls_geo_countrycode_to_countryname( $code ) . ') : ' . sprintf( yourls_n( '1 hit', '%s hits', $count ), $count ) . "</li>\n";
449                                         }               
450                                         ?>
451                                         </ul>
452
453                                 </td>
454                                 <td valign="top">
455                                         <h3><?php yourls_e( 'Overall traffic' ); ?></h3>
456                                         <?php yourls_stats_countries_map( $countries, 'stat_tab_location_map' ); ?>
457                                 </td>
458                         </tr>
459                         </table>
460                 
461                 <?php yourls_do_action( 'post_yourls_info_location', $keyword ); ?>
462
463                 <?php } else {
464                         echo '<p>' . yourls__( 'No country data.' ) . '</p>';
465                 } ?>
466         </div>
467                                 
468                                 
469         <div id="stat_tab_sources" class="tab">
470                 <h2><?php yourls_e( 'Traffic sources' ); ?></h2>
471                 
472                 <?php yourls_do_action( 'pre_yourls_info_sources', $keyword ); ?>
473
474                 <?php if ( $referrers ) { ?>
475                         
476                         <table border="0" cellspacing="2">
477                         <tr>
478                                 <td valign="top">
479                                         <h3><?php yourls_e( 'Referrer shares' ); ?></h3>
480                                         <?php
481                                         if ( $number_of_sites > 1 )
482                                                 $referrer_sort[ yourls__( 'Others' ) ] = count( $referrers );
483                                         yourls_stats_pie( $referrer_sort, 5, '440x220', 'stat_tab_source_ref' );
484                                         unset( $referrer_sort[yourls__('Others')] );
485                                         ?>
486                                         <h3><?php yourls_e( 'Referrers' ); ?></h3>
487                                         <ul class="no_bullet">
488                                                 <?php
489                                                 $i = 0;
490                                                 foreach( $referrer_sort as $site => $count ) {
491                                                         $i++;
492                                                         $favicon = yourls_get_favicon_url( $site );
493                                                         echo "<li class='sites_list'><img src='$favicon' class='fix_images'/> $site: <strong>$count</strong> <a href='' class='details hide-if-no-js' id='more_url$i'>" . yourls__( '(details)' ) . "</a></li>\n";
494                                                         echo "<ul id='details_url$i' style='display:none'>";
495                                                         foreach( $referrers[$site] as $url => $count ) {
496                                                                 echo "<li>"; yourls_html_link($url); echo ": <strong>$count</strong></li>\n";
497                                                         }
498                                                         echo "</ul>\n";
499                                                         unset( $referrers[$site] );
500                                                 }
501                                                 // Any referrer left? Group in "various"
502                                                 if ( $referrers ) {
503                                                         echo "<li id='sites_various'>" . yourls__( 'Various:' ) . " <strong>". count( $referrers ). "</strong> <a href='' class='details hide-if-no-js' id='more_various'>" . yourls__( '(details)' ) . "</a></li>\n";
504                                                         echo "<ul id='details_various' style='display:none'>";
505                                                         foreach( $referrers as $url ) {
506                                                                 echo "<li>"; yourls_html_link(key($url)); echo ": 1</li>\n";    
507                                                         }
508                                                         echo "</ul>\n";
509                                                 }
510                                                 ?>
511                                                 
512                                         </ul>
513                                 
514                                 </td>
515                                 
516                                 <td valign="top">
517                                         <h3><?php yourls_e( 'Direct vs Referrer Traffic' ); ?></h3>
518                                         <?php
519                                         yourls_stats_pie( array( yourls__( 'Direct' ) => $direct, yourls__( 'Referrers' ) => $notdirect ), 5, '440x220', 'stat_tab_source_direct' );
520                                         ?>
521                                         <p><?php yourls_e( 'Direct traffic:' ); echo ' ' . sprintf( yourls_n( '<strong>%s</strong> hit', '<strong>%s</strong> hits', $direct ), $direct ); ?> </p>
522                                         <p><?php yourls_e( 'Referrer traffic:' ); echo ' ' . sprintf( yourls_n( '<strong>%s</strong> hit', '<strong>%s</strong> hits', $notdirect ), $notdirect ); ?> </p>
523
524                                 </td>
525                         </tr>
526                         </table>
527
528                 <?php yourls_do_action( 'post_yourls_info_sources', $keyword ); ?>
529                         
530                 <?php } else {
531                         echo '<p>' . yourls__( 'No referrer data.' ) . '</p>';
532                 } ?>
533                         
534         </div>
535
536 <?php } // endif do log redirect ?>
537
538
539         <div id="stat_tab_share" class="tab">
540                 <h2><?php yourls_e( 'Share' ); ?></h2>
541                 
542                 <?php yourls_share_box( $longurl, yourls_link($keyword), $title, '', '<h3>' . yourls__( 'Short link' ) . '</h3>', '<h3>' . yourls__( 'Quick Share' ) . '</h3>'); ?>
543
544         </div>
545         
546 </div>
547
548
549 <?php yourls_html_footer(); ?>