]> CyberLeo.Net >> Repos - Github/YOURLS.git/blob - includes/functions-html.php
Include once to avoid duplication
[Github/YOURLS.git] / includes / functions-html.php
1 <?php
2
3 /**
4  * Display <h1> header and logo
5  *
6  */
7 function yourls_html_logo() {
8         yourls_do_action( 'pre_html_logo' );
9         ?>
10         <h1>
11                 <a href="<?php echo yourls_admin_url( 'index.php' ) ?>" title="YOURLS"><span>YOURLS</span>: <span>Y</span>our <span>O</span>wn <span>URL</span> <span>S</span>hortener<br/>
12                 <img src="<?php yourls_site_url(); ?>/images/yourls-logo.png" alt="YOURLS" title="YOURLS" border="0" style="border: 0px;" /></a>
13         </h1>
14         <?php
15         yourls_do_action( 'html_logo' );
16 }
17
18 /**
19  * Display HTML head and <body> tag
20  *
21  * @param string $context Context of the page (stats, index, infos, ...)
22  * @param string $title HTML title of the page
23  */
24 function yourls_html_head( $context = 'index', $title = '' ) {
25
26         yourls_do_action( 'pre_html_head', $context, $title );
27         
28         // All components to false, except when specified true
29         $share = $insert = $tablesorter = $tabs = $cal = $charts = false;
30         
31         // Load components as needed
32         switch ( $context ) {
33                 case 'infos':
34                         $share = $tabs = $charts = true;
35                         break;
36                         
37                 case 'bookmark':
38                         $share = $insert = $tablesorter = true;
39                         break;
40                         
41                 case 'index':
42                         $insert = $tablesorter = $cal = $share = true;
43                         break;
44                         
45                 case 'plugins':
46                 case 'tools':
47                         $tablesorter = true;
48                         break;
49                 
50                 case 'install':
51                 case 'login':
52                 case 'new':
53                 case 'upgrade':
54                         break;
55         }
56         
57         // Force no cache for all admin pages
58         if( yourls_is_admin() && !headers_sent() ) {
59                 header( 'Expires: Thu, 23 Mar 1972 07:00:00 GMT' );
60                 header( 'Last-Modified: ' . gmdate( 'D, d M Y H:i:s' ) . ' GMT' );
61                 header( 'Cache-Control: no-cache, must-revalidate, max-age=0' );
62                 header( 'Pragma: no-cache' );
63                 yourls_do_action( 'admin_headers', $context, $title );
64         }
65         
66         // Store page context in global object
67         global $ydb;
68         $ydb->context = $context;
69         
70         // Body class
71         $bodyclass = yourls_apply_filter( 'bodyclass', '' );
72         $bodyclass .= ( yourls_is_mobile_device() ? 'mobile' : 'desktop' );
73         
74         // Page title
75         $_title = 'YOURLS &mdash; Your Own URL Shortener | ' . yourls_link();
76         $title = $title ? $title . " &laquo; " . $_title : $_title;
77         $title = yourls_apply_filter( 'html_title', $title, $context );
78         
79         ?>
80 <!DOCTYPE html>
81 <html <?php yourls_html_language_attributes(); ?>>
82 <head>
83         <title><?php echo $title ?></title>
84         <link rel="shortcut icon" href="<?php yourls_favicon(); ?>" />
85         <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
86         <meta http-equiv="X-UA-Compatible" content="IE-9"/>
87         <meta name="author" content="Ozh RICHARD & Lester CHAN for http://yourls.org/" />
88         <meta name="generator" content="YOURLS <?php echo YOURLS_VERSION ?>" />
89         <meta name="description" content="Insert URL &laquo; YOURLS &raquo; Your Own URL Shortener' | <?php yourls_site_url(); ?>" />
90         <script src="<?php yourls_site_url(); ?>/js/jquery-1.9.1.min.js?v=<?php echo YOURLS_VERSION; ?>" type="text/javascript"></script>
91         <script src="<?php yourls_site_url(); ?>/js/common.js?v=<?php echo YOURLS_VERSION; ?>" type="text/javascript"></script>
92         <script src="<?php yourls_site_url(); ?>/js/jquery.notifybar.js?v=<?php echo YOURLS_VERSION; ?>" type="text/javascript"></script>
93         <link rel="stylesheet" href="<?php yourls_site_url(); ?>/css/style.css?v=<?php echo YOURLS_VERSION; ?>" type="text/css" media="screen" />
94         <?php if ( $tabs ) { ?>
95                 <link rel="stylesheet" href="<?php yourls_site_url(); ?>/css/infos.css?v=<?php echo YOURLS_VERSION; ?>" type="text/css" media="screen" />
96                 <script src="<?php yourls_site_url(); ?>/js/infos.js?v=<?php echo YOURLS_VERSION; ?>" type="text/javascript"></script>
97         <?php } ?>
98         <?php if ( $tablesorter ) { ?>
99                 <link rel="stylesheet" href="<?php yourls_site_url(); ?>/css/tablesorter.css?v=<?php echo YOURLS_VERSION; ?>" type="text/css" media="screen" />
100                 <script src="<?php yourls_site_url(); ?>/js/jquery.tablesorter.min.js?v=<?php echo YOURLS_VERSION; ?>" type="text/javascript"></script>
101         <?php } ?>
102         <?php if ( $insert ) { ?>
103                 <script src="<?php yourls_site_url(); ?>/js/insert.js?v=<?php echo YOURLS_VERSION; ?>" type="text/javascript"></script>
104         <?php } ?>
105         <?php if ( $share ) { ?>
106                 <link rel="stylesheet" href="<?php yourls_site_url(); ?>/css/share.css?v=<?php echo YOURLS_VERSION; ?>" type="text/css" media="screen" />
107                 <script src="<?php yourls_site_url(); ?>/js/share.js?v=<?php echo YOURLS_VERSION; ?>" type="text/javascript"></script>
108                 <script src="<?php yourls_site_url(); ?>/js/jquery.zclip.min.js?v=<?php echo YOURLS_VERSION; ?>" type="text/javascript"></script>
109         <?php } ?>
110         <?php if ( $cal ) { ?>
111                 <link rel="stylesheet" href="<?php yourls_site_url(); ?>/css/cal.css?v=<?php echo YOURLS_VERSION; ?>" type="text/css" media="screen" />
112                 <?php yourls_l10n_calendar_strings(); ?>
113                 <script src="<?php yourls_site_url(); ?>/js/jquery.cal.js?v=<?php echo YOURLS_VERSION; ?>" type="text/javascript"></script>
114         <?php } ?>
115         <?php if ( $charts ) { ?>
116                         <script type="text/javascript" src="https://www.google.com/jsapi"></script>
117                         <script type="text/javascript">
118                                          google.load('visualization', '1.0', {'packages':['corechart', 'geochart']});
119                         </script>
120         <?php } ?>
121         <script type="text/javascript">
122         //<![CDATA[
123                 var ajaxurl  = '<?php echo yourls_admin_url( 'admin-ajax.php' ); ?>';
124                 var zclipurl = '<?php yourls_site_url(); ?>/js/ZeroClipboard.swf';
125         //]]>
126         </script>
127         <?php yourls_do_action( 'html_head', $context ); ?>
128 </head>
129 <body class="<?php echo $context; ?> <?php echo $bodyclass; ?>">
130 <div id="wrap">
131         <?php
132 }
133
134 /**
135  * Display HTML footer (including closing body & html tags)
136  *
137  */
138 function yourls_html_footer() {
139         global $ydb;
140         
141         $num_queries = sprintf( yourls_n( '1 query', '%s queries', $ydb->num_queries ), $ydb->num_queries );
142         ?>
143         </div> <?php // wrap ?>
144         <div id="footer"><p>
145                 <?php
146                 $footer  = yourls_s( 'Powered by %s', '<a href="http://yourls.org/" title="YOURLS">YOURLS</a> v ' . YOURLS_VERSION );
147                 $footer .= ' &ndash; '.$num_queries;
148                 echo yourls_apply_filters( 'html_footer_text', $footer );
149                 ?>
150         </p></div>
151         <?php if( defined( 'YOURLS_DEBUG' ) && YOURLS_DEBUG == true ) {
152                 echo '<div style="text-align:left"><pre>';
153                 echo join( "\n", $ydb->debug_log );
154                 echo '</div>';
155         } ?>
156         <?php yourls_do_action( 'html_footer', $ydb->context ); ?>
157         </body>
158         </html>
159         <?php
160 }
161
162 /**
163  * Display "Add new URL" box
164  *
165  * @param string $url URL to prefill the input with
166  * @param string $keyword Keyword to prefill the input with
167  */
168 function yourls_html_addnew( $url = '', $keyword = '' ) {
169         $url = $url ? $url : 'http://';
170         ?>
171         <div id="new_url">
172                 <div>
173                         <form id="new_url_form" action="" method="get">
174                                 <div><strong><?php yourls_e( 'Enter the URL' ); ?></strong>:<input type="text" id="add-url" name="url" value="<?php echo $url; ?>" class="text" size="80" />
175                                 <?php yourls_e( 'Optional '); ?>: <strong><?php yourls_e('Custom short URL'); ?></strong>:<input type="text" id="add-keyword" name="keyword" value="<?php echo $keyword; ?>" class="text" size="8" />
176                                 <?php yourls_nonce_field( 'add_url', 'nonce-add' ); ?>
177                                 <input type="button" id="add-button" name="add-button" value="<?php yourls_e( 'Shorten The URL' ); ?>" class="button" onclick="add_link();" /></div>
178                         </form>
179                         <div id="feedback" style="display:none"></div>
180                 </div>
181                 <?php yourls_do_action( 'html_addnew' ); ?>
182         </div>
183         <?php 
184 }
185
186 /**
187  * Display main table's footer
188  *
189  * The $param array is defined in /admin/index.php, check the yourls_html_tfooter() call
190  *
191  * @param array $params Array of all required parameters
192  * @return string Result
193  */
194 function yourls_html_tfooter( $params = array() ) {
195         extract( $params ); // extract $search_text, $page, $search_in ...
196         ?>
197         <tfoot>
198                 <tr>
199                         <th colspan="6">
200                         <div id="filter_form">
201                                 <form action="" method="get">
202                                         <div id="filter_options">
203                                                 <?php
204                                                 
205                                                 // First search control: text to search
206                                                 $_input = '<input type="text" name="search" class="text" size="12" value="' . yourls_esc_attr( $search_text ) . '" />';
207                                                 $_options = array(
208                                                         'keyword' => yourls__( 'Short URL' ),
209                                                         'url'     => yourls__( 'URL' ),
210                                                         'title'   => yourls__( 'Title' ),
211                                                         'ip'      => yourls__( 'IP' ),
212                                                 );                                                      
213                                                 $_select = yourls_html_select( 'search_in', $_options, $search_in );
214                                                 /* //translators: "Search for <input field with text to search> in <select dropdown with URL, title...>" */
215                                                 yourls_se( 'Search for %1$s in %2$s', $_input , $_select );
216                                                 echo "&ndash;\n";
217                                                 
218                                                 // Second search control: order by
219                                                 $_options = array(
220                                                         'keyword'      => yourls__( 'Short URL' ),
221                                                         'url'          => yourls__( 'URL' ),
222                                                         'timestamp'    => yourls__( 'Date' ),
223                                                         'ip'           => yourls__( 'IP' ),
224                                                         'clicks'       => yourls__( 'Clicks' ),
225                                                 );
226                                                 $_select = yourls_html_select( 'sort_by', $_options, $sort_by );
227                                                 $sort_order = isset( $sort_order ) ? $sort_order : 'desc' ;
228                                                 $_options = array(
229                                                         'asc'  => yourls__( 'Ascending' ),
230                                                         'desc' => yourls__( 'Descending' ),
231                                                 );
232                                                 $_select2 = yourls_html_select( 'sort_order', $_options, $sort_order );
233                                                 /* //translators: "Order by <criteria dropdown (date, clicks...)> in <order dropdown (Descending or Ascending)>" */
234                                                 yourls_se( 'Order by %1$s %2$s', $_select , $_select2 );
235                                                 echo "&ndash;\n";
236                                                 
237                                                 // Third search control: Show XX rows
238                                                 /* //translators: "Show <text field> rows" */
239                                                 yourls_se( 'Show %s rows',  '<input type="text" name="perpage" class="text" size="2" value="' . $perpage . '" />' );
240                                                 echo "<br/>\n";
241
242                                                 // Fourth search control: Show links with more than XX clicks
243                                                 $_options = array(
244                                                         'more' => yourls__( 'more' ),
245                                                         'less' => yourls__( 'less' ),
246                                                 );
247                                                 $_select = yourls_html_select( 'click_filter', $_options, $click_filter );
248                                                 $_input  = '<input type="text" name="click_limit" class="text" size="4" value="' . $click_limit . '" /> ';
249                                                 /* //translators: "Show links with <more/less> than <text field> clicks" */
250                                                 yourls_se( 'Show links with %1$s than %2$s clicks', $_select, $_input );
251                                                 echo "<br/>\n";
252
253                                                 // Fifth search control: Show links created before/after/between ...
254                                                 $_options = array(
255                                                         'before'  => yourls__('before'),
256                                                         'after'   => yourls__('after'),
257                                                         'between' => yourls__('between'),
258                                                 );
259                                                 $_select = yourls_html_select( 'date_filter', $_options, $date_filter );
260                                                 $_input  = '<input type="text" name="date_first" id="date_first" class="text" size="12" value="' . $date_first . '" />';
261                                                 $_and    = '<span id="date_and"' . ( $date_filter === 'between' ? ' style="display:inline"' : '' ) . '> &amp; </span>';
262                                                 $_input2 = '<input type="text" name="date_second" id="date_second" class="text" size="12" value="' . $date_second . '"' . ( $date_filter === 'between' ? ' style="display:inline"' : '' ) . '/>';
263                                                 /* //translators: "Show links created <before/after/between> <date input> <"and" if applicable> <date input if applicable>" */
264                                                 yourls_se( 'Show links created %1$s %2$s %3$s %4$s', $_select, $_input, $_and, $_input2 );
265                                                 ?>
266
267                                                 <div id="filter_buttons">
268                                                         <input type="submit" id="submit-sort" value="<?php yourls_e('Search'); ?>" class="button primary" />
269                                                         &nbsp;
270                                                         <input type="button" id="submit-clear-filter" value="<?php yourls_e('Clear'); ?>" class="button" onclick="window.parent.location.href = 'index.php'" />
271                                                 </div>
272                                 
273                                         </div>
274                                 </form>
275                         </div>
276                         
277                         <?php
278                         // Remove empty keys from the $params array so it doesn't clutter the pagination links
279                         $params = array_filter( $params, 'yourls_return_if_not_empty_string' ); // remove empty keys
280
281                         if( isset( $search_text ) ) {
282                                 $params['search'] = $search_text;
283                                 unset( $params['search_text'] );
284                         }
285                         ?>
286                         
287                         <div id="pagination">
288                                 <span class="navigation">
289                                 <?php if( $total_pages > 1 ) { ?>
290                                         <span class="nav_total"><?php echo sprintf( yourls_n( '1 page', '%s pages', $total_pages ), $total_pages ); ?></span>
291                                         <?php
292                                         $base_page = yourls_admin_url( 'index.php' );
293                                         // Pagination offsets: min( max ( zomg! ) );
294                                         $p_start = max(  min( $total_pages - 4, $page - 2 ), 1 );
295                                         $p_end = min( max( 5, $page + 2 ), $total_pages );
296                                         if( $p_start >= 2 ) {
297                                                 $link = yourls_add_query_arg( array_merge( $params, array( 'page' => 1 ) ), $base_page );
298                                                 echo '<span class="nav_link nav_first"><a href="' . $link . '" title="' . yourls_esc_attr__('Go to First Page') . '">' . yourls__( '&laquo; First' ) . '</a></span>';
299                                                 echo '<span class="nav_link nav_prev"></span>';
300                                         }
301                                         for( $i = $p_start ; $i <= $p_end; $i++ ) {
302                                                 if( $i == $page ) {
303                                                         echo "<span class='nav_link nav_current'>$i</span>";
304                                                 } else {
305                                                         $link = yourls_add_query_arg( array_merge( $params, array( 'page' => $i ) ), $base_page );
306                                                         echo '<span class="nav_link nav_goto"><a href="' . $link . '" title="' . sprintf( yourls_esc_attr( 'Page %s' ), $i ) .'">'.$i.'</a></span>';
307                                                 }
308                                         }
309                                         if( ( $p_end ) < $total_pages ) {
310                                                 $link = yourls_add_query_arg( array_merge( $params, array( 'page' => $total_pages ) ), $base_page );
311                                                 echo '<span class="nav_link nav_next"></span>';
312                                                 echo '<span class="nav_link nav_last"><a href="' . $link . '" title="' . yourls_esc_attr__('Go to First Page') . '">' . yourls__( 'Last &raquo;' ) . '</a></span>';
313                                         }
314                                         ?>
315                                 <?php } ?>
316                                 </span>
317                         </div>
318                         </th>
319                 </tr>
320                 <?php yourls_do_action( 'html_tfooter' ); ?>
321         </tfoot>
322         <?php
323 }
324
325 /**
326  * Return a select box
327  *
328  * @since 1.6
329  *
330  * @param string $name HTML 'name' (also use as the HTML 'id')
331  * @param array $options array of 'value' => 'Text displayed'
332  * @param string $selected optional 'value' from the $options array that will be highlighted
333  * @param boolean $display false (default) to return, true to echo
334  * @return string HTML content of the select element
335  */
336 function yourls_html_select( $name, $options, $selected = '', $display = false ) {
337         $html = "<select name='$name' id='$name' size='1'>\n";
338         foreach( $options as $value => $text ) {
339                 $html .= "<option value='$value' ";
340                 $html .= $selected == $value ? ' selected="selected"' : '';
341                 $html .= ">$text</option>\n";
342         }
343         $html .= "</select>\n";
344         $html  = yourls_apply_filters( 'html_select', $html, $name, $options, $selected, $display );
345         if( $display )
346                 echo $html;
347         return $html;
348 }
349
350 /**
351  * Display the Quick Share box
352  *
353  */
354 function yourls_share_box( $longurl, $shorturl, $title = '', $text='', $shortlink_title = '', $share_title = '', $hidden = false ) {
355         if ( $shortlink_title == '' )
356                 $shortlink_title = '<h2>' . yourls__( 'Your short link' ) . '</h2>';
357         if ( $share_title == '' )
358                 $share_title = '<h2>' . yourls__( 'Quick Share' ) . '</h2>';
359         
360         // Allow plugins to short-circuit the whole function
361         $pre = yourls_apply_filter( 'shunt_share_box', false );
362         if ( false !== $pre )
363                 return $pre;
364                 
365         $text   = ( $text ? '"'.$text.'" ' : '' );
366         $title  = ( $title ? "$title " : '' );
367         $share  = yourls_esc_textarea( $title.$text.$shorturl );
368         $count  = 140 - strlen( $share );
369         $hidden = ( $hidden ? 'style="display:none;"' : '' );
370         
371         // Allow plugins to filter all data
372         $data = compact( 'longurl', 'shorturl', 'title', 'text', 'shortlink_title', 'share_title', 'share', 'count', 'hidden' );
373         $data = yourls_apply_filter( 'share_box_data', $data );
374         extract( $data );
375         
376         $_share = rawurlencode( $share );
377         $_url   = rawurlencode( $shorturl );
378         ?>
379         
380         <div id="shareboxes" <?php echo $hidden; ?>>
381
382                 <?php yourls_do_action( 'shareboxes_before', $longurl, $shorturl, $title, $text ); ?>
383
384                 <div id="copybox" class="share">
385                 <?php echo $shortlink_title; ?>
386                         <p><input id="copylink" class="text" size="32" value="<?php echo yourls_esc_url( $shorturl ); ?>" /></p>
387                         <p><small><?php yourls_e( 'Long link' ); ?>: <a id="origlink" href="<?php echo yourls_esc_url( $longurl ); ?>"><?php echo yourls_esc_url( $longurl ); ?></a></small>
388                         <?php if( yourls_do_log_redirect() ) { ?>
389                         <br/><small><?php yourls_e( 'Stats' ); ?>: <a id="statlink" href="<?php echo yourls_esc_url( $shorturl ); ?>+"><?php echo yourls_esc_url( $shorturl ); ?>+</a></small>
390                         <input type="hidden" id="titlelink" value="<?php echo yourls_esc_attr( $title ); ?>" />
391                         <?php } ?>
392                         </p>
393                 </div>
394
395                 <?php yourls_do_action( 'shareboxes_middle', $longurl, $shorturl, $title, $text ); ?>
396
397                 <div id="sharebox" class="share">
398                         <?php echo $share_title; ?>
399                         <div id="tweet">
400                                 <span id="charcount" class="hide-if-no-js"><?php echo $count; ?></span>
401                                 <textarea id="tweet_body"><?php echo $share; ?></textarea>
402                         </div>
403                         <p id="share_links"><?php yourls_e( 'Share with' ); ?> 
404                                 <a id="share_tw" href="http://twitter.com/home?status=<?php echo $_share; ?>" title="<?php yourls_e( 'Tweet this!' ); ?>" onclick="share('tw');return false">Twitter</a>
405                                 <a id="share_fb" href="http://www.facebook.com/share.php?u=<?php echo $_url; ?>" title="<?php yourls_e( 'Share on Facebook' ); ?>" onclick="share('fb');return false;">Facebook</a>
406                                 <a id="share_ff" href="http://friendfeed.com/share/bookmarklet/frame#title=<?php echo $_share; ?>" title="<?php yourls_e( 'Share on Friendfeed' ); ?>" onclick="share('ff');return false;">FriendFeed</a>
407                                 <?php
408                                 yourls_do_action( 'share_links', $longurl, $shorturl, $title, $text );
409                                 // Note: on the main admin page, there are no parameters passed to the sharebox when it's drawn.
410                                 ?>
411                         </p>
412                 </div>
413                 
414                 <?php yourls_do_action( 'shareboxes_after', $longurl, $shorturl, $title, $text ); ?>
415         
416         </div>
417         
418         <?php
419 }
420
421 /**
422  * Die die die
423  *
424  */
425 function yourls_die( $message = '', $title = '', $header_code = 200 ) {
426         yourls_status_header( $header_code );
427         
428         if( !yourls_did_action( 'html_head' ) ) {
429                 yourls_html_head();
430                 yourls_html_logo();
431         }
432         echo yourls_apply_filter( 'die_title', "<h2>$title</h2>" );
433         echo yourls_apply_filter( 'die_message', "<p>$message</p>" );
434         yourls_do_action( 'yourls_die' );
435         if( !yourls_did_action( 'html_head' ) ) {
436                 yourls_html_footer();
437         }
438         die();
439 }
440
441 /**
442  * Return an "Edit" row for the main table
443  *
444  * @param string $keyword Keyword to edit
445  * @return string HTML of the edit row
446  */
447 function yourls_table_edit_row( $keyword ) {
448         $keyword = yourls_sanitize_string( $keyword );
449         $id = yourls_string2htmlid( $keyword ); // used as HTML #id
450         $url = yourls_get_keyword_longurl( $keyword );
451         
452         $title = htmlspecialchars( yourls_get_keyword_title( $keyword ) );
453         $safe_url = yourls_esc_attr( $url );
454         $safe_title = yourls_esc_attr( $title );
455         $www = yourls_link();
456         
457         $nonce = yourls_create_nonce( 'edit-save_'.$id );
458         
459         if( $url ) {
460                 $return = <<<RETURN
461 <tr id="edit-$id" class="edit-row"><td colspan="5" class="edit-row"><strong>%s</strong>:<input type="text" id="edit-url-$id" name="edit-url-$id" value="$safe_url" class="text" size="70" /><br/><strong>%s</strong>: $www<input type="text" id="edit-keyword-$id" name="edit-keyword-$id" value="$keyword" class="text" size="10" /><br/><strong>%s</strong>: <input type="text" id="edit-title-$id" name="edit-title-$id" value="$safe_title" class="text" size="60" /></td><td colspan="1"><input type="button" id="edit-submit-$id" name="edit-submit-$id" value="%s" title="%s" class="button" onclick="edit_link_save('$id');" />&nbsp;<input type="button" id="edit-close-$id" name="edit-close-$id" value="%s" title="%s" class="button" onclick="edit_link_hide('$id');" /><input type="hidden" id="old_keyword_$id" value="$keyword"/><input type="hidden" id="nonce_$id" value="$nonce"/></td></tr>
462 RETURN;
463                 $return = sprintf( urldecode( $return ), yourls__( 'Long URL' ), yourls__( 'Short URL' ), yourls__( 'Title' ), yourls__( 'Save' ), yourls__( 'Save new values' ), yourls__( 'Cancel' ), yourls__( 'Cancel editing' ) );
464         } else {
465                 $return = '<tr class="edit-row notfound"><td colspan="6" class="edit-row notfound">' . yourls__( 'Error, URL not found' ) . '</td></tr>';
466         }
467         
468         $return = yourls_apply_filter( 'table_edit_row', $return, $keyword, $url, $title );
469
470         return $return;
471 }
472
473 /**
474  * Return an "Add" row for the main table
475  *
476  * @return string HTML of the edit row
477  */
478 function yourls_table_add_row( $keyword, $url, $title = '', $ip, $clicks, $timestamp ) {
479         $keyword  = yourls_sanitize_string( $keyword );
480         $id       = yourls_string2htmlid( $keyword ); // used as HTML #id
481         $shorturl = yourls_link( $keyword );
482
483         $statlink = yourls_statlink( $keyword );
484                 
485         $delete_link = yourls_nonce_url( 'delete-link_'.$id,
486                 yourls_add_query_arg( array( 'id' => $id, 'action' => 'delete', 'keyword' => $keyword ), yourls_admin_url( 'admin-ajax.php' ) ) 
487         );
488         
489         $edit_link = yourls_nonce_url( 'edit-link_'.$id,
490                 yourls_add_query_arg( array( 'id' => $id, 'action' => 'edit', 'keyword' => $keyword ), yourls_admin_url( 'admin-ajax.php' ) ) 
491         );
492         
493         // Action link buttons: the array
494         $actions = array(
495                 'stats' => array(
496                         'href'    => $statlink,
497                         'id'      => "statlink-$id",
498                         'title'   => yourls_esc_attr__( 'Stats' ),
499                         'anchor'  => yourls__( 'Stats' ),
500                 ),
501                 'share' => array(
502                         'href'    => '',
503                         'id'      => "share-button-$id",
504                         'title'   => yourls_esc_attr__( 'Share' ),
505                         'anchor'  => yourls__( 'Share' ),
506                         'onclick' => "toggle_share('$id');return false;",
507                 ),
508                 'edit' => array(
509                         'href'    => $edit_link,
510                         'id'      => "edit-button-$id",
511                         'title'   => yourls_esc_attr__( 'Edit' ),
512                         'anchor'  => yourls__( 'Edit' ),
513                         'onclick' => "edit_link_display('$id');return false;",
514                 ),
515                 'delete' => array(
516                         'href'    => $delete_link,
517                         'id'      => "delete-button-$id",
518                         'title'   => yourls_esc_attr__( 'Delete' ),
519                         'anchor'  => yourls__( 'Delete' ),
520                         'onclick' => "remove_link('$id');return false;",
521                 )
522         );
523         $actions = yourls_apply_filter( 'table_add_row_action_array', $actions );
524         
525         // Action link buttons: the HTML
526         $action_links = '';
527         foreach( $actions as $key => $action ) {
528                 $onclick = isset( $action['onclick'] ) ? 'onclick="' . $action['onclick'] . '"' : '' ;
529                 $action_links .= sprintf( '<a href="%s" id="%s" title="%s" class="%s" %s>%s</a>',
530                         $action['href'], $action['id'], $action['title'], 'button button_'.$key, $onclick, $action['anchor']
531                 );
532         }
533         $action_links = yourls_apply_filter( 'action_links', $action_links, $keyword, $url, $ip, $clicks, $timestamp );
534
535         if( ! $title )
536                 $title = $url;
537
538         $protocol_warning = '';
539         if( ! in_array( yourls_get_protocol( $url ) , array( 'http://', 'https://' ) ) )
540                 $protocol_warning = yourls_apply_filters( 'add_row_protocol_warning', '<span class="warning" title="' . yourls__( 'Not a common link' ) . '">&#9733;</span>' );
541
542         // Row cells: the array
543         $cells = array(
544                 'keyword' => array(
545                         'template'      => '<a href="%shorturl%">%keyword_html%</a>',
546                         'shorturl'      => yourls_esc_url( $shorturl ),
547                         'keyword_html'  => yourls_esc_html( $keyword ),
548                 ),
549                 'url' => array(
550                         'template'      => '<a href="%long_url%" title="%title_attr%">%title_html%</a><br/><small>%warning%<a href="%long_url%">%long_url_html%</a></small>',
551                         'long_url'      => yourls_esc_url( $url ),
552                         'title_attr'    => yourls_esc_attr( $title ),
553                         'title_html'    => yourls_esc_html( yourls_trim_long_string( $title ) ),
554                         'long_url_html' => yourls_esc_html( yourls_trim_long_string( $url ) ),
555                         'warning'       => $protocol_warning,
556                 ),
557                 'timestamp' => array(
558                         'template' => '%date%',
559                         'date'     => date( 'M d, Y H:i', $timestamp +( YOURLS_HOURS_OFFSET * 3600 ) ),
560                 ),
561                 'ip' => array(
562                         'template' => '%ip%',
563                         'ip'       => $ip,
564                 ),
565                 'clicks' => array(
566                         'template' => '%clicks%',
567                         'clicks'   => yourls_number_format_i18n( $clicks, 0, '', '' ),
568                 ),
569                 'actions' => array(
570                         'template' => '%actions% <input type="hidden" id="keyword_%id%" value="%keyword%"/>',
571                         'actions'  => $action_links,
572                         'id'       => $id,
573                         'keyword'  => $keyword,
574                 ),
575         );
576         $cells = yourls_apply_filter( 'table_add_row_cell_array', $cells, $keyword, $url, $title, $ip, $clicks, $timestamp );
577         
578         // Row cells: the HTML. Replace every %stuff% in 'template' with 'stuff' value.
579         $row = "<tr id=\"id-$id\">";
580         foreach( $cells as $cell_id => $elements ) {
581                 $callback = new yourls_table_add_row_callback( $elements );
582                 $row .= sprintf( '<td class="%s" id="%s">', $cell_id, $cell_id . '-' . $id );
583                 $row .= preg_replace_callback( '/%([^%]+)?%/', array( $callback, 'callback' ), $elements['template'] );
584                 // For the record, in PHP 5.3+ we don't need to introduce a class in order to pass additional parameters
585                 // to the callback function. Instead, we would have used the 'use' keyword :
586                 // $row .= preg_replace_callback( '/%([^%]+)?%/', function( $match ) use ( $elements ) { return $elements[ $match[1] ]; }, $elements['template'] );
587                 
588                 $row .= '</td>';
589         }
590         $row .= "</tr>";
591         $row  = yourls_apply_filter( 'table_add_row', $row, $keyword, $url, $title, $ip, $clicks, $timestamp );
592         
593         return $row;
594 }
595
596 /**
597  * Callback class for yourls_table_add_row
598  *
599  * See comment about PHP 5.3+ in yourls_table_add_row()
600  *
601  * @since 1.7
602  */
603 class yourls_table_add_row_callback {
604     private $elements;
605         
606     function __construct($elements) {
607                 $this->elements = $elements;
608         }
609         
610     function callback( $matches ) {
611                 return $this->elements[ $matches[1] ];
612     }
613 }
614
615
616 /**
617  * Echo the main table head
618  *
619  */
620 function yourls_table_head() {
621         $start = '<table id="main_table" class="tblSorter" cellpadding="0" cellspacing="1"><thead><tr>'."\n";
622         echo yourls_apply_filter( 'table_head_start', $start );
623         
624         $cells = yourls_apply_filter( 'table_head_cells', array(
625                 'shorturl' => yourls__( 'Short URL' ),
626                 'longurl'  => yourls__( 'Original URL' ),
627                 'date'     => yourls__( 'Date' ),
628                 'ip'       => yourls__( 'IP' ),
629                 'clicks'   => yourls__( 'Clicks' ),
630                 'actions'  => yourls__( 'Actions' )
631         ) );
632         foreach( $cells as $k => $v ) {
633                 echo "<th id='main_table_head_$k'>$v</th>\n";
634         }
635         
636         $end = "</tr></thead>\n";
637         echo yourls_apply_filter( 'table_head_end', $end );
638 }
639
640 /**
641  * Echo the tbody start tag
642  *
643  */
644 function yourls_table_tbody_start() {
645         echo yourls_apply_filter( 'table_tbody_start', '<tbody>' );
646 }
647
648 /**
649  * Echo the tbody end tag
650  *
651  */
652 function yourls_table_tbody_end() {
653         echo yourls_apply_filter( 'table_tbody_end', '</tbody>' );
654 }
655
656 /**
657  * Echo the table start tag
658  *
659  */
660 function yourls_table_end() {
661         echo yourls_apply_filter( 'table_end', '</table>' );
662 }
663
664 /**
665  * Echo HTML tag for a link
666  *
667  */
668 function yourls_html_link( $href, $title = '', $element = '' ) {
669         if( !$title )
670                 $title = $href;
671         if( $element )
672                 $element = sprintf( 'id="%s"', yourls_esc_attr( $element ) );
673         $link = sprintf( '<a href="%s" %s>%s</a>', yourls_esc_url( $href ), $element, yourls_esc_html( $title ) );
674         echo yourls_apply_filter( 'html_link', $link );
675 }
676
677 /**
678  * Display the login screen. Nothing past this point.
679  *
680  */
681 function yourls_login_screen( $error_msg = '' ) {
682         yourls_html_head( 'login' );
683         
684         $action = ( isset( $_GET['action'] ) && $_GET['action'] == 'logout' ? '?' : '' );
685
686         yourls_html_logo();
687         ?>
688         <div id="login">
689                 <form method="post" action="<?php echo $action; ?>"> <?php // reset any QUERY parameters ?>
690                         <?php
691                                 if( !empty( $error_msg ) ) {
692                                         echo '<p class="error">'.$error_msg.'</p>';
693                                 }
694                         ?>
695                         <p>
696                                 <label for="username"><?php yourls_e( 'Username' ); ?></label><br />
697                                 <input type="text" id="username" name="username" size="30" class="text" />
698                         </p>
699                         <p>
700                                 <label for="password"><?php yourls_e( 'Password' ); ?></label><br />
701                                 <input type="password" id="password" name="password" size="30" class="text" />
702                         </p>
703                         <p style="text-align: right;">
704                                 <input type="submit" id="submit" name="submit" value="<?php yourls_e( 'Login' ); ?>" class="button" />
705                         </p>
706                 </form>
707                 <script type="text/javascript">$('#username').focus();</script>
708         </div>
709         <?php
710         yourls_html_footer();
711         die();
712 }
713
714 /**
715  * Display the admin menu
716  *
717  */
718 function yourls_html_menu() {
719
720         // Build menu links
721         if( defined( 'YOURLS_USER' ) ) {
722                 $logout_link = yourls_apply_filter( 'logout_link', sprintf( yourls__('Hello <strong>%s</strong>'), YOURLS_USER ) . ' (<a href="?action=logout" title="' . yourls_esc_attr__( 'Logout' ) . '">' . yourls__( 'Logout' ) . '</a>)' );
723         } else {
724                 $logout_link = yourls_apply_filter( 'logout_link', '' );
725         }
726         $help_link   = yourls_apply_filter( 'help_link',   '<a href="' . yourls_site_url( false ) .'/readme.html">' . yourls__( 'Help' ) . '</a>' );
727         
728         $admin_links    = array();
729         $admin_sublinks = array();
730         
731         $admin_links['admin'] = array(
732                 'url'    => yourls_admin_url( 'index.php' ),
733                 'title'  => yourls__( 'Go to the admin interface' ),
734                 'anchor' => yourls__( 'Admin interface' )
735         );
736         
737         if( yourls_is_admin() ) {
738                 $admin_links['tools'] = array(
739                         'url'    => yourls_admin_url( 'tools.php' ),
740                         'anchor' => yourls__( 'Tools' )
741                 );
742                 $admin_links['plugins'] = array(
743                         'url'    => yourls_admin_url( 'plugins.php' ),
744                         'anchor' => yourls__( 'Manage Plugins' )
745                 );
746                 $admin_sublinks['plugins'] = yourls_list_plugin_admin_pages();
747         }
748         
749         $admin_links    = yourls_apply_filter( 'admin_links',    $admin_links );
750         $admin_sublinks = yourls_apply_filter( 'admin_sublinks', $admin_sublinks );
751         
752         // Now output menu
753         echo '<ul id="admin_menu">'."\n";
754         if ( yourls_is_private() && !empty( $logout_link ) )
755                 echo '<li id="admin_menu_logout_link">' . $logout_link .'</li>';
756
757         foreach( (array)$admin_links as $link => $ar ) {
758                 if( isset( $ar['url'] ) ) {
759                         $anchor = isset( $ar['anchor'] ) ? $ar['anchor'] : $link;
760                         $title  = isset( $ar['title'] ) ? 'title="' . $ar['title'] . '"' : '';
761                         printf( '<li id="admin_menu_%s_link" class="admin_menu_toplevel"><a href="%s" %s>%s</a>', $link, $ar['url'], $title, $anchor );
762                 }
763                 // Output submenu if any. TODO: clean up, too many code duplicated here
764                 if( isset( $admin_sublinks[$link] ) ) {
765                         echo "<ul>\n";
766                         foreach( $admin_sublinks[$link] as $link => $ar ) {
767                                 if( isset( $ar['url'] ) ) {
768                                         $anchor = isset( $ar['anchor'] ) ? $ar['anchor'] : $link;
769                                         $title  = isset( $ar['title'] ) ? 'title="' . $ar['title'] . '"' : '';
770                                         printf( '<li id="admin_menu_%s_link" class="admin_menu_sublevel admin_menu_sublevel_%s"><a href="%s" %s>%s</a>', $link, $link, $ar['url'], $title, $anchor );
771                                 }
772                         }
773                         echo "</ul>\n";
774                 }
775         }
776         
777         if ( isset( $help_link ) )
778                 echo '<li id="admin_menu_help_link">' . $help_link .'</li>';
779                 
780         yourls_do_action( 'admin_menu' );
781         echo "</ul>\n";
782         yourls_do_action( 'admin_notices' );
783         yourls_do_action( 'admin_notice' ); // because I never remember if it's 'notices' or 'notice'
784         /*
785         To display a notice:
786         $message = "<div>OMG, dude, I mean!</div>" );
787         yourls_add_action( 'admin_notices', create_function( '', "echo '$message';" ) );
788         */
789 }
790
791 /**
792  * Wrapper function to display admin notices
793  *
794  */
795 function yourls_add_notice( $message, $style = 'notice' ) {
796         // Escape single quotes in $message to avoid breaking the anonymous function
797         $message = yourls_notice_box( strtr( $message, array( "'" => "\'" ) ), $style );
798         yourls_add_action( 'admin_notices', create_function( '', "echo '$message';" ) );
799 }
800
801 /**
802  * Return a formatted notice
803  *
804  */
805 function yourls_notice_box( $message, $style = 'notice' ) {
806         return <<<HTML
807         <div class="$style">
808         <p>$message</p>
809         </div>
810 HTML;
811 }
812
813 /**
814  * Display a page
815  *
816  */
817 function yourls_page( $page ) {
818         $include = YOURLS_ABSPATH . "/pages/$page.php";
819         if( !file_exists( $include ) ) {
820                 yourls_die( "Page '$page' not found", 'Not found', 404 );
821         }
822         yourls_do_action( 'pre_page', $page );
823         include_once( $include );
824         yourls_do_action( 'post_page', $page );
825         die();  
826 }
827
828 /**
829  * Display the language attributes for the HTML tag.
830  *
831  * Builds up a set of html attributes containing the text direction and language
832  * information for the page. Stolen from WP.
833  *
834  * @since 1.6
835  */
836 function yourls_html_language_attributes() {
837         $attributes = array();
838         $output = '';
839         
840         $attributes[] = ( yourls_is_rtl() ? 'dir="rtl"' : 'dir="ltr"' );
841         
842         $doctype = yourls_apply_filters( 'html_language_attributes_doctype', 'html' );
843         // Experimental: get HTML lang from locale. Should work. Convert fr_FR -> fr-FR
844         if ( $lang = str_replace( '_', '-', yourls_get_locale() ) ) {
845                 if( $doctype == 'xhtml' ) {
846                         $attributes[] = "xml:lang=\"$lang\"";
847                 } else {
848                         $attributes[] = "lang=\"$lang\"";
849                 }
850         }
851
852         $output = implode( ' ', $attributes );
853         $output = yourls_apply_filters( 'html_language_attributes', $output );
854         echo $output;
855 }
856
857 /**
858  * Output translated strings used by the Javascript calendar
859  *
860  * @since 1.6
861  */
862 function yourls_l10n_calendar_strings() {
863         echo "\n<script>\n";
864         echo "var l10n_cal_month = " . json_encode( array_values( yourls_l10n_months() ) ) . ";\n";
865         echo "var l10n_cal_days = " . json_encode( array_values( yourls_l10n_weekday_initial() ) ) . ";\n";
866         echo "var l10n_cal_today = \"" . yourls_esc_js( yourls__( 'Today' ) ) . "\";\n";
867         echo "var l10n_cal_close = \"" . yourls_esc_js( yourls__( 'Close' ) ) . "\";\n";
868         echo "</script>\n";
869         
870         // Dummy returns, to initialize l10n strings used in the calendar
871         yourls__( 'Today' );
872         yourls__( 'Close' );
873 }