@@ -7,9 +7,9 @@ discard block |
||
7 | 7 | * @subpackage tools |
8 | 8 | */ |
9 | 9 | |
10 | -$pomo = dirname( dirname( dirname( __FILE__ ) ) ) . '/src/wp-includes/pomo'; |
|
10 | +$pomo = dirname(dirname(dirname(__FILE__))).'/src/wp-includes/pomo'; |
|
11 | 11 | require_once "$pomo/po.php"; |
12 | -require_once dirname( __FILE__ ) . '/makepot.php'; |
|
12 | +require_once dirname(__FILE__).'/makepot.php'; |
|
13 | 13 | |
14 | 14 | class PotExtMeta { |
15 | 15 | |
@@ -36,9 +36,9 @@ discard block |
||
36 | 36 | $source = $makepot->get_first_lines($ext_filename); |
37 | 37 | $pot = ''; |
38 | 38 | $po = new PO; |
39 | - foreach($this->headers as $header) { |
|
39 | + foreach ($this->headers as $header) { |
|
40 | 40 | $string = $makepot->get_addon_header($header, $source); |
41 | - if (!$string) continue; |
|
41 | + if ( ! $string) continue; |
|
42 | 42 | $args = array( |
43 | 43 | 'singular' => $string, |
44 | 44 | 'extracted_comments' => $header.' of the plugin/theme', |
@@ -49,16 +49,16 @@ discard block |
||
49 | 49 | return $pot; |
50 | 50 | } |
51 | 51 | |
52 | - function append( $ext_filename, $pot_filename, $headers = null ) { |
|
53 | - if ( $headers ) |
|
52 | + function append($ext_filename, $pot_filename, $headers = null) { |
|
53 | + if ($headers) |
|
54 | 54 | $this->headers = (array) $headers; |
55 | - if ( is_dir( $ext_filename ) ) { |
|
55 | + if (is_dir($ext_filename)) { |
|
56 | 56 | $pot = implode('', array_map(array($this, 'load_from_file'), glob("$ext_filename/*.php"))); |
57 | 57 | } else { |
58 | 58 | $pot = $this->load_from_file($ext_filename); |
59 | 59 | } |
60 | - $potf = '-' == $pot_filename? STDOUT : fopen($pot_filename, 'a'); |
|
61 | - if (!$potf) return false; |
|
60 | + $potf = '-' == $pot_filename ? STDOUT : fopen($pot_filename, 'a'); |
|
61 | + if ( ! $potf) return false; |
|
62 | 62 | fwrite($potf, $pot); |
63 | 63 | if ('-' != $pot_filename) fclose($potf); |
64 | 64 | return true; |
@@ -69,10 +69,10 @@ discard block |
||
69 | 69 | if ($included_files[0] == __FILE__) { |
70 | 70 | ini_set('display_errors', 1); |
71 | 71 | $potextmeta = new PotExtMeta; |
72 | - if (!isset($argv[1])) { |
|
72 | + if ( ! isset($argv[1])) { |
|
73 | 73 | $potextmeta->usage(); |
74 | 74 | } |
75 | - $potextmeta->append( $argv[1], isset( $argv[2] ) ? $argv[2] : '-', isset( $argv[3] ) ? $argv[3] : null ); |
|
75 | + $potextmeta->append($argv[1], isset($argv[2]) ? $argv[2] : '-', isset($argv[3]) ? $argv[3] : null); |
|
76 | 76 | } |
77 | 77 | |
78 | 78 | ?> |
@@ -7,12 +7,12 @@ discard block |
||
7 | 7 | * @subpackage tools |
8 | 8 | */ |
9 | 9 | // see: http://php.net/tokenizer |
10 | -if ( ! defined( 'T_ML_COMMENT' ) ) |
|
11 | - define( 'T_ML_COMMENT', T_COMMENT ); |
|
10 | +if ( ! defined('T_ML_COMMENT')) |
|
11 | + define('T_ML_COMMENT', T_COMMENT); |
|
12 | 12 | else |
13 | - define( 'T_DOC_COMMENT', T_ML_COMMENT ); |
|
13 | + define('T_DOC_COMMENT', T_ML_COMMENT); |
|
14 | 14 | |
15 | -$pomo = dirname( dirname( dirname( __FILE__ ) ) ) . '/src/wp-includes/pomo'; |
|
15 | +$pomo = dirname(dirname(dirname(__FILE__))).'/src/wp-includes/pomo'; |
|
16 | 16 | require_once "$pomo/po.php"; |
17 | 17 | require_once "$pomo/mo.php"; |
18 | 18 | |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | var $STAGE_WHITESPACE_AFTER = 4; |
27 | 27 | var $STAGE_END_COMMENT = 4; |
28 | 28 | |
29 | - var $commands = array('extract' => 'command_extract', 'replace' => 'command_replace' ); |
|
29 | + var $commands = array('extract' => 'command_extract', 'replace' => 'command_replace'); |
|
30 | 30 | |
31 | 31 | |
32 | 32 | function logmsg() { |
@@ -34,8 +34,8 @@ discard block |
||
34 | 34 | if ($this->enable_logging) error_log(implode(' ', $args)); |
35 | 35 | } |
36 | 36 | |
37 | - function stderr($msg, $nl=true) { |
|
38 | - fwrite(STDERR, $msg.($nl? "\n" : "")); |
|
37 | + function stderr($msg, $nl = true) { |
|
38 | + fwrite(STDERR, $msg.($nl ? "\n" : "")); |
|
39 | 39 | } |
40 | 40 | |
41 | 41 | function cli_die($msg) { |
@@ -43,19 +43,19 @@ discard block |
||
43 | 43 | exit(1); |
44 | 44 | } |
45 | 45 | |
46 | - function unchanged_token($token, $s='') { |
|
47 | - return is_array($token)? $token[1] : $token; |
|
46 | + function unchanged_token($token, $s = '') { |
|
47 | + return is_array($token) ? $token[1] : $token; |
|
48 | 48 | } |
49 | 49 | |
50 | - function ignore_token($token, $s='') { |
|
50 | + function ignore_token($token, $s = '') { |
|
51 | 51 | return ''; |
52 | 52 | } |
53 | 53 | |
54 | 54 | function list_php_files($dir) { |
55 | 55 | $files = array(); |
56 | - $items = scandir( $dir ); |
|
57 | - foreach ( (array) $items as $item ) { |
|
58 | - $full_item = $dir . '/' . $item; |
|
56 | + $items = scandir($dir); |
|
57 | + foreach ((array) $items as $item) { |
|
58 | + $full_item = $dir.'/'.$item; |
|
59 | 59 | if ('.' == $item || '..' == $item) |
60 | 60 | continue; |
61 | 61 | if ('.php' == substr($item, -4)) |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | return create_function('$token, $string', 'global $'.$m.'; return var_export($'.$m.'->translate($string), true);'); |
78 | 78 | } |
79 | 79 | |
80 | - function walk_tokens(&$tokens, $string_action, $other_action, $register_action=null) { |
|
80 | + function walk_tokens(&$tokens, $string_action, $other_action, $register_action = null) { |
|
81 | 81 | |
82 | 82 | $current_comment_id = ''; |
83 | 83 | $current_string = ''; |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | $result = ''; |
87 | 87 | $line = 1; |
88 | 88 | |
89 | - foreach($tokens as $token) { |
|
89 | + foreach ($tokens as $token) { |
|
90 | 90 | if (is_array($token)) { |
91 | 91 | list($id, $text) = $token; |
92 | 92 | $line += substr_count($text, "\n"); |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | $stage = $this->STAGE_END_COMMENT; |
103 | 103 | $this->logmsg('end comment', $current_comment_id); |
104 | 104 | $result .= call_user_func($other_action, $token); |
105 | - if (!is_null($register_action)) call_user_func($register_action, $current_string, $current_comment_id, $current_string_line); |
|
105 | + if ( ! is_null($register_action)) call_user_func($register_action, $current_string, $current_comment_id, $current_string_line); |
|
106 | 106 | continue; |
107 | 107 | } |
108 | 108 | } else if (T_CONSTANT_ENCAPSED_STRING == $id) { |
@@ -149,21 +149,21 @@ discard block |
||
149 | 149 | $global_name = '__entries_'.mt_rand(1, 1000); |
150 | 150 | $GLOBALS[$global_name] = array(); |
151 | 151 | |
152 | - foreach($filenames as $filename) { |
|
152 | + foreach ($filenames as $filename) { |
|
153 | 153 | $tokens = token_get_all(file_get_contents($filename)); |
154 | 154 | $aggregator = $this->make_string_aggregator($global_name, $filename); |
155 | 155 | $this->walk_tokens($tokens, array($this, 'ignore_token'), array($this, 'ignore_token'), $aggregator); |
156 | 156 | } |
157 | 157 | |
158 | - $potf = '-' == $pot_filename? STDOUT : @fopen($pot_filename, 'a'); |
|
158 | + $potf = '-' == $pot_filename ? STDOUT : @fopen($pot_filename, 'a'); |
|
159 | 159 | if (false === $potf) { |
160 | 160 | $this->cli_die("Couldn't open pot file: $pot_filename"); |
161 | 161 | } |
162 | 162 | |
163 | - foreach($GLOBALS[$global_name] as $item) { |
|
163 | + foreach ($GLOBALS[$global_name] as $item) { |
|
164 | 164 | @list($string, $comment_id, $filename, $line_number) = $item; |
165 | - $filename = isset($filename)? preg_replace('|^\./|', '', $filename) : ''; |
|
166 | - $ref_line_number = isset($line_number)? ":$line_number" : ''; |
|
165 | + $filename = isset($filename) ? preg_replace('|^\./|', '', $filename) : ''; |
|
166 | + $ref_line_number = isset($line_number) ? ":$line_number" : ''; |
|
167 | 167 | $args = array( |
168 | 168 | 'singular' => $string, |
169 | 169 | 'extracted_comments' => "Not gettexted string $comment_id", |
@@ -192,9 +192,9 @@ discard block |
||
192 | 192 | if (false === $res) { |
193 | 193 | $this->cli_die("Couldn't read MO file '$mo_filename'!"); |
194 | 194 | } |
195 | - foreach($filenames as $filename) { |
|
195 | + foreach ($filenames as $filename) { |
|
196 | 196 | $source = file_get_contents($filename); |
197 | - if ( strlen($source) > 150000 ) continue; |
|
197 | + if (strlen($source) > 150000) continue; |
|
198 | 198 | $tokens = token_get_all($source); |
199 | 199 | $new_file = $this->walk_tokens($tokens, $replacer, array($this, 'unchanged_token')); |
200 | 200 | $f = fopen($filename, 'w'); |
@@ -214,7 +214,7 @@ discard block |
||
214 | 214 | |
215 | 215 | function cli() { |
216 | 216 | global $argv, $commands; |
217 | - if (count($argv) < 4 || !in_array($argv[1], array_keys($this->commands))) { |
|
217 | + if (count($argv) < 4 || ! in_array($argv[1], array_keys($this->commands))) { |
|
218 | 218 | $this->usage(); |
219 | 219 | exit(1); |
220 | 220 | } |
@@ -5,8 +5,8 @@ discard block |
||
5 | 5 | * @package wordpress-i18n |
6 | 6 | * @subpackage tools |
7 | 7 | */ |
8 | -error_reporting( E_ALL ); |
|
9 | -require_once dirname( dirname( __FILE__ ) ) . '/not-gettexted.php'; |
|
8 | +error_reporting(E_ALL); |
|
9 | +require_once dirname(dirname(__FILE__)).'/not-gettexted.php'; |
|
10 | 10 | |
11 | 11 | class NotGettextedTest extends PHPUnit_Framework_TestCase { |
12 | 12 | |
@@ -16,10 +16,10 @@ discard block |
||
16 | 16 | |
17 | 17 | function test_make_string_aggregator() { |
18 | 18 | global $baba; |
19 | - $f = $this->ng->make_string_aggregator( 'baba', 'baba.php' ); |
|
20 | - call_user_func( $f, 'x', 'y', 'z' ); |
|
21 | - call_user_func( $f, 'a', 'b', 'c' ); |
|
22 | - $this->assertEquals( array( array( 'x', 'y', 'baba.php', 'z'), array( 'a', 'b', 'baba.php', 'c' ) ), $baba ); |
|
19 | + $f = $this->ng->make_string_aggregator('baba', 'baba.php'); |
|
20 | + call_user_func($f, 'x', 'y', 'z'); |
|
21 | + call_user_func($f, 'a', 'b', 'c'); |
|
22 | + $this->assertEquals(array(array('x', 'y', 'baba.php', 'z'), array('a', 'b', 'baba.php', 'c')), $baba); |
|
23 | 23 | } |
24 | 24 | |
25 | 25 | function test_walk() { |
@@ -30,17 +30,17 @@ discard block |
||
30 | 30 | if ($x == "18181") { wp_die(sprintf(/*WP_I18N_DIE*/\'We died %d times!\'/*WP_I18N_DIE*/)); } |
31 | 31 | ?>'; |
32 | 32 | $tokens = token_get_all($code); |
33 | - $this->assertEquals( '', $this->ng->walk_tokens( $tokens, array($this->ng, 'ignore_token'), array($this->ng, 'ignore_token') ) ); |
|
34 | - $this->assertEquals( '"yes"\'We died %d times!\'', $this->ng->walk_tokens( $tokens, array($this->ng, 'unchanged_token'), array($this->ng, 'ignore_token') ) ); |
|
35 | - $this->assertEquals( $code, $this->ng->walk_tokens( $tokens, array($this->ng, 'unchanged_token'), array($this->ng, 'unchanged_token') ) ); |
|
36 | - $this->assertEquals( $code, $this->ng->walk_tokens( $tokens, array($this->ng, 'unchanged_token'), array($this->ng, 'unchanged_token') ) ); |
|
33 | + $this->assertEquals('', $this->ng->walk_tokens($tokens, array($this->ng, 'ignore_token'), array($this->ng, 'ignore_token'))); |
|
34 | + $this->assertEquals('"yes"\'We died %d times!\'', $this->ng->walk_tokens($tokens, array($this->ng, 'unchanged_token'), array($this->ng, 'ignore_token'))); |
|
35 | + $this->assertEquals($code, $this->ng->walk_tokens($tokens, array($this->ng, 'unchanged_token'), array($this->ng, 'unchanged_token'))); |
|
36 | + $this->assertEquals($code, $this->ng->walk_tokens($tokens, array($this->ng, 'unchanged_token'), array($this->ng, 'unchanged_token'))); |
|
37 | 37 | } |
38 | 38 | |
39 | 39 | function test_replace() { |
40 | 40 | # copy to a new file, so that we don't corrupt the old one |
41 | - copy( 'data/not-gettexted-0.php', 'data/not-gettexted-0-work.php' ); |
|
42 | - $this->ng->command_replace( 'data/not-gettexted-0.mo', 'data/not-gettexted-0-work.php' ); |
|
43 | - $this->assertEquals( file_get_contents( 'data/not-gettexted-0-result.php' ), file_get_contents( 'data/not-gettexted-0-work.php' ) ); |
|
44 | - unlink( 'data/not-gettexted-0-work.php' ); |
|
41 | + copy('data/not-gettexted-0.php', 'data/not-gettexted-0-work.php'); |
|
42 | + $this->ng->command_replace('data/not-gettexted-0.mo', 'data/not-gettexted-0-work.php'); |
|
43 | + $this->assertEquals(file_get_contents('data/not-gettexted-0-result.php'), file_get_contents('data/not-gettexted-0-work.php')); |
|
44 | + unlink('data/not-gettexted-0-work.php'); |
|
45 | 45 | } |
46 | 46 | } |
@@ -5,14 +5,14 @@ |
||
5 | 5 | * @package WordPress |
6 | 6 | */ |
7 | 7 | |
8 | -if ( !isset($wp_did_header) ) { |
|
8 | +if ( ! isset($wp_did_header)) { |
|
9 | 9 | |
10 | 10 | $wp_did_header = true; |
11 | 11 | |
12 | - require_once( dirname(__FILE__) . '/wp-load.php' ); |
|
12 | + require_once(dirname(__FILE__).'/wp-load.php'); |
|
13 | 13 | |
14 | 14 | wp(); |
15 | 15 | |
16 | - require_once( ABSPATH . WPINC . '/template-loader.php' ); |
|
16 | + require_once(ABSPATH.WPINC.'/template-loader.php'); |
|
17 | 17 | |
18 | 18 | } |
@@ -11,7 +11,7 @@ discard block |
||
11 | 11 | |
12 | 12 | ignore_user_abort(true); |
13 | 13 | |
14 | -if ( !empty($_POST) || defined('DOING_AJAX') || defined('DOING_CRON') ) |
|
14 | +if ( ! empty($_POST) || defined('DOING_AJAX') || defined('DOING_CRON')) |
|
15 | 15 | die(); |
16 | 16 | |
17 | 17 | /** |
@@ -21,9 +21,9 @@ discard block |
||
21 | 21 | */ |
22 | 22 | define('DOING_CRON', true); |
23 | 23 | |
24 | -if ( !defined('ABSPATH') ) { |
|
24 | +if ( ! defined('ABSPATH')) { |
|
25 | 25 | /** Set up WordPress environment */ |
26 | - require_once( dirname( __FILE__ ) . '/wp-load.php' ); |
|
26 | + require_once(dirname(__FILE__).'/wp-load.php'); |
|
27 | 27 | } |
28 | 28 | |
29 | 29 | /** |
@@ -40,44 +40,44 @@ discard block |
||
40 | 40 | global $wpdb; |
41 | 41 | |
42 | 42 | $value = 0; |
43 | - if ( wp_using_ext_object_cache() ) { |
|
43 | + if (wp_using_ext_object_cache()) { |
|
44 | 44 | /* |
45 | 45 | * Skip local cache and force re-fetch of doing_cron transient |
46 | 46 | * in case another process updated the cache. |
47 | 47 | */ |
48 | - $value = wp_cache_get( 'doing_cron', 'transient', true ); |
|
48 | + $value = wp_cache_get('doing_cron', 'transient', true); |
|
49 | 49 | } else { |
50 | - $row = $wpdb->get_row( $wpdb->prepare( "SELECT option_value FROM $wpdb->options WHERE option_name = %s LIMIT 1", '_transient_doing_cron' ) ); |
|
51 | - if ( is_object( $row ) ) |
|
50 | + $row = $wpdb->get_row($wpdb->prepare("SELECT option_value FROM $wpdb->options WHERE option_name = %s LIMIT 1", '_transient_doing_cron')); |
|
51 | + if (is_object($row)) |
|
52 | 52 | $value = $row->option_value; |
53 | 53 | } |
54 | 54 | |
55 | 55 | return $value; |
56 | 56 | } |
57 | 57 | |
58 | -if ( false === $crons = _get_cron_array() ) |
|
58 | +if (false === $crons = _get_cron_array()) |
|
59 | 59 | die(); |
60 | 60 | |
61 | -$keys = array_keys( $crons ); |
|
62 | -$gmt_time = microtime( true ); |
|
61 | +$keys = array_keys($crons); |
|
62 | +$gmt_time = microtime(true); |
|
63 | 63 | |
64 | -if ( isset($keys[0]) && $keys[0] > $gmt_time ) |
|
64 | +if (isset($keys[0]) && $keys[0] > $gmt_time) |
|
65 | 65 | die(); |
66 | 66 | |
67 | 67 | |
68 | 68 | // The cron lock: a unix timestamp from when the cron was spawned. |
69 | -$doing_cron_transient = get_transient( 'doing_cron' ); |
|
69 | +$doing_cron_transient = get_transient('doing_cron'); |
|
70 | 70 | |
71 | 71 | // Use global $doing_wp_cron lock otherwise use the GET lock. If no lock, trying grabbing a new lock. |
72 | -if ( empty( $doing_wp_cron ) ) { |
|
73 | - if ( empty( $_GET[ 'doing_wp_cron' ] ) ) { |
|
72 | +if (empty($doing_wp_cron)) { |
|
73 | + if (empty($_GET['doing_wp_cron'])) { |
|
74 | 74 | // Called from external script/job. Try setting a lock. |
75 | - if ( $doing_cron_transient && ( $doing_cron_transient + WP_CRON_LOCK_TIMEOUT > $gmt_time ) ) |
|
75 | + if ($doing_cron_transient && ($doing_cron_transient + WP_CRON_LOCK_TIMEOUT > $gmt_time)) |
|
76 | 76 | return; |
77 | - $doing_cron_transient = $doing_wp_cron = sprintf( '%.22F', microtime( true ) ); |
|
78 | - set_transient( 'doing_cron', $doing_wp_cron ); |
|
77 | + $doing_cron_transient = $doing_wp_cron = sprintf('%.22F', microtime(true)); |
|
78 | + set_transient('doing_cron', $doing_wp_cron); |
|
79 | 79 | } else { |
80 | - $doing_wp_cron = $_GET[ 'doing_wp_cron' ]; |
|
80 | + $doing_wp_cron = $_GET['doing_wp_cron']; |
|
81 | 81 | } |
82 | 82 | } |
83 | 83 | |
@@ -85,25 +85,25 @@ discard block |
||
85 | 85 | * The cron lock (a unix timestamp set when the cron was spawned), |
86 | 86 | * must match $doing_wp_cron (the "key"). |
87 | 87 | */ |
88 | -if ( $doing_cron_transient != $doing_wp_cron ) |
|
88 | +if ($doing_cron_transient != $doing_wp_cron) |
|
89 | 89 | return; |
90 | 90 | |
91 | -foreach ( $crons as $timestamp => $cronhooks ) { |
|
92 | - if ( $timestamp > $gmt_time ) |
|
91 | +foreach ($crons as $timestamp => $cronhooks) { |
|
92 | + if ($timestamp > $gmt_time) |
|
93 | 93 | break; |
94 | 94 | |
95 | - foreach ( $cronhooks as $hook => $keys ) { |
|
95 | + foreach ($cronhooks as $hook => $keys) { |
|
96 | 96 | |
97 | - foreach ( $keys as $k => $v ) { |
|
97 | + foreach ($keys as $k => $v) { |
|
98 | 98 | |
99 | 99 | $schedule = $v['schedule']; |
100 | 100 | |
101 | - if ( $schedule != false ) { |
|
101 | + if ($schedule != false) { |
|
102 | 102 | $new_args = array($timestamp, $schedule, $hook, $v['args']); |
103 | 103 | call_user_func_array('wp_reschedule_event', $new_args); |
104 | 104 | } |
105 | 105 | |
106 | - wp_unschedule_event( $timestamp, $hook, $v['args'] ); |
|
106 | + wp_unschedule_event($timestamp, $hook, $v['args']); |
|
107 | 107 | |
108 | 108 | /** |
109 | 109 | * Fires scheduled events. |
@@ -114,16 +114,16 @@ discard block |
||
114 | 114 | * @param string $hook Name of the hook that was scheduled to be fired. |
115 | 115 | * @param array $args The arguments to be passed to the hook. |
116 | 116 | */ |
117 | - do_action_ref_array( $hook, $v['args'] ); |
|
117 | + do_action_ref_array($hook, $v['args']); |
|
118 | 118 | |
119 | 119 | // If the hook ran too long and another cron process stole the lock, quit. |
120 | - if ( _get_cron_lock() != $doing_wp_cron ) |
|
120 | + if (_get_cron_lock() != $doing_wp_cron) |
|
121 | 121 | return; |
122 | 122 | } |
123 | 123 | } |
124 | 124 | } |
125 | 125 | |
126 | -if ( _get_cron_lock() == $doing_wp_cron ) |
|
127 | - delete_transient( 'doing_cron' ); |
|
126 | +if (_get_cron_lock() == $doing_wp_cron) |
|
127 | + delete_transient('doing_cron'); |
|
128 | 128 | |
129 | 129 | die(); |
@@ -14,4 +14,4 @@ |
||
14 | 14 | define('WP_USE_THEMES', true); |
15 | 15 | |
16 | 16 | /** Loads the WordPress Environment and Template */ |
17 | -require( dirname( __FILE__ ) . '/wp-blog-header.php' ); |
|
17 | +require(dirname(__FILE__).'/wp-blog-header.php'); |
@@ -12,8 +12,8 @@ |
||
12 | 12 | </div><!-- #main .wrapper --> |
13 | 13 | <footer id="colophon" role="contentinfo"> |
14 | 14 | <div class="site-info"> |
15 | - <?php do_action( 'twentytwelve_credits' ); ?> |
|
16 | - <a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentytwelve' ) ); ?>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentytwelve' ); ?>"><?php printf( __( 'Proudly powered by %s', 'twentytwelve' ), 'WordPress' ); ?></a> |
|
15 | + <?php do_action('twentytwelve_credits'); ?> |
|
16 | + <a href="<?php echo esc_url(__('https://wordpress.org/', 'twentytwelve')); ?>" title="<?php esc_attr_e('Semantic Personal Publishing Platform', 'twentytwelve'); ?>"><?php printf(__('Proudly powered by %s', 'twentytwelve'), 'WordPress'); ?></a> |
|
17 | 17 | </div><!-- .site-info --> |
18 | 18 | </footer><!-- #colophon --> |
19 | 19 | </div><!-- #page --> |
@@ -10,16 +10,16 @@ |
||
10 | 10 | |
11 | 11 | <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> |
12 | 12 | <div class="entry-content"> |
13 | - <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentytwelve' ) ); ?> |
|
13 | + <?php the_content(__('Continue reading <span class="meta-nav">→</span>', 'twentytwelve')); ?> |
|
14 | 14 | </div><!-- .entry-content --> |
15 | 15 | |
16 | 16 | <footer class="entry-meta"> |
17 | - <a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'twentytwelve' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php echo get_the_date(); ?></a> |
|
18 | - <?php if ( comments_open() ) : ?> |
|
17 | + <a href="<?php the_permalink(); ?>" title="<?php echo esc_attr(sprintf(__('Permalink to %s', 'twentytwelve'), the_title_attribute('echo=0'))); ?>" rel="bookmark"><?php echo get_the_date(); ?></a> |
|
18 | + <?php if (comments_open()) : ?> |
|
19 | 19 | <div class="comments-link"> |
20 | - <?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a reply', 'twentytwelve' ) . '</span>', __( '1 Reply', 'twentytwelve' ), __( '% Replies', 'twentytwelve' ) ); ?> |
|
20 | + <?php comments_popup_link('<span class="leave-reply">'.__('Leave a reply', 'twentytwelve').'</span>', __('1 Reply', 'twentytwelve'), __('% Replies', 'twentytwelve')); ?> |
|
21 | 21 | </div><!-- .comments-link --> |
22 | 22 | <?php endif; // comments_open() ?> |
23 | - <?php edit_post_link( __( 'Edit', 'twentytwelve' ), '<span class="edit-link">', '</span>' ); ?> |
|
23 | + <?php edit_post_link(__('Edit', 'twentytwelve'), '<span class="edit-link">', '</span>'); ?> |
|
24 | 24 | </footer><!-- .entry-meta --> |
25 | 25 | </article><!-- #post --> |
@@ -14,32 +14,32 @@ discard block |
||
14 | 14 | <div id="primary" class="site-content"> |
15 | 15 | <div id="content" role="main"> |
16 | 16 | |
17 | - <?php while ( have_posts() ) : the_post(); ?> |
|
17 | + <?php while (have_posts()) : the_post(); ?> |
|
18 | 18 | |
19 | - <article id="post-<?php the_ID(); ?>" <?php post_class( 'image-attachment' ); ?>> |
|
19 | + <article id="post-<?php the_ID(); ?>" <?php post_class('image-attachment'); ?>> |
|
20 | 20 | <header class="entry-header"> |
21 | 21 | <h1 class="entry-title"><?php the_title(); ?></h1> |
22 | 22 | |
23 | 23 | <footer class="entry-meta"> |
24 | 24 | <?php |
25 | 25 | $metadata = wp_get_attachment_metadata(); |
26 | - printf( __( '<span class="meta-prep meta-prep-entry-date">Published </span> <span class="entry-date"><time class="entry-date" datetime="%1$s">%2$s</time></span> at <a href="%3$s" title="Link to full-size image">%4$s × %5$s</a> in <a href="%6$s" title="Return to %7$s" rel="gallery">%8$s</a>.', 'twentytwelve' ), |
|
27 | - esc_attr( get_the_date( 'c' ) ), |
|
28 | - esc_html( get_the_date() ), |
|
29 | - esc_url( wp_get_attachment_url() ), |
|
26 | + printf(__('<span class="meta-prep meta-prep-entry-date">Published </span> <span class="entry-date"><time class="entry-date" datetime="%1$s">%2$s</time></span> at <a href="%3$s" title="Link to full-size image">%4$s × %5$s</a> in <a href="%6$s" title="Return to %7$s" rel="gallery">%8$s</a>.', 'twentytwelve'), |
|
27 | + esc_attr(get_the_date('c')), |
|
28 | + esc_html(get_the_date()), |
|
29 | + esc_url(wp_get_attachment_url()), |
|
30 | 30 | $metadata['width'], |
31 | 31 | $metadata['height'], |
32 | - esc_url( get_permalink( $post->post_parent ) ), |
|
33 | - esc_attr( strip_tags( get_the_title( $post->post_parent ) ) ), |
|
34 | - get_the_title( $post->post_parent ) |
|
32 | + esc_url(get_permalink($post->post_parent)), |
|
33 | + esc_attr(strip_tags(get_the_title($post->post_parent))), |
|
34 | + get_the_title($post->post_parent) |
|
35 | 35 | ); |
36 | 36 | ?> |
37 | - <?php edit_post_link( __( 'Edit', 'twentytwelve' ), '<span class="edit-link">', '</span>' ); ?> |
|
37 | + <?php edit_post_link(__('Edit', 'twentytwelve'), '<span class="edit-link">', '</span>'); ?> |
|
38 | 38 | </footer><!-- .entry-meta --> |
39 | 39 | |
40 | 40 | <nav id="image-navigation" class="navigation" role="navigation"> |
41 | - <span class="previous-image"><?php previous_image_link( false, __( '← Previous', 'twentytwelve' ) ); ?></span> |
|
42 | - <span class="next-image"><?php next_image_link( false, __( 'Next →', 'twentytwelve' ) ); ?></span> |
|
41 | + <span class="previous-image"><?php previous_image_link(false, __('← Previous', 'twentytwelve')); ?></span> |
|
42 | + <span class="next-image"><?php next_image_link(false, __('Next →', 'twentytwelve')); ?></span> |
|
43 | 43 | </nav><!-- #image-navigation --> |
44 | 44 | </header><!-- .entry-header --> |
45 | 45 | |
@@ -52,28 +52,28 @@ discard block |
||
52 | 52 | * Grab the IDs of all the image attachments in a gallery so we can get the URL of the next adjacent image in a gallery, |
53 | 53 | * or the first image (if we're looking at the last image in a gallery), or, in a gallery of one, just the link to that image file |
54 | 54 | */ |
55 | -$attachments = array_values( get_children( array( 'post_parent' => $post->post_parent, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => 'ASC', 'orderby' => 'menu_order ID' ) ) ); |
|
56 | -foreach ( $attachments as $k => $attachment ) : |
|
57 | - if ( $attachment->ID == $post->ID ) |
|
55 | +$attachments = array_values(get_children(array('post_parent' => $post->post_parent, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => 'ASC', 'orderby' => 'menu_order ID'))); |
|
56 | +foreach ($attachments as $k => $attachment) : |
|
57 | + if ($attachment->ID == $post->ID) |
|
58 | 58 | break; |
59 | 59 | endforeach; |
60 | 60 | |
61 | 61 | // If there is more than 1 attachment in a gallery |
62 | -if ( count( $attachments ) > 1 ) : |
|
62 | +if (count($attachments) > 1) : |
|
63 | 63 | $k++; |
64 | - if ( isset( $attachments[ $k ] ) ) : |
|
64 | + if (isset($attachments[$k])) : |
|
65 | 65 | // get the URL of the next image attachment |
66 | - $next_attachment_url = get_attachment_link( $attachments[ $k ]->ID ); |
|
66 | + $next_attachment_url = get_attachment_link($attachments[$k]->ID); |
|
67 | 67 | else : |
68 | 68 | // or get the URL of the first image attachment |
69 | - $next_attachment_url = get_attachment_link( $attachments[0]->ID ); |
|
69 | + $next_attachment_url = get_attachment_link($attachments[0]->ID); |
|
70 | 70 | endif; |
71 | 71 | else : |
72 | 72 | // or, if there's only 1 image, get the URL of the image |
73 | 73 | $next_attachment_url = wp_get_attachment_url(); |
74 | 74 | endif; |
75 | 75 | ?> |
76 | - <a href="<?php echo esc_url( $next_attachment_url ); ?>" title="<?php the_title_attribute(); ?>" rel="attachment"><?php |
|
76 | + <a href="<?php echo esc_url($next_attachment_url); ?>" title="<?php the_title_attribute(); ?>" rel="attachment"><?php |
|
77 | 77 | /** |
78 | 78 | * Filter the image attachment size to use. |
79 | 79 | * |
@@ -84,11 +84,11 @@ discard block |
||
84 | 84 | * @type int The attachment width in pixels. |
85 | 85 | * } |
86 | 86 | */ |
87 | - $attachment_size = apply_filters( 'twentytwelve_attachment_size', array( 960, 960 ) ); |
|
88 | - echo wp_get_attachment_image( $post->ID, $attachment_size ); |
|
87 | + $attachment_size = apply_filters('twentytwelve_attachment_size', array(960, 960)); |
|
88 | + echo wp_get_attachment_image($post->ID, $attachment_size); |
|
89 | 89 | ?></a> |
90 | 90 | |
91 | - <?php if ( ! empty( $post->post_excerpt ) ) : ?> |
|
91 | + <?php if ( ! empty($post->post_excerpt)) : ?> |
|
92 | 92 | <div class="entry-caption"> |
93 | 93 | <?php the_excerpt(); ?> |
94 | 94 | </div> |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | |
100 | 100 | <div class="entry-description"> |
101 | 101 | <?php the_content(); ?> |
102 | - <?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'twentytwelve' ), 'after' => '</div>' ) ); ?> |
|
102 | + <?php wp_link_pages(array('before' => '<div class="page-links">'.__('Pages:', 'twentytwelve'), 'after' => '</div>')); ?> |
|
103 | 103 | </div><!-- .entry-description --> |
104 | 104 | |
105 | 105 | </div><!-- .entry-content --> |