@@ -98,8 +98,8 @@ discard block |
||
| 98 | 98 | # |
| 99 | 99 | if (!function_exists('xml_parser_create')) { |
| 100 | 100 | $this->error( "Failed to load PHP's XML Extension. " . |
| 101 | - "http://www.php.net/manual/en/ref.xml.php", |
|
| 102 | - E_USER_ERROR ); |
|
| 101 | + "http://www.php.net/manual/en/ref.xml.php", |
|
| 102 | + E_USER_ERROR ); |
|
| 103 | 103 | } |
| 104 | 104 | |
| 105 | 105 | list($parser, $source) = $this->create_parser($source, |
@@ -108,8 +108,8 @@ discard block |
||
| 108 | 108 | |
| 109 | 109 | if (!is_resource($parser)) { |
| 110 | 110 | $this->error( "Failed to create an instance of PHP's XML parser. " . |
| 111 | - "http://www.php.net/manual/en/ref.xml.php", |
|
| 112 | - E_USER_ERROR ); |
|
| 111 | + "http://www.php.net/manual/en/ref.xml.php", |
|
| 112 | + E_USER_ERROR ); |
|
| 113 | 113 | } |
| 114 | 114 | |
| 115 | 115 | |
@@ -445,9 +445,9 @@ discard block |
||
| 445 | 445 | } |
| 446 | 446 | |
| 447 | 447 | /** |
| 448 | - * return XML parser, and possibly re-encoded source |
|
| 449 | - * |
|
| 450 | - */ |
|
| 448 | + * return XML parser, and possibly re-encoded source |
|
| 449 | + * |
|
| 450 | + */ |
|
| 451 | 451 | function create_parser($source, $out_enc, $in_enc, $detect) { |
| 452 | 452 | if ( substr(phpversion(),0,1) == 5) { |
| 453 | 453 | $parser = $this->php5_create_parser($in_enc, $detect); |
@@ -464,14 +464,14 @@ discard block |
||
| 464 | 464 | } |
| 465 | 465 | |
| 466 | 466 | /** |
| 467 | - * Instantiate an XML parser under PHP5 |
|
| 468 | - * |
|
| 469 | - * PHP5 will do a fine job of detecting input encoding |
|
| 470 | - * if passed an empty string as the encoding. |
|
| 471 | - * |
|
| 472 | - * All hail libxml2! |
|
| 473 | - * |
|
| 474 | - */ |
|
| 467 | + * Instantiate an XML parser under PHP5 |
|
| 468 | + * |
|
| 469 | + * PHP5 will do a fine job of detecting input encoding |
|
| 470 | + * if passed an empty string as the encoding. |
|
| 471 | + * |
|
| 472 | + * All hail libxml2! |
|
| 473 | + * |
|
| 474 | + */ |
|
| 475 | 475 | function php5_create_parser($in_enc, $detect) { |
| 476 | 476 | // by default php5 does a fine job of detecting input encodings |
| 477 | 477 | if(!$detect && $in_enc) { |
@@ -483,20 +483,20 @@ discard block |
||
| 483 | 483 | } |
| 484 | 484 | |
| 485 | 485 | /** |
| 486 | - * Instaniate an XML parser under PHP4 |
|
| 487 | - * |
|
| 488 | - * Unfortunately PHP4's support for character encodings |
|
| 489 | - * and especially XML and character encodings sucks. As |
|
| 490 | - * long as the documents you parse only contain characters |
|
| 491 | - * from the ISO-8859-1 character set (a superset of ASCII, |
|
| 492 | - * and a subset of UTF-8) you're fine. However once you |
|
| 493 | - * step out of that comfy little world things get mad, bad, |
|
| 494 | - * and dangerous to know. |
|
| 495 | - * |
|
| 496 | - * The following code is based on SJM's work with FoF |
|
| 497 | - * @see http://minutillo.com/steve/weblog/2004/6/17/php-xml-and-character-encodings-a-tale-of-sadness-rage-and-data-loss |
|
| 498 | - * |
|
| 499 | - */ |
|
| 486 | + * Instaniate an XML parser under PHP4 |
|
| 487 | + * |
|
| 488 | + * Unfortunately PHP4's support for character encodings |
|
| 489 | + * and especially XML and character encodings sucks. As |
|
| 490 | + * long as the documents you parse only contain characters |
|
| 491 | + * from the ISO-8859-1 character set (a superset of ASCII, |
|
| 492 | + * and a subset of UTF-8) you're fine. However once you |
|
| 493 | + * step out of that comfy little world things get mad, bad, |
|
| 494 | + * and dangerous to know. |
|
| 495 | + * |
|
| 496 | + * The following code is based on SJM's work with FoF |
|
| 497 | + * @see http://minutillo.com/steve/weblog/2004/6/17/php-xml-and-character-encodings-a-tale-of-sadness-rage-and-data-loss |
|
| 498 | + * |
|
| 499 | + */ |
|
| 500 | 500 | function php4_create_parser($source, $in_enc, $detect) { |
| 501 | 501 | if ( !$detect ) { |
| 502 | 502 | return array(xml_parser_create($in_enc), $source); |
@@ -540,8 +540,8 @@ discard block |
||
| 540 | 540 | |
| 541 | 541 | // else |
| 542 | 542 | $this->error("Feed is in an unsupported character encoding. ($in_enc) " . |
| 543 | - "You may see strange artifacts, and mangled characters.", |
|
| 544 | - E_USER_NOTICE); |
|
| 543 | + "You may see strange artifacts, and mangled characters.", |
|
| 544 | + E_USER_NOTICE); |
|
| 545 | 545 | |
| 546 | 546 | return array(xml_parser_create(), $source); |
| 547 | 547 | } |
@@ -587,26 +587,26 @@ discard block |
||
| 587 | 587 | // courtesy, Ryan Currie, [email protected] |
| 588 | 588 | |
| 589 | 589 | if (!function_exists('array_change_key_case')) { |
| 590 | - define('CASE_UPPER', 1); |
|
| 591 | - define('CASE_LOWER', 0); |
|
| 590 | + define('CASE_UPPER', 1); |
|
| 591 | + define('CASE_LOWER', 0); |
|
| 592 | 592 | |
| 593 | 593 | |
| 594 | - function array_change_key_case($array, $case=CASE_LOWER) { |
|
| 594 | + function array_change_key_case($array, $case=CASE_LOWER) { |
|
| 595 | 595 | $output = array(); |
| 596 | 596 | switch($case){ |
| 597 | - case CASE_LOWER: |
|
| 597 | + case CASE_LOWER: |
|
| 598 | 598 | $cmd='strtolower'; |
| 599 | - break; |
|
| 600 | - case CASE_UPPER: |
|
| 599 | + break; |
|
| 600 | + case CASE_UPPER: |
|
| 601 | 601 | $cmd='strtoupper'; |
| 602 | - break; |
|
| 603 | - default: |
|
| 602 | + break; |
|
| 603 | + default: |
|
| 604 | 604 | $cmd = ''; |
| 605 | 605 | } |
| 606 | 606 | foreach($array as $key=>$value) { |
| 607 | 607 | $output[empty($cmd) ? $key : $cmd($key)] = $value; |
| 608 | 608 | } |
| 609 | 609 | return $output; |
| 610 | - } |
|
| 610 | + } |
|
| 611 | 611 | |
| 612 | 612 | } |
@@ -332,6 +332,10 @@ discard block |
||
| 332 | 332 | } |
| 333 | 333 | |
| 334 | 334 | // smart append - field and namespace aware |
| 335 | + |
|
| 336 | + /** |
|
| 337 | + * @param string $el |
|
| 338 | + */ |
|
| 335 | 339 | function append($el, $text) { |
| 336 | 340 | if (!$el) { |
| 337 | 341 | return; |
@@ -447,6 +451,10 @@ discard block |
||
| 447 | 451 | /** |
| 448 | 452 | * return XML parser, and possibly re-encoded source |
| 449 | 453 | * |
| 454 | + * @param string $source |
|
| 455 | + * @param string $out_enc |
|
| 456 | + * @param string|null $in_enc |
|
| 457 | + * @param boolean $detect |
|
| 450 | 458 | */ |
| 451 | 459 | function create_parser($source, $out_enc, $in_enc, $detect) { |
| 452 | 460 | if ( substr(phpversion(),0,1) == 5) { |
@@ -556,6 +564,9 @@ discard block |
||
| 556 | 564 | } |
| 557 | 565 | } |
| 558 | 566 | |
| 567 | + /** |
|
| 568 | + * @param integer $lvl |
|
| 569 | + */ |
|
| 559 | 570 | function error ($errormsg, $lvl=E_USER_WARNING) { |
| 560 | 571 | // append PHP's error message if track_errors enabled |
| 561 | 572 | if ( isset($php_errormsg) ) { |
@@ -591,6 +602,9 @@ discard block |
||
| 591 | 602 | define('CASE_LOWER', 0); |
| 592 | 603 | |
| 593 | 604 | |
| 605 | + /** |
|
| 606 | + * @param integer $case |
|
| 607 | + */ |
|
| 594 | 608 | function array_change_key_case($array, $case=CASE_LOWER) { |
| 595 | 609 | $output = array(); |
| 596 | 610 | switch($case){ |
@@ -23,7 +23,7 @@ discard block |
||
| 23 | 23 | define('RSS', 'RSS'); |
| 24 | 24 | define('ATOM', 'Atom'); |
| 25 | 25 | |
| 26 | -require_once (MAGPIE_DIR . 'rss_utils.inc'); |
|
| 26 | +require_once (MAGPIE_DIR.'rss_utils.inc'); |
|
| 27 | 27 | |
| 28 | 28 | /** |
| 29 | 29 | * Hybrid parser, and object, takes RSS as a string and returns a simple object. |
@@ -31,19 +31,19 @@ discard block |
||
| 31 | 31 | * see: rss_fetch.inc for a simpler interface with integrated caching support |
| 32 | 32 | * |
| 33 | 33 | */ |
| 34 | -class MagpieRSS { |
|
| 34 | +class MagpieRSS{ |
|
| 35 | 35 | var $parser; |
| 36 | 36 | |
| 37 | - var $current_item = array(); // item currently being parsed |
|
| 38 | - var $items = array(); // collection of parsed items |
|
| 39 | - var $channel = array(); // hash of channel fields |
|
| 37 | + var $current_item = array(); // item currently being parsed |
|
| 38 | + var $items = array(); // collection of parsed items |
|
| 39 | + var $channel = array(); // hash of channel fields |
|
| 40 | 40 | var $textinput = array(); |
| 41 | 41 | var $image = array(); |
| 42 | 42 | var $feed_type; |
| 43 | 43 | var $feed_version; |
| 44 | - var $encoding = ''; // output encoding of parsed rss |
|
| 44 | + var $encoding = ''; // output encoding of parsed rss |
|
| 45 | 45 | |
| 46 | - var $_source_encoding = ''; // only set if we have to parse xml prolog |
|
| 46 | + var $_source_encoding = ''; // only set if we have to parse xml prolog |
|
| 47 | 47 | |
| 48 | 48 | var $ERROR = ""; |
| 49 | 49 | var $WARNING = ""; |
@@ -91,15 +91,15 @@ discard block |
||
| 91 | 91 | * source encoding. (caveat emptor) |
| 92 | 92 | * |
| 93 | 93 | */ |
| 94 | - function __construct($source, $output_encoding='ISO-8859-1', |
|
| 95 | - $input_encoding=null, $detect_encoding=true) |
|
| 94 | + function __construct($source, $output_encoding = 'ISO-8859-1', |
|
| 95 | + $input_encoding = null, $detect_encoding = true) |
|
| 96 | 96 | { |
| 97 | 97 | # if PHP xml isn't compiled in, die |
| 98 | 98 | # |
| 99 | 99 | if (!function_exists('xml_parser_create')) { |
| 100 | - $this->error( "Failed to load PHP's XML Extension. " . |
|
| 100 | + $this->error("Failed to load PHP's XML Extension. ". |
|
| 101 | 101 | "http://www.php.net/manual/en/ref.xml.php", |
| 102 | - E_USER_ERROR ); |
|
| 102 | + E_USER_ERROR); |
|
| 103 | 103 | } |
| 104 | 104 | |
| 105 | 105 | list($parser, $source) = $this->create_parser($source, |
@@ -107,9 +107,9 @@ discard block |
||
| 107 | 107 | |
| 108 | 108 | |
| 109 | 109 | if (!is_resource($parser)) { |
| 110 | - $this->error( "Failed to create an instance of PHP's XML parser. " . |
|
| 110 | + $this->error("Failed to create an instance of PHP's XML parser. ". |
|
| 111 | 111 | "http://www.php.net/manual/en/ref.xml.php", |
| 112 | - E_USER_ERROR ); |
|
| 112 | + E_USER_ERROR); |
|
| 113 | 113 | } |
| 114 | 114 | |
| 115 | 115 | |
@@ -118,57 +118,57 @@ discard block |
||
| 118 | 118 | # pass in parser, and a reference to this object |
| 119 | 119 | # setup handlers |
| 120 | 120 | # |
| 121 | - xml_set_object( $this->parser, $this ); |
|
| 121 | + xml_set_object($this->parser, $this); |
|
| 122 | 122 | xml_set_element_handler($this->parser, |
| 123 | - 'feed_start_element', 'feed_end_element' ); |
|
| 123 | + 'feed_start_element', 'feed_end_element'); |
|
| 124 | 124 | |
| 125 | - xml_set_character_data_handler( $this->parser, 'feed_cdata' ); |
|
| 125 | + xml_set_character_data_handler($this->parser, 'feed_cdata'); |
|
| 126 | 126 | |
| 127 | - $status = xml_parse( $this->parser, $source ); |
|
| 127 | + $status = xml_parse($this->parser, $source); |
|
| 128 | 128 | |
| 129 | - if (! $status ) { |
|
| 130 | - $errorcode = xml_get_error_code( $this->parser ); |
|
| 131 | - if ( $errorcode != XML_ERROR_NONE ) { |
|
| 132 | - $xml_error = xml_error_string( $errorcode ); |
|
| 129 | + if (!$status) { |
|
| 130 | + $errorcode = xml_get_error_code($this->parser); |
|
| 131 | + if ($errorcode != XML_ERROR_NONE) { |
|
| 132 | + $xml_error = xml_error_string($errorcode); |
|
| 133 | 133 | $error_line = xml_get_current_line_number($this->parser); |
| 134 | 134 | $error_col = xml_get_current_column_number($this->parser); |
| 135 | 135 | $errormsg = "$xml_error at line $error_line, column $error_col"; |
| 136 | 136 | |
| 137 | - $this->error( $errormsg ); |
|
| 137 | + $this->error($errormsg); |
|
| 138 | 138 | } |
| 139 | 139 | } |
| 140 | 140 | |
| 141 | - xml_parser_free( $this->parser ); |
|
| 141 | + xml_parser_free($this->parser); |
|
| 142 | 142 | |
| 143 | 143 | $this->normalize(); |
| 144 | 144 | } |
| 145 | 145 | |
| 146 | - function feed_start_element($p, $element, &$attrs) { |
|
| 146 | + function feed_start_element($p, $element, &$attrs){ |
|
| 147 | 147 | $el = $element = strtolower($element); |
| 148 | 148 | $attrs = array_change_key_case($attrs, CASE_LOWER); |
| 149 | 149 | |
| 150 | 150 | // check for a namespace, and split if found |
| 151 | 151 | $ns = false; |
| 152 | - if ( strpos( $element, ':' ) ) { |
|
| 153 | - list($ns, $el) = explode( ':', $element, 2); |
|
| 152 | + if (strpos($element, ':')) { |
|
| 153 | + list($ns, $el) = explode(':', $element, 2); |
|
| 154 | 154 | } |
| 155 | - if ( $ns and $ns != 'rdf' ) { |
|
| 155 | + if ($ns and $ns != 'rdf') { |
|
| 156 | 156 | $this->current_namespace = $ns; |
| 157 | 157 | } |
| 158 | 158 | |
| 159 | 159 | # if feed type isn't set, then this is first element of feed |
| 160 | 160 | # identify feed from root element |
| 161 | 161 | # |
| 162 | - if (!isset($this->feed_type) ) { |
|
| 163 | - if ( $el == 'rdf' ) { |
|
| 162 | + if (!isset($this->feed_type)) { |
|
| 163 | + if ($el == 'rdf') { |
|
| 164 | 164 | $this->feed_type = RSS; |
| 165 | 165 | $this->feed_version = '1.0'; |
| 166 | 166 | } |
| 167 | - elseif ( $el == 'rss' ) { |
|
| 167 | + elseif ($el == 'rss') { |
|
| 168 | 168 | $this->feed_type = RSS; |
| 169 | 169 | $this->feed_version = $attrs['version']; |
| 170 | 170 | } |
| 171 | - elseif ( $el == 'feed' ) { |
|
| 171 | + elseif ($el == 'feed') { |
|
| 172 | 172 | $this->feed_type = ATOM; |
| 173 | 173 | $this->feed_version = $attrs['version']; |
| 174 | 174 | $this->inchannel = true; |
@@ -176,14 +176,14 @@ discard block |
||
| 176 | 176 | return; |
| 177 | 177 | } |
| 178 | 178 | |
| 179 | - if ( $el == 'channel' ) |
|
| 179 | + if ($el == 'channel') |
|
| 180 | 180 | { |
| 181 | 181 | $this->inchannel = true; |
| 182 | 182 | } |
| 183 | - elseif ($el == 'item' or $el == 'entry' ) |
|
| 183 | + elseif ($el == 'item' or $el == 'entry') |
|
| 184 | 184 | { |
| 185 | 185 | $this->initem = true; |
| 186 | - if ( isset($attrs['rdf:about']) ) { |
|
| 186 | + if (isset($attrs['rdf:about'])) { |
|
| 187 | 187 | $this->current_item['about'] = $attrs['rdf:about']; |
| 188 | 188 | } |
| 189 | 189 | } |
@@ -207,10 +207,10 @@ discard block |
||
| 207 | 207 | } |
| 208 | 208 | |
| 209 | 209 | # handle atom content constructs |
| 210 | - elseif ( $this->feed_type == ATOM and in_array($el, $this->_CONTENT_CONSTRUCTS) ) |
|
| 210 | + elseif ($this->feed_type == ATOM and in_array($el, $this->_CONTENT_CONSTRUCTS)) |
|
| 211 | 211 | { |
| 212 | 212 | // avoid clashing w/ RSS mod_content |
| 213 | - if ($el == 'content' ) { |
|
| 213 | + if ($el == 'content') { |
|
| 214 | 214 | $el = 'atom_content'; |
| 215 | 215 | } |
| 216 | 216 | |
@@ -220,31 +220,31 @@ discard block |
||
| 220 | 220 | } |
| 221 | 221 | |
| 222 | 222 | // if inside an Atom content construct (e.g. content or summary) field treat tags as text |
| 223 | - elseif ($this->feed_type == ATOM and $this->incontent ) |
|
| 223 | + elseif ($this->feed_type == ATOM and $this->incontent) |
|
| 224 | 224 | { |
| 225 | 225 | // if tags are inlined, then flatten |
| 226 | 226 | $attrs_str = implode(' ', |
| 227 | 227 | array_map('map_attrs', |
| 228 | 228 | array_keys($attrs), |
| 229 | - array_values($attrs) ) ); |
|
| 229 | + array_values($attrs))); |
|
| 230 | 230 | |
| 231 | - $this->append_content( "<$element $attrs_str>" ); |
|
| 231 | + $this->append_content("<$element $attrs_str>"); |
|
| 232 | 232 | |
| 233 | - array_unshift( $this->stack, $el ); |
|
| 233 | + array_unshift($this->stack, $el); |
|
| 234 | 234 | } |
| 235 | 235 | |
| 236 | 236 | // Atom support many links per containging element. |
| 237 | 237 | // Magpie treats link elements of type rel='alternate' |
| 238 | 238 | // as being equivalent to RSS's simple link element. |
| 239 | 239 | // |
| 240 | - elseif ($this->feed_type == ATOM and $el == 'link' ) |
|
| 240 | + elseif ($this->feed_type == ATOM and $el == 'link') |
|
| 241 | 241 | { |
| 242 | - if ( isset($attrs['rel']) and $attrs['rel'] == 'alternate' ) |
|
| 242 | + if (isset($attrs['rel']) and $attrs['rel'] == 'alternate') |
|
| 243 | 243 | { |
| 244 | 244 | $link_el = 'link'; |
| 245 | 245 | } |
| 246 | 246 | else { |
| 247 | - $link_el = 'link_' . $attrs['rel']; |
|
| 247 | + $link_el = 'link_'.$attrs['rel']; |
|
| 248 | 248 | } |
| 249 | 249 | |
| 250 | 250 | $this->append($link_el, $attrs['href']); |
@@ -257,10 +257,10 @@ discard block |
||
| 257 | 257 | |
| 258 | 258 | |
| 259 | 259 | |
| 260 | - function feed_cdata ($p, $text) { |
|
| 260 | + function feed_cdata($p, $text){ |
|
| 261 | 261 | if ($this->feed_type == ATOM and $this->incontent) |
| 262 | 262 | { |
| 263 | - $this->append_content( $text ); |
|
| 263 | + $this->append_content($text); |
|
| 264 | 264 | } |
| 265 | 265 | else { |
| 266 | 266 | $current_el = implode('_', array_reverse($this->stack)); |
@@ -268,35 +268,35 @@ discard block |
||
| 268 | 268 | } |
| 269 | 269 | } |
| 270 | 270 | |
| 271 | - function feed_end_element ($p, $el) { |
|
| 271 | + function feed_end_element($p, $el){ |
|
| 272 | 272 | $el = strtolower($el); |
| 273 | 273 | |
| 274 | - if ( $el == 'item' or $el == 'entry' ) |
|
| 274 | + if ($el == 'item' or $el == 'entry') |
|
| 275 | 275 | { |
| 276 | 276 | $this->items[] = $this->current_item; |
| 277 | 277 | $this->current_item = array(); |
| 278 | 278 | $this->initem = false; |
| 279 | 279 | } |
| 280 | - elseif ($this->feed_type == RSS and $this->current_namespace == '' and $el == 'textinput' ) |
|
| 280 | + elseif ($this->feed_type == RSS and $this->current_namespace == '' and $el == 'textinput') |
|
| 281 | 281 | { |
| 282 | 282 | $this->intextinput = false; |
| 283 | 283 | } |
| 284 | - elseif ($this->feed_type == RSS and $this->current_namespace == '' and $el == 'image' ) |
|
| 284 | + elseif ($this->feed_type == RSS and $this->current_namespace == '' and $el == 'image') |
|
| 285 | 285 | { |
| 286 | 286 | $this->inimage = false; |
| 287 | 287 | } |
| 288 | - elseif ($this->feed_type == ATOM and in_array($el, $this->_CONTENT_CONSTRUCTS) ) |
|
| 288 | + elseif ($this->feed_type == ATOM and in_array($el, $this->_CONTENT_CONSTRUCTS)) |
|
| 289 | 289 | { |
| 290 | 290 | $this->incontent = false; |
| 291 | 291 | } |
| 292 | - elseif ($el == 'channel' or $el == 'feed' ) |
|
| 292 | + elseif ($el == 'channel' or $el == 'feed') |
|
| 293 | 293 | { |
| 294 | 294 | $this->inchannel = false; |
| 295 | 295 | } |
| 296 | - elseif ($this->feed_type == ATOM and $this->incontent ) { |
|
| 296 | + elseif ($this->feed_type == ATOM and $this->incontent) { |
|
| 297 | 297 | // balance tags properly |
| 298 | 298 | // note: i don't think this is actually neccessary |
| 299 | - if ( $this->stack[0] == $el ) |
|
| 299 | + if ($this->stack[0] == $el) |
|
| 300 | 300 | { |
| 301 | 301 | $this->append_content("</$el>"); |
| 302 | 302 | } |
@@ -304,91 +304,91 @@ discard block |
||
| 304 | 304 | $this->append_content("<$el />"); |
| 305 | 305 | } |
| 306 | 306 | |
| 307 | - array_shift( $this->stack ); |
|
| 307 | + array_shift($this->stack); |
|
| 308 | 308 | } |
| 309 | 309 | else { |
| 310 | - array_shift( $this->stack ); |
|
| 310 | + array_shift($this->stack); |
|
| 311 | 311 | } |
| 312 | 312 | |
| 313 | 313 | $this->current_namespace = false; |
| 314 | 314 | } |
| 315 | 315 | |
| 316 | - function concat (&$str1, $str2="") { |
|
| 317 | - if (!isset($str1) ) { |
|
| 318 | - $str1=""; |
|
| 316 | + function concat(&$str1, $str2 = ""){ |
|
| 317 | + if (!isset($str1)) { |
|
| 318 | + $str1 = ""; |
|
| 319 | 319 | } |
| 320 | 320 | $str1 .= $str2; |
| 321 | 321 | } |
| 322 | 322 | |
| 323 | 323 | |
| 324 | 324 | |
| 325 | - function append_content($text) { |
|
| 326 | - if ( $this->initem ) { |
|
| 327 | - $this->concat( $this->current_item[ $this->incontent ], $text ); |
|
| 325 | + function append_content($text){ |
|
| 326 | + if ($this->initem) { |
|
| 327 | + $this->concat($this->current_item[$this->incontent], $text); |
|
| 328 | 328 | } |
| 329 | - elseif ( $this->inchannel ) { |
|
| 330 | - $this->concat( $this->channel[ $this->incontent ], $text ); |
|
| 329 | + elseif ($this->inchannel) { |
|
| 330 | + $this->concat($this->channel[$this->incontent], $text); |
|
| 331 | 331 | } |
| 332 | 332 | } |
| 333 | 333 | |
| 334 | 334 | // smart append - field and namespace aware |
| 335 | - function append($el, $text) { |
|
| 335 | + function append($el, $text){ |
|
| 336 | 336 | if (!$el) { |
| 337 | 337 | return; |
| 338 | 338 | } |
| 339 | - if ( $this->current_namespace ) |
|
| 339 | + if ($this->current_namespace) |
|
| 340 | 340 | { |
| 341 | - if ( $this->initem ) { |
|
| 341 | + if ($this->initem) { |
|
| 342 | 342 | $this->concat( |
| 343 | - $this->current_item[ $this->current_namespace ][ $el ], $text); |
|
| 343 | + $this->current_item[$this->current_namespace][$el], $text); |
|
| 344 | 344 | } |
| 345 | 345 | elseif ($this->inchannel) { |
| 346 | 346 | $this->concat( |
| 347 | - $this->channel[ $this->current_namespace][ $el ], $text ); |
|
| 347 | + $this->channel[$this->current_namespace][$el], $text ); |
|
| 348 | 348 | } |
| 349 | 349 | elseif ($this->intextinput) { |
| 350 | 350 | $this->concat( |
| 351 | - $this->textinput[ $this->current_namespace][ $el ], $text ); |
|
| 351 | + $this->textinput[$this->current_namespace][$el], $text ); |
|
| 352 | 352 | } |
| 353 | 353 | elseif ($this->inimage) { |
| 354 | 354 | $this->concat( |
| 355 | - $this->image[ $this->current_namespace ][ $el ], $text ); |
|
| 355 | + $this->image[$this->current_namespace][$el], $text ); |
|
| 356 | 356 | } |
| 357 | 357 | } |
| 358 | 358 | else { |
| 359 | - if ( $this->initem ) { |
|
| 359 | + if ($this->initem) { |
|
| 360 | 360 | $this->concat( |
| 361 | - $this->current_item[ $el ], $text); |
|
| 361 | + $this->current_item[$el], $text); |
|
| 362 | 362 | } |
| 363 | 363 | elseif ($this->intextinput) { |
| 364 | 364 | $this->concat( |
| 365 | - $this->textinput[ $el ], $text ); |
|
| 365 | + $this->textinput[$el], $text ); |
|
| 366 | 366 | } |
| 367 | 367 | elseif ($this->inimage) { |
| 368 | 368 | $this->concat( |
| 369 | - $this->image[ $el ], $text ); |
|
| 369 | + $this->image[$el], $text ); |
|
| 370 | 370 | } |
| 371 | 371 | elseif ($this->inchannel) { |
| 372 | 372 | $this->concat( |
| 373 | - $this->channel[ $el ], $text ); |
|
| 373 | + $this->channel[$el], $text ); |
|
| 374 | 374 | } |
| 375 | 375 | |
| 376 | 376 | } |
| 377 | 377 | } |
| 378 | 378 | |
| 379 | - function normalize () { |
|
| 379 | + function normalize(){ |
|
| 380 | 380 | // if atom populate rss fields |
| 381 | - if ( $this->is_atom() ) { |
|
| 381 | + if ($this->is_atom()) { |
|
| 382 | 382 | $this->channel['description'] = $this->channel['tagline']; |
| 383 | - for ( $i = 0; $i < count($this->items); $i++) { |
|
| 383 | + for ($i = 0; $i < count($this->items); $i++) { |
|
| 384 | 384 | $item = $this->items[$i]; |
| 385 | - if ( isset($item['summary']) ) |
|
| 385 | + if (isset($item['summary'])) |
|
| 386 | 386 | $item['description'] = $item['summary']; |
| 387 | - if ( isset($item['atom_content'])) |
|
| 387 | + if (isset($item['atom_content'])) |
|
| 388 | 388 | $item['content']['encoded'] = $item['atom_content']; |
| 389 | 389 | |
| 390 | - $atom_date = (isset($item['issued']) ) ? $item['issued'] : $item['modified']; |
|
| 391 | - if ( $atom_date ) { |
|
| 390 | + $atom_date = (isset($item['issued'])) ? $item['issued'] : $item['modified']; |
|
| 391 | + if ($atom_date) { |
|
| 392 | 392 | $epoch = @parse_w3cdtf($atom_date); |
| 393 | 393 | if ($epoch and $epoch > 0) { |
| 394 | 394 | $item['date_timestamp'] = $epoch; |
@@ -398,22 +398,22 @@ discard block |
||
| 398 | 398 | $this->items[$i] = $item; |
| 399 | 399 | } |
| 400 | 400 | } |
| 401 | - elseif ( $this->is_rss() ) { |
|
| 401 | + elseif ($this->is_rss()) { |
|
| 402 | 402 | $this->channel['tagline'] = $this->channel['description']; |
| 403 | - for ( $i = 0; $i < count($this->items); $i++) { |
|
| 403 | + for ($i = 0; $i < count($this->items); $i++) { |
|
| 404 | 404 | $item = $this->items[$i]; |
| 405 | - if ( isset($item['description'])) |
|
| 405 | + if (isset($item['description'])) |
|
| 406 | 406 | $item['summary'] = $item['description']; |
| 407 | - if ( isset($item['content']['encoded'] ) ) |
|
| 407 | + if (isset($item['content']['encoded'])) |
|
| 408 | 408 | $item['atom_content'] = $item['content']['encoded']; |
| 409 | 409 | |
| 410 | - if ( $this->is_rss() == '1.0' and isset($item['dc']['date']) ) { |
|
| 410 | + if ($this->is_rss() == '1.0' and isset($item['dc']['date'])) { |
|
| 411 | 411 | $epoch = @parse_w3cdtf($item['dc']['date']); |
| 412 | 412 | if ($epoch and $epoch > 0) { |
| 413 | 413 | $item['date_timestamp'] = $epoch; |
| 414 | 414 | } |
| 415 | 415 | } |
| 416 | - elseif ( isset($item['pubdate']) ) { |
|
| 416 | + elseif (isset($item['pubdate'])) { |
|
| 417 | 417 | $epoch = @strtotime($item['pubdate']); |
| 418 | 418 | if ($epoch > 0) { |
| 419 | 419 | $item['date_timestamp'] = $epoch; |
@@ -426,8 +426,8 @@ discard block |
||
| 426 | 426 | } |
| 427 | 427 | |
| 428 | 428 | |
| 429 | - function is_rss () { |
|
| 430 | - if ( $this->feed_type == RSS ) { |
|
| 429 | + function is_rss(){ |
|
| 430 | + if ($this->feed_type == RSS) { |
|
| 431 | 431 | return $this->feed_version; |
| 432 | 432 | } |
| 433 | 433 | else { |
@@ -435,8 +435,8 @@ discard block |
||
| 435 | 435 | } |
| 436 | 436 | } |
| 437 | 437 | |
| 438 | - function is_atom() { |
|
| 439 | - if ( $this->feed_type == ATOM ) { |
|
| 438 | + function is_atom(){ |
|
| 439 | + if ($this->feed_type == ATOM) { |
|
| 440 | 440 | return $this->feed_version; |
| 441 | 441 | } |
| 442 | 442 | else { |
@@ -448,8 +448,8 @@ discard block |
||
| 448 | 448 | * return XML parser, and possibly re-encoded source |
| 449 | 449 | * |
| 450 | 450 | */ |
| 451 | - function create_parser($source, $out_enc, $in_enc, $detect) { |
|
| 452 | - if ( substr(phpversion(),0,1) == 5) { |
|
| 451 | + function create_parser($source, $out_enc, $in_enc, $detect){ |
|
| 452 | + if (substr(phpversion(), 0, 1) == 5) { |
|
| 453 | 453 | $parser = $this->php5_create_parser($in_enc, $detect); |
| 454 | 454 | } |
| 455 | 455 | else { |
@@ -472,9 +472,9 @@ discard block |
||
| 472 | 472 | * All hail libxml2! |
| 473 | 473 | * |
| 474 | 474 | */ |
| 475 | - function php5_create_parser($in_enc, $detect) { |
|
| 475 | + function php5_create_parser($in_enc, $detect){ |
|
| 476 | 476 | // by default php5 does a fine job of detecting input encodings |
| 477 | - if(!$detect && $in_enc) { |
|
| 477 | + if (!$detect && $in_enc) { |
|
| 478 | 478 | return xml_parser_create($in_enc); |
| 479 | 479 | } |
| 480 | 480 | else { |
@@ -497,8 +497,8 @@ discard block |
||
| 497 | 497 | * @see http://minutillo.com/steve/weblog/2004/6/17/php-xml-and-character-encodings-a-tale-of-sadness-rage-and-data-loss |
| 498 | 498 | * |
| 499 | 499 | */ |
| 500 | - function php4_create_parser($source, $in_enc, $detect) { |
|
| 501 | - if ( !$detect ) { |
|
| 500 | + function php4_create_parser($source, $in_enc, $detect){ |
|
| 501 | + if (!$detect) { |
|
| 502 | 502 | return array(xml_parser_create($in_enc), $source); |
| 503 | 503 | } |
| 504 | 504 | |
@@ -522,8 +522,8 @@ discard block |
||
| 522 | 522 | // cast the XML to a known encoding |
| 523 | 523 | // @see http://php.net/iconv |
| 524 | 524 | |
| 525 | - if (function_exists('iconv')) { |
|
| 526 | - $encoded_source = iconv($in_enc,'UTF-8', $source); |
|
| 525 | + if (function_exists('iconv')) { |
|
| 526 | + $encoded_source = iconv($in_enc, 'UTF-8', $source); |
|
| 527 | 527 | if ($encoded_source) { |
| 528 | 528 | return array(xml_parser_create('UTF-8'), $encoded_source); |
| 529 | 529 | } |
@@ -531,24 +531,24 @@ discard block |
||
| 531 | 531 | |
| 532 | 532 | // iconv didn't work, try mb_convert_encoding |
| 533 | 533 | // @see http://php.net/mbstring |
| 534 | - if(function_exists('mb_convert_encoding')) { |
|
| 535 | - $encoded_source = mb_convert_encoding($source, 'UTF-8', $in_enc ); |
|
| 534 | + if (function_exists('mb_convert_encoding')) { |
|
| 535 | + $encoded_source = mb_convert_encoding($source, 'UTF-8', $in_enc); |
|
| 536 | 536 | if ($encoded_source) { |
| 537 | 537 | return array(xml_parser_create('UTF-8'), $encoded_source); |
| 538 | 538 | } |
| 539 | 539 | } |
| 540 | 540 | |
| 541 | 541 | // else |
| 542 | - $this->error("Feed is in an unsupported character encoding. ($in_enc) " . |
|
| 542 | + $this->error("Feed is in an unsupported character encoding. ($in_enc) ". |
|
| 543 | 543 | "You may see strange artifacts, and mangled characters.", |
| 544 | 544 | E_USER_NOTICE); |
| 545 | 545 | |
| 546 | 546 | return array(xml_parser_create(), $source); |
| 547 | 547 | } |
| 548 | 548 | |
| 549 | - function known_encoding($enc) { |
|
| 549 | + function known_encoding($enc){ |
|
| 550 | 550 | $enc = strtoupper($enc); |
| 551 | - if ( in_array($enc, $this->_KNOWN_ENCODINGS) ) { |
|
| 551 | + if (in_array($enc, $this->_KNOWN_ENCODINGS)) { |
|
| 552 | 552 | return $enc; |
| 553 | 553 | } |
| 554 | 554 | else { |
@@ -556,20 +556,20 @@ discard block |
||
| 556 | 556 | } |
| 557 | 557 | } |
| 558 | 558 | |
| 559 | - function error ($errormsg, $lvl=E_USER_WARNING) { |
|
| 559 | + function error($errormsg, $lvl = E_USER_WARNING){ |
|
| 560 | 560 | // append PHP's error message if track_errors enabled |
| 561 | - if ( isset($php_errormsg) ) { |
|
| 561 | + if (isset($php_errormsg)) { |
|
| 562 | 562 | $errormsg .= " ($php_errormsg)"; |
| 563 | 563 | } |
| 564 | - if ( MAGPIE_DEBUG ) { |
|
| 565 | - trigger_error( $errormsg, $lvl); |
|
| 564 | + if (MAGPIE_DEBUG) { |
|
| 565 | + trigger_error($errormsg, $lvl); |
|
| 566 | 566 | } |
| 567 | 567 | else { |
| 568 | - error_log( $errormsg, 0); |
|
| 568 | + error_log($errormsg, 0); |
|
| 569 | 569 | } |
| 570 | 570 | |
| 571 | - $notices = E_USER_NOTICE|E_NOTICE; |
|
| 572 | - if ( $lvl&$notices ) { |
|
| 571 | + $notices = E_USER_NOTICE | E_NOTICE; |
|
| 572 | + if ($lvl & $notices) { |
|
| 573 | 573 | $this->WARNING = $errormsg; |
| 574 | 574 | } else { |
| 575 | 575 | $this->ERROR = $errormsg; |
@@ -579,7 +579,7 @@ discard block |
||
| 579 | 579 | |
| 580 | 580 | } // end class RSS |
| 581 | 581 | |
| 582 | -function map_attrs($k, $v) { |
|
| 582 | +function map_attrs($k, $v){ |
|
| 583 | 583 | return "$k=\"$v\""; |
| 584 | 584 | } |
| 585 | 585 | |
@@ -591,19 +591,19 @@ discard block |
||
| 591 | 591 | define('CASE_LOWER', 0); |
| 592 | 592 | |
| 593 | 593 | |
| 594 | - function array_change_key_case($array, $case=CASE_LOWER) { |
|
| 594 | + function array_change_key_case($array, $case = CASE_LOWER){ |
|
| 595 | 595 | $output = array(); |
| 596 | - switch($case){ |
|
| 596 | + switch ($case) { |
|
| 597 | 597 | case CASE_LOWER: |
| 598 | - $cmd='strtolower'; |
|
| 598 | + $cmd = 'strtolower'; |
|
| 599 | 599 | break; |
| 600 | 600 | case CASE_UPPER: |
| 601 | - $cmd='strtoupper'; |
|
| 601 | + $cmd = 'strtoupper'; |
|
| 602 | 602 | break; |
| 603 | 603 | default: |
| 604 | 604 | $cmd = ''; |
| 605 | 605 | } |
| 606 | - foreach($array as $key=>$value) { |
|
| 606 | + foreach ($array as $key=>$value) { |
|
| 607 | 607 | $output[empty($cmd) ? $key : $cmd($key)] = $value; |
| 608 | 608 | } |
| 609 | 609 | return $output; |
@@ -31,7 +31,8 @@ discard block |
||
| 31 | 31 | * see: rss_fetch.inc for a simpler interface with integrated caching support |
| 32 | 32 | * |
| 33 | 33 | */ |
| 34 | -class MagpieRSS { |
|
| 34 | +class MagpieRSS |
|
| 35 | +{ |
|
| 35 | 36 | var $parser; |
| 36 | 37 | |
| 37 | 38 | var $current_item = array(); // item currently being parsed |
@@ -143,7 +144,8 @@ discard block |
||
| 143 | 144 | $this->normalize(); |
| 144 | 145 | } |
| 145 | 146 | |
| 146 | - function feed_start_element($p, $element, &$attrs) { |
|
| 147 | + function feed_start_element($p, $element, &$attrs) |
|
| 148 | + { |
|
| 147 | 149 | $el = $element = strtolower($element); |
| 148 | 150 | $attrs = array_change_key_case($attrs, CASE_LOWER); |
| 149 | 151 | |
@@ -163,12 +165,10 @@ discard block |
||
| 163 | 165 | if ( $el == 'rdf' ) { |
| 164 | 166 | $this->feed_type = RSS; |
| 165 | 167 | $this->feed_version = '1.0'; |
| 166 | - } |
|
| 167 | - elseif ( $el == 'rss' ) { |
|
| 168 | + } elseif ( $el == 'rss' ) { |
|
| 168 | 169 | $this->feed_type = RSS; |
| 169 | 170 | $this->feed_version = $attrs['version']; |
| 170 | - } |
|
| 171 | - elseif ( $el == 'feed' ) { |
|
| 171 | + } elseif ( $el == 'feed' ) { |
|
| 172 | 172 | $this->feed_type = ATOM; |
| 173 | 173 | $this->feed_version = $attrs['version']; |
| 174 | 174 | $this->inchannel = true; |
@@ -176,12 +176,9 @@ discard block |
||
| 176 | 176 | return; |
| 177 | 177 | } |
| 178 | 178 | |
| 179 | - if ( $el == 'channel' ) |
|
| 180 | - { |
|
| 179 | + if ( $el == 'channel' ) { |
|
| 181 | 180 | $this->inchannel = true; |
| 182 | - } |
|
| 183 | - elseif ($el == 'item' or $el == 'entry' ) |
|
| 184 | - { |
|
| 181 | + } elseif ($el == 'item' or $el == 'entry' ) { |
|
| 185 | 182 | $this->initem = true; |
| 186 | 183 | if ( isset($attrs['rdf:about']) ) { |
| 187 | 184 | $this->current_item['about'] = $attrs['rdf:about']; |
@@ -193,22 +190,17 @@ discard block |
||
| 193 | 190 | elseif ( |
| 194 | 191 | $this->feed_type == RSS and |
| 195 | 192 | $this->current_namespace == '' and |
| 196 | - $el == 'textinput' ) |
|
| 197 | - { |
|
| 193 | + $el == 'textinput' ) { |
|
| 198 | 194 | $this->intextinput = true; |
| 199 | - } |
|
| 200 | - |
|
| 201 | - elseif ( |
|
| 195 | + } elseif ( |
|
| 202 | 196 | $this->feed_type == RSS and |
| 203 | 197 | $this->current_namespace == '' and |
| 204 | - $el == 'image' ) |
|
| 205 | - { |
|
| 198 | + $el == 'image' ) { |
|
| 206 | 199 | $this->inimage = true; |
| 207 | 200 | } |
| 208 | 201 | |
| 209 | 202 | # handle atom content constructs |
| 210 | - elseif ( $this->feed_type == ATOM and in_array($el, $this->_CONTENT_CONSTRUCTS) ) |
|
| 211 | - { |
|
| 203 | + elseif ( $this->feed_type == ATOM and in_array($el, $this->_CONTENT_CONSTRUCTS) ) { |
|
| 212 | 204 | // avoid clashing w/ RSS mod_content |
| 213 | 205 | if ($el == 'content' ) { |
| 214 | 206 | $el = 'atom_content'; |
@@ -220,8 +212,7 @@ discard block |
||
| 220 | 212 | } |
| 221 | 213 | |
| 222 | 214 | // if inside an Atom content construct (e.g. content or summary) field treat tags as text |
| 223 | - elseif ($this->feed_type == ATOM and $this->incontent ) |
|
| 224 | - { |
|
| 215 | + elseif ($this->feed_type == ATOM and $this->incontent ) { |
|
| 225 | 216 | // if tags are inlined, then flatten |
| 226 | 217 | $attrs_str = implode(' ', |
| 227 | 218 | array_map('map_attrs', |
@@ -237,13 +228,10 @@ discard block |
||
| 237 | 228 | // Magpie treats link elements of type rel='alternate' |
| 238 | 229 | // as being equivalent to RSS's simple link element. |
| 239 | 230 | // |
| 240 | - elseif ($this->feed_type == ATOM and $el == 'link' ) |
|
| 241 | - { |
|
| 242 | - if ( isset($attrs['rel']) and $attrs['rel'] == 'alternate' ) |
|
| 243 | - { |
|
| 231 | + elseif ($this->feed_type == ATOM and $el == 'link' ) { |
|
| 232 | + if ( isset($attrs['rel']) and $attrs['rel'] == 'alternate' ) { |
|
| 244 | 233 | $link_el = 'link'; |
| 245 | - } |
|
| 246 | - else { |
|
| 234 | + } else { |
|
| 247 | 235 | $link_el = 'link_' . $attrs['rel']; |
| 248 | 236 | } |
| 249 | 237 | |
@@ -257,63 +245,51 @@ discard block |
||
| 257 | 245 | |
| 258 | 246 | |
| 259 | 247 | |
| 260 | - function feed_cdata ($p, $text) { |
|
| 261 | - if ($this->feed_type == ATOM and $this->incontent) |
|
| 262 | - { |
|
| 248 | + function feed_cdata ($p, $text) |
|
| 249 | + { |
|
| 250 | + if ($this->feed_type == ATOM and $this->incontent) { |
|
| 263 | 251 | $this->append_content( $text ); |
| 264 | - } |
|
| 265 | - else { |
|
| 252 | + } else { |
|
| 266 | 253 | $current_el = implode('_', array_reverse($this->stack)); |
| 267 | 254 | $this->append($current_el, $text); |
| 268 | 255 | } |
| 269 | 256 | } |
| 270 | 257 | |
| 271 | - function feed_end_element ($p, $el) { |
|
| 258 | + function feed_end_element ($p, $el) |
|
| 259 | + { |
|
| 272 | 260 | $el = strtolower($el); |
| 273 | 261 | |
| 274 | - if ( $el == 'item' or $el == 'entry' ) |
|
| 275 | - { |
|
| 262 | + if ( $el == 'item' or $el == 'entry' ) { |
|
| 276 | 263 | $this->items[] = $this->current_item; |
| 277 | 264 | $this->current_item = array(); |
| 278 | 265 | $this->initem = false; |
| 279 | - } |
|
| 280 | - elseif ($this->feed_type == RSS and $this->current_namespace == '' and $el == 'textinput' ) |
|
| 281 | - { |
|
| 266 | + } elseif ($this->feed_type == RSS and $this->current_namespace == '' and $el == 'textinput' ) { |
|
| 282 | 267 | $this->intextinput = false; |
| 283 | - } |
|
| 284 | - elseif ($this->feed_type == RSS and $this->current_namespace == '' and $el == 'image' ) |
|
| 285 | - { |
|
| 268 | + } elseif ($this->feed_type == RSS and $this->current_namespace == '' and $el == 'image' ) { |
|
| 286 | 269 | $this->inimage = false; |
| 287 | - } |
|
| 288 | - elseif ($this->feed_type == ATOM and in_array($el, $this->_CONTENT_CONSTRUCTS) ) |
|
| 289 | - { |
|
| 270 | + } elseif ($this->feed_type == ATOM and in_array($el, $this->_CONTENT_CONSTRUCTS) ) { |
|
| 290 | 271 | $this->incontent = false; |
| 291 | - } |
|
| 292 | - elseif ($el == 'channel' or $el == 'feed' ) |
|
| 293 | - { |
|
| 272 | + } elseif ($el == 'channel' or $el == 'feed' ) { |
|
| 294 | 273 | $this->inchannel = false; |
| 295 | - } |
|
| 296 | - elseif ($this->feed_type == ATOM and $this->incontent ) { |
|
| 274 | + } elseif ($this->feed_type == ATOM and $this->incontent ) { |
|
| 297 | 275 | // balance tags properly |
| 298 | 276 | // note: i don't think this is actually neccessary |
| 299 | - if ( $this->stack[0] == $el ) |
|
| 300 | - { |
|
| 277 | + if ( $this->stack[0] == $el ) { |
|
| 301 | 278 | $this->append_content("</$el>"); |
| 302 | - } |
|
| 303 | - else { |
|
| 279 | + } else { |
|
| 304 | 280 | $this->append_content("<$el />"); |
| 305 | 281 | } |
| 306 | 282 | |
| 307 | 283 | array_shift( $this->stack ); |
| 308 | - } |
|
| 309 | - else { |
|
| 284 | + } else { |
|
| 310 | 285 | array_shift( $this->stack ); |
| 311 | 286 | } |
| 312 | 287 | |
| 313 | 288 | $this->current_namespace = false; |
| 314 | 289 | } |
| 315 | 290 | |
| 316 | - function concat (&$str1, $str2="") { |
|
| 291 | + function concat (&$str1, $str2="") |
|
| 292 | + { |
|
| 317 | 293 | if (!isset($str1) ) { |
| 318 | 294 | $str1=""; |
| 319 | 295 | } |
@@ -322,53 +298,46 @@ discard block |
||
| 322 | 298 | |
| 323 | 299 | |
| 324 | 300 | |
| 325 | - function append_content($text) { |
|
| 301 | + function append_content($text) |
|
| 302 | + { |
|
| 326 | 303 | if ( $this->initem ) { |
| 327 | 304 | $this->concat( $this->current_item[ $this->incontent ], $text ); |
| 328 | - } |
|
| 329 | - elseif ( $this->inchannel ) { |
|
| 305 | + } elseif ( $this->inchannel ) { |
|
| 330 | 306 | $this->concat( $this->channel[ $this->incontent ], $text ); |
| 331 | 307 | } |
| 332 | 308 | } |
| 333 | 309 | |
| 334 | 310 | // smart append - field and namespace aware |
| 335 | - function append($el, $text) { |
|
| 311 | + function append($el, $text) |
|
| 312 | + { |
|
| 336 | 313 | if (!$el) { |
| 337 | 314 | return; |
| 338 | 315 | } |
| 339 | - if ( $this->current_namespace ) |
|
| 340 | - { |
|
| 316 | + if ( $this->current_namespace ) { |
|
| 341 | 317 | if ( $this->initem ) { |
| 342 | 318 | $this->concat( |
| 343 | 319 | $this->current_item[ $this->current_namespace ][ $el ], $text); |
| 344 | - } |
|
| 345 | - elseif ($this->inchannel) { |
|
| 320 | + } elseif ($this->inchannel) { |
|
| 346 | 321 | $this->concat( |
| 347 | 322 | $this->channel[ $this->current_namespace][ $el ], $text ); |
| 348 | - } |
|
| 349 | - elseif ($this->intextinput) { |
|
| 323 | + } elseif ($this->intextinput) { |
|
| 350 | 324 | $this->concat( |
| 351 | 325 | $this->textinput[ $this->current_namespace][ $el ], $text ); |
| 352 | - } |
|
| 353 | - elseif ($this->inimage) { |
|
| 326 | + } elseif ($this->inimage) { |
|
| 354 | 327 | $this->concat( |
| 355 | 328 | $this->image[ $this->current_namespace ][ $el ], $text ); |
| 356 | 329 | } |
| 357 | - } |
|
| 358 | - else { |
|
| 330 | + } else { |
|
| 359 | 331 | if ( $this->initem ) { |
| 360 | 332 | $this->concat( |
| 361 | 333 | $this->current_item[ $el ], $text); |
| 362 | - } |
|
| 363 | - elseif ($this->intextinput) { |
|
| 334 | + } elseif ($this->intextinput) { |
|
| 364 | 335 | $this->concat( |
| 365 | 336 | $this->textinput[ $el ], $text ); |
| 366 | - } |
|
| 367 | - elseif ($this->inimage) { |
|
| 337 | + } elseif ($this->inimage) { |
|
| 368 | 338 | $this->concat( |
| 369 | 339 | $this->image[ $el ], $text ); |
| 370 | - } |
|
| 371 | - elseif ($this->inchannel) { |
|
| 340 | + } elseif ($this->inchannel) { |
|
| 372 | 341 | $this->concat( |
| 373 | 342 | $this->channel[ $el ], $text ); |
| 374 | 343 | } |
@@ -376,16 +345,19 @@ discard block |
||
| 376 | 345 | } |
| 377 | 346 | } |
| 378 | 347 | |
| 379 | - function normalize () { |
|
| 348 | + function normalize () |
|
| 349 | + { |
|
| 380 | 350 | // if atom populate rss fields |
| 381 | 351 | if ( $this->is_atom() ) { |
| 382 | 352 | $this->channel['description'] = $this->channel['tagline']; |
| 383 | 353 | for ( $i = 0; $i < count($this->items); $i++) { |
| 384 | 354 | $item = $this->items[$i]; |
| 385 | - if ( isset($item['summary']) ) |
|
| 386 | - $item['description'] = $item['summary']; |
|
| 387 | - if ( isset($item['atom_content'])) |
|
| 388 | - $item['content']['encoded'] = $item['atom_content']; |
|
| 355 | + if ( isset($item['summary']) ) { |
|
| 356 | + $item['description'] = $item['summary']; |
|
| 357 | + } |
|
| 358 | + if ( isset($item['atom_content'])) { |
|
| 359 | + $item['content']['encoded'] = $item['atom_content']; |
|
| 360 | + } |
|
| 389 | 361 | |
| 390 | 362 | $atom_date = (isset($item['issued']) ) ? $item['issued'] : $item['modified']; |
| 391 | 363 | if ( $atom_date ) { |
@@ -397,23 +369,23 @@ discard block |
||
| 397 | 369 | |
| 398 | 370 | $this->items[$i] = $item; |
| 399 | 371 | } |
| 400 | - } |
|
| 401 | - elseif ( $this->is_rss() ) { |
|
| 372 | + } elseif ( $this->is_rss() ) { |
|
| 402 | 373 | $this->channel['tagline'] = $this->channel['description']; |
| 403 | 374 | for ( $i = 0; $i < count($this->items); $i++) { |
| 404 | 375 | $item = $this->items[$i]; |
| 405 | - if ( isset($item['description'])) |
|
| 406 | - $item['summary'] = $item['description']; |
|
| 407 | - if ( isset($item['content']['encoded'] ) ) |
|
| 408 | - $item['atom_content'] = $item['content']['encoded']; |
|
| 376 | + if ( isset($item['description'])) { |
|
| 377 | + $item['summary'] = $item['description']; |
|
| 378 | + } |
|
| 379 | + if ( isset($item['content']['encoded'] ) ) { |
|
| 380 | + $item['atom_content'] = $item['content']['encoded']; |
|
| 381 | + } |
|
| 409 | 382 | |
| 410 | 383 | if ( $this->is_rss() == '1.0' and isset($item['dc']['date']) ) { |
| 411 | 384 | $epoch = @parse_w3cdtf($item['dc']['date']); |
| 412 | 385 | if ($epoch and $epoch > 0) { |
| 413 | 386 | $item['date_timestamp'] = $epoch; |
| 414 | 387 | } |
| 415 | - } |
|
| 416 | - elseif ( isset($item['pubdate']) ) { |
|
| 388 | + } elseif ( isset($item['pubdate']) ) { |
|
| 417 | 389 | $epoch = @strtotime($item['pubdate']); |
| 418 | 390 | if ($epoch > 0) { |
| 419 | 391 | $item['date_timestamp'] = $epoch; |
@@ -426,20 +398,20 @@ discard block |
||
| 426 | 398 | } |
| 427 | 399 | |
| 428 | 400 | |
| 429 | - function is_rss () { |
|
| 401 | + function is_rss () |
|
| 402 | + { |
|
| 430 | 403 | if ( $this->feed_type == RSS ) { |
| 431 | 404 | return $this->feed_version; |
| 432 | - } |
|
| 433 | - else { |
|
| 405 | + } else { |
|
| 434 | 406 | return false; |
| 435 | 407 | } |
| 436 | 408 | } |
| 437 | 409 | |
| 438 | - function is_atom() { |
|
| 410 | + function is_atom() |
|
| 411 | + { |
|
| 439 | 412 | if ( $this->feed_type == ATOM ) { |
| 440 | 413 | return $this->feed_version; |
| 441 | - } |
|
| 442 | - else { |
|
| 414 | + } else { |
|
| 443 | 415 | return false; |
| 444 | 416 | } |
| 445 | 417 | } |
@@ -448,11 +420,11 @@ discard block |
||
| 448 | 420 | * return XML parser, and possibly re-encoded source |
| 449 | 421 | * |
| 450 | 422 | */ |
| 451 | - function create_parser($source, $out_enc, $in_enc, $detect) { |
|
| 423 | + function create_parser($source, $out_enc, $in_enc, $detect) |
|
| 424 | + { |
|
| 452 | 425 | if ( substr(phpversion(),0,1) == 5) { |
| 453 | 426 | $parser = $this->php5_create_parser($in_enc, $detect); |
| 454 | - } |
|
| 455 | - else { |
|
| 427 | + } else { |
|
| 456 | 428 | list($parser, $source) = $this->php4_create_parser($source, $in_enc, $detect); |
| 457 | 429 | } |
| 458 | 430 | if ($out_enc) { |
@@ -472,12 +444,12 @@ discard block |
||
| 472 | 444 | * All hail libxml2! |
| 473 | 445 | * |
| 474 | 446 | */ |
| 475 | - function php5_create_parser($in_enc, $detect) { |
|
| 447 | + function php5_create_parser($in_enc, $detect) |
|
| 448 | + { |
|
| 476 | 449 | // by default php5 does a fine job of detecting input encodings |
| 477 | 450 | if(!$detect && $in_enc) { |
| 478 | 451 | return xml_parser_create($in_enc); |
| 479 | - } |
|
| 480 | - else { |
|
| 452 | + } else { |
|
| 481 | 453 | return xml_parser_create(''); |
| 482 | 454 | } |
| 483 | 455 | } |
@@ -497,7 +469,8 @@ discard block |
||
| 497 | 469 | * @see http://minutillo.com/steve/weblog/2004/6/17/php-xml-and-character-encodings-a-tale-of-sadness-rage-and-data-loss |
| 498 | 470 | * |
| 499 | 471 | */ |
| 500 | - function php4_create_parser($source, $in_enc, $detect) { |
|
| 472 | + function php4_create_parser($source, $in_enc, $detect) |
|
| 473 | + { |
|
| 501 | 474 | if ( !$detect ) { |
| 502 | 475 | return array(xml_parser_create($in_enc), $source); |
| 503 | 476 | } |
@@ -506,8 +479,7 @@ discard block |
||
| 506 | 479 | if (preg_match('/<?xml.*encoding=[\'"](.*?)[\'"].*?>/m', $source, $m)) { |
| 507 | 480 | $in_enc = strtoupper($m[1]); |
| 508 | 481 | $this->source_encoding = $in_enc; |
| 509 | - } |
|
| 510 | - else { |
|
| 482 | + } else { |
|
| 511 | 483 | $in_enc = 'UTF-8'; |
| 512 | 484 | } |
| 513 | 485 | } |
@@ -522,7 +494,7 @@ discard block |
||
| 522 | 494 | // cast the XML to a known encoding |
| 523 | 495 | // @see http://php.net/iconv |
| 524 | 496 | |
| 525 | - if (function_exists('iconv')) { |
|
| 497 | + if (function_exists('iconv')) { |
|
| 526 | 498 | $encoded_source = iconv($in_enc,'UTF-8', $source); |
| 527 | 499 | if ($encoded_source) { |
| 528 | 500 | return array(xml_parser_create('UTF-8'), $encoded_source); |
@@ -546,25 +518,25 @@ discard block |
||
| 546 | 518 | return array(xml_parser_create(), $source); |
| 547 | 519 | } |
| 548 | 520 | |
| 549 | - function known_encoding($enc) { |
|
| 521 | + function known_encoding($enc) |
|
| 522 | + { |
|
| 550 | 523 | $enc = strtoupper($enc); |
| 551 | 524 | if ( in_array($enc, $this->_KNOWN_ENCODINGS) ) { |
| 552 | 525 | return $enc; |
| 553 | - } |
|
| 554 | - else { |
|
| 526 | + } else { |
|
| 555 | 527 | return false; |
| 556 | 528 | } |
| 557 | 529 | } |
| 558 | 530 | |
| 559 | - function error ($errormsg, $lvl=E_USER_WARNING) { |
|
| 531 | + function error ($errormsg, $lvl=E_USER_WARNING) |
|
| 532 | + { |
|
| 560 | 533 | // append PHP's error message if track_errors enabled |
| 561 | 534 | if ( isset($php_errormsg) ) { |
| 562 | 535 | $errormsg .= " ($php_errormsg)"; |
| 563 | 536 | } |
| 564 | 537 | if ( MAGPIE_DEBUG ) { |
| 565 | 538 | trigger_error( $errormsg, $lvl); |
| 566 | - } |
|
| 567 | - else { |
|
| 539 | + } else { |
|
| 568 | 540 | error_log( $errormsg, 0); |
| 569 | 541 | } |
| 570 | 542 | |
@@ -579,7 +551,8 @@ discard block |
||
| 579 | 551 | |
| 580 | 552 | } // end class RSS |
| 581 | 553 | |
| 582 | -function map_attrs($k, $v) { |
|
| 554 | +function map_attrs($k, $v) |
|
| 555 | +{ |
|
| 583 | 556 | return "$k=\"$v\""; |
| 584 | 557 | } |
| 585 | 558 | |
@@ -591,9 +564,10 @@ discard block |
||
| 591 | 564 | define('CASE_LOWER', 0); |
| 592 | 565 | |
| 593 | 566 | |
| 594 | - function array_change_key_case($array, $case=CASE_LOWER) { |
|
| 567 | + function array_change_key_case($array, $case=CASE_LOWER) |
|
| 568 | + { |
|
| 595 | 569 | $output = array(); |
| 596 | - switch($case){ |
|
| 570 | + switch($case) { |
|
| 597 | 571 | case CASE_LOWER: |
| 598 | 572 | $cmd='strtolower'; |
| 599 | 573 | break; |
@@ -1,9 +1,9 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | if( ! defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) {
|
| 3 | - die("<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the EVO Content Manager instead of accessing this file directly.");
|
|
| 3 | + die("<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the EVO Content Manager instead of accessing this file directly.");
|
|
| 4 | 4 | } |
| 5 | 5 | if(!$modx->hasPermission('view_eventlog')) {
|
| 6 | - $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
|
| 6 | + $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
|
| 7 | 7 | } |
| 8 | 8 | ?> |
| 9 | 9 | <script type="text/javascript" src="media/script/tablesort.js"></script> |
@@ -17,14 +17,14 @@ discard block |
||
| 17 | 17 | <div class="form-group" id="lyr1"> |
| 18 | 18 | <b><?= $_lang["publish_events"] ?></b> |
| 19 | 19 | <?php |
| 20 | - $rs = $modx->db->select('id, pagetitle, pub_date', $modx->getFullTableName('site_content'), "pub_date > " . time() . "", 'pub_date ASC');
|
|
| 21 | - $limit = $modx->db->getRecordCount($rs); |
|
| 22 | - if($limit < 1) {
|
|
| 23 | - ?> |
|
| 20 | + $rs = $modx->db->select('id, pagetitle, pub_date', $modx->getFullTableName('site_content'), "pub_date > " . time() . "", 'pub_date ASC');
|
|
| 21 | + $limit = $modx->db->getRecordCount($rs); |
|
| 22 | + if($limit < 1) {
|
|
| 23 | + ?> |
|
| 24 | 24 | <p><?= $_lang["no_docs_pending_publishing"] ?></p> |
| 25 | 25 | <?php |
| 26 | - } else {
|
|
| 27 | - ?> |
|
| 26 | + } else {
|
|
| 27 | + ?> |
|
| 28 | 28 | <div class="table-responsive"> |
| 29 | 29 | <table class="grid sortabletable" id="table-1"> |
| 30 | 30 | <thead> |
@@ -36,34 +36,34 @@ discard block |
||
| 36 | 36 | </thead> |
| 37 | 37 | <tbody> |
| 38 | 38 | <?php |
| 39 | - while($row = $modx->db->getRow($rs)) {
|
|
| 40 | - ?> |
|
| 39 | + while($row = $modx->db->getRow($rs)) {
|
|
| 40 | + ?> |
|
| 41 | 41 | <tr> |
| 42 | 42 | <td class="text-right"><?= $row['id'] ?></td> |
| 43 | 43 | <td><a href="index.php?a=3&id=<?= $row['id'] ?>"><?= $row['pagetitle'] ?></a></td> |
| 44 | 44 | <td class="text-nowrap text-right"><?= $modx->toDateFormat($row['pub_date'] + $server_offset_time) ?></td> |
| 45 | 45 | </tr> |
| 46 | 46 | <?php |
| 47 | - } |
|
| 48 | - ?> |
|
| 47 | + } |
|
| 48 | + ?> |
|
| 49 | 49 | </tbody> |
| 50 | 50 | </table> |
| 51 | 51 | </div> |
| 52 | 52 | <?php |
| 53 | - } |
|
| 54 | - ?> |
|
| 53 | + } |
|
| 54 | + ?> |
|
| 55 | 55 | </div> |
| 56 | 56 | <div class="form-group" id="lyr2"> |
| 57 | 57 | <b><?= $_lang["unpublish_events"] ?></b> |
| 58 | 58 | <?php |
| 59 | - $rs = $modx->db->select('id, pagetitle, unpub_date', $modx->getFullTableName('site_content'), "unpub_date > " . time() . "", 'unpub_date ASC');
|
|
| 60 | - $limit = $modx->db->getRecordCount($rs); |
|
| 61 | - if($limit < 1) {
|
|
| 62 | - ?> |
|
| 59 | + $rs = $modx->db->select('id, pagetitle, unpub_date', $modx->getFullTableName('site_content'), "unpub_date > " . time() . "", 'unpub_date ASC');
|
|
| 60 | + $limit = $modx->db->getRecordCount($rs); |
|
| 61 | + if($limit < 1) {
|
|
| 62 | + ?> |
|
| 63 | 63 | <p><?= $_lang["no_docs_pending_unpublishing"] ?></p> |
| 64 | 64 | <?php |
| 65 | - } else {
|
|
| 66 | - ?> |
|
| 65 | + } else {
|
|
| 66 | + ?> |
|
| 67 | 67 | <div class="table-responsive"> |
| 68 | 68 | <table class="grid sortabletable" id="table-2"> |
| 69 | 69 | <thead> |
@@ -75,34 +75,34 @@ discard block |
||
| 75 | 75 | </thead> |
| 76 | 76 | <tbody> |
| 77 | 77 | <?php |
| 78 | - while($row = $modx->db->getRow($rs)) {
|
|
| 79 | - ?> |
|
| 78 | + while($row = $modx->db->getRow($rs)) {
|
|
| 79 | + ?> |
|
| 80 | 80 | <tr> |
| 81 | 81 | <td class="text-right"><?= $row['id'] ?></td> |
| 82 | 82 | <td><a href="index.php?a=3&id=<?= $row['id'] ?>"><?= $row['pagetitle'] ?></a></td> |
| 83 | 83 | <td class="text-nowrap text-right"><?= $modx->toDateFormat($row['unpub_date'] + $server_offset_time) ?></td> |
| 84 | 84 | </tr> |
| 85 | 85 | <?php |
| 86 | - } |
|
| 87 | - ?> |
|
| 86 | + } |
|
| 87 | + ?> |
|
| 88 | 88 | </tbody> |
| 89 | 89 | </table> |
| 90 | 90 | </div> |
| 91 | 91 | <?php |
| 92 | - } |
|
| 93 | - ?> |
|
| 92 | + } |
|
| 93 | + ?> |
|
| 94 | 94 | </div> |
| 95 | 95 | <div class="form-group"> |
| 96 | 96 | <b><?= $_lang["all_events"] ?></b> |
| 97 | 97 | <?php |
| 98 | - $rs = $modx->db->select('id, pagetitle, pub_date, unpub_date', $modx->getFullTableName('site_content'), "pub_date > 0 OR unpub_date > 0", "pub_date DESC");
|
|
| 99 | - $limit = $modx->db->getRecordCount($rs); |
|
| 100 | - if($limit < 1) {
|
|
| 101 | - ?> |
|
| 98 | + $rs = $modx->db->select('id, pagetitle, pub_date, unpub_date', $modx->getFullTableName('site_content'), "pub_date > 0 OR unpub_date > 0", "pub_date DESC");
|
|
| 99 | + $limit = $modx->db->getRecordCount($rs); |
|
| 100 | + if($limit < 1) {
|
|
| 101 | + ?> |
|
| 102 | 102 | <p><?= $_lang["no_docs_pending_pubunpub"] ?></p> |
| 103 | 103 | <?php |
| 104 | - } else {
|
|
| 105 | - ?> |
|
| 104 | + } else {
|
|
| 105 | + ?> |
|
| 106 | 106 | <div class="table-responsive"> |
| 107 | 107 | <table class="grid sortabletable" id="table-3"> |
| 108 | 108 | <thead> |
@@ -115,8 +115,8 @@ discard block |
||
| 115 | 115 | </thead> |
| 116 | 116 | <tbody> |
| 117 | 117 | <?php |
| 118 | - while($row = $modx->db->getRow($rs)) {
|
|
| 119 | - ?> |
|
| 118 | + while($row = $modx->db->getRow($rs)) {
|
|
| 119 | + ?> |
|
| 120 | 120 | <tr> |
| 121 | 121 | <td class="text-right"><?= $row['id'] ?></td> |
| 122 | 122 | <td><a href="index.php?a=3&id=<?= $row['id'] ?>"><?= $row['pagetitle'] ?></a></td> |
@@ -124,14 +124,14 @@ discard block |
||
| 124 | 124 | <td class="text-nowrap text-right"><?= $row['unpub_date'] == 0 ? "" : $modx->toDateFormat($row['unpub_date'] + $server_offset_time) ?></td> |
| 125 | 125 | </tr> |
| 126 | 126 | <?php |
| 127 | - } |
|
| 128 | - ?> |
|
| 127 | + } |
|
| 128 | + ?> |
|
| 129 | 129 | </tbody> |
| 130 | 130 | </table> |
| 131 | 131 | </div> |
| 132 | 132 | <?php |
| 133 | - } |
|
| 134 | - ?> |
|
| 133 | + } |
|
| 134 | + ?> |
|
| 135 | 135 | </div> |
| 136 | 136 | </div> |
| 137 | 137 | </div> |
@@ -1,8 +1,8 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -if( ! defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) {
|
|
| 2 | +if (!defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) {
|
|
| 3 | 3 | die("<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the EVO Content Manager instead of accessing this file directly.");
|
| 4 | 4 | } |
| 5 | -if(!$modx->hasPermission('view_eventlog')) {
|
|
| 5 | +if (!$modx->hasPermission('view_eventlog')) {
|
|
| 6 | 6 | $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
| 7 | 7 | } |
| 8 | 8 | ?> |
@@ -17,9 +17,9 @@ discard block |
||
| 17 | 17 | <div class="form-group" id="lyr1"> |
| 18 | 18 | <b><?= $_lang["publish_events"] ?></b> |
| 19 | 19 | <?php |
| 20 | - $rs = $modx->db->select('id, pagetitle, pub_date', $modx->getFullTableName('site_content'), "pub_date > " . time() . "", 'pub_date ASC');
|
|
| 20 | + $rs = $modx->db->select('id, pagetitle, pub_date', $modx->getFullTableName('site_content'), "pub_date > ".time()."", 'pub_date ASC');
|
|
| 21 | 21 | $limit = $modx->db->getRecordCount($rs); |
| 22 | - if($limit < 1) {
|
|
| 22 | + if ($limit < 1) {
|
|
| 23 | 23 | ?> |
| 24 | 24 | <p><?= $_lang["no_docs_pending_publishing"] ?></p> |
| 25 | 25 | <?php |
@@ -36,7 +36,7 @@ discard block |
||
| 36 | 36 | </thead> |
| 37 | 37 | <tbody> |
| 38 | 38 | <?php |
| 39 | - while($row = $modx->db->getRow($rs)) {
|
|
| 39 | + while ($row = $modx->db->getRow($rs)) {
|
|
| 40 | 40 | ?> |
| 41 | 41 | <tr> |
| 42 | 42 | <td class="text-right"><?= $row['id'] ?></td> |
@@ -56,9 +56,9 @@ discard block |
||
| 56 | 56 | <div class="form-group" id="lyr2"> |
| 57 | 57 | <b><?= $_lang["unpublish_events"] ?></b> |
| 58 | 58 | <?php |
| 59 | - $rs = $modx->db->select('id, pagetitle, unpub_date', $modx->getFullTableName('site_content'), "unpub_date > " . time() . "", 'unpub_date ASC');
|
|
| 59 | + $rs = $modx->db->select('id, pagetitle, unpub_date', $modx->getFullTableName('site_content'), "unpub_date > ".time()."", 'unpub_date ASC');
|
|
| 60 | 60 | $limit = $modx->db->getRecordCount($rs); |
| 61 | - if($limit < 1) {
|
|
| 61 | + if ($limit < 1) {
|
|
| 62 | 62 | ?> |
| 63 | 63 | <p><?= $_lang["no_docs_pending_unpublishing"] ?></p> |
| 64 | 64 | <?php |
@@ -75,7 +75,7 @@ discard block |
||
| 75 | 75 | </thead> |
| 76 | 76 | <tbody> |
| 77 | 77 | <?php |
| 78 | - while($row = $modx->db->getRow($rs)) {
|
|
| 78 | + while ($row = $modx->db->getRow($rs)) {
|
|
| 79 | 79 | ?> |
| 80 | 80 | <tr> |
| 81 | 81 | <td class="text-right"><?= $row['id'] ?></td> |
@@ -97,7 +97,7 @@ discard block |
||
| 97 | 97 | <?php |
| 98 | 98 | $rs = $modx->db->select('id, pagetitle, pub_date, unpub_date', $modx->getFullTableName('site_content'), "pub_date > 0 OR unpub_date > 0", "pub_date DESC");
|
| 99 | 99 | $limit = $modx->db->getRecordCount($rs); |
| 100 | - if($limit < 1) {
|
|
| 100 | + if ($limit < 1) {
|
|
| 101 | 101 | ?> |
| 102 | 102 | <p><?= $_lang["no_docs_pending_pubunpub"] ?></p> |
| 103 | 103 | <?php |
@@ -115,7 +115,7 @@ discard block |
||
| 115 | 115 | </thead> |
| 116 | 116 | <tbody> |
| 117 | 117 | <?php |
| 118 | - while($row = $modx->db->getRow($rs)) {
|
|
| 118 | + while ($row = $modx->db->getRow($rs)) {
|
|
| 119 | 119 | ?> |
| 120 | 120 | <tr> |
| 121 | 121 | <td class="text-right"><?= $row['id'] ?></td> |
@@ -1,8 +1,8 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -if( ! defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) {
|
|
| 2 | +if( ! defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) { |
|
| 3 | 3 | die("<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the EVO Content Manager instead of accessing this file directly.");
|
| 4 | 4 | } |
| 5 | -if(!$modx->hasPermission('view_eventlog')) {
|
|
| 5 | +if(!$modx->hasPermission('view_eventlog')) { |
|
| 6 | 6 | $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
| 7 | 7 | } |
| 8 | 8 | ?> |
@@ -19,11 +19,11 @@ discard block |
||
| 19 | 19 | <?php |
| 20 | 20 | $rs = $modx->db->select('id, pagetitle, pub_date', $modx->getFullTableName('site_content'), "pub_date > " . time() . "", 'pub_date ASC');
|
| 21 | 21 | $limit = $modx->db->getRecordCount($rs); |
| 22 | - if($limit < 1) {
|
|
| 22 | + if($limit < 1) { |
|
| 23 | 23 | ?> |
| 24 | 24 | <p><?= $_lang["no_docs_pending_publishing"] ?></p> |
| 25 | 25 | <?php |
| 26 | - } else {
|
|
| 26 | + } else { |
|
| 27 | 27 | ?> |
| 28 | 28 | <div class="table-responsive"> |
| 29 | 29 | <table class="grid sortabletable" id="table-1"> |
@@ -36,7 +36,7 @@ discard block |
||
| 36 | 36 | </thead> |
| 37 | 37 | <tbody> |
| 38 | 38 | <?php |
| 39 | - while($row = $modx->db->getRow($rs)) {
|
|
| 39 | + while($row = $modx->db->getRow($rs)) { |
|
| 40 | 40 | ?> |
| 41 | 41 | <tr> |
| 42 | 42 | <td class="text-right"><?= $row['id'] ?></td> |
@@ -58,11 +58,11 @@ discard block |
||
| 58 | 58 | <?php |
| 59 | 59 | $rs = $modx->db->select('id, pagetitle, unpub_date', $modx->getFullTableName('site_content'), "unpub_date > " . time() . "", 'unpub_date ASC');
|
| 60 | 60 | $limit = $modx->db->getRecordCount($rs); |
| 61 | - if($limit < 1) {
|
|
| 61 | + if($limit < 1) { |
|
| 62 | 62 | ?> |
| 63 | 63 | <p><?= $_lang["no_docs_pending_unpublishing"] ?></p> |
| 64 | 64 | <?php |
| 65 | - } else {
|
|
| 65 | + } else { |
|
| 66 | 66 | ?> |
| 67 | 67 | <div class="table-responsive"> |
| 68 | 68 | <table class="grid sortabletable" id="table-2"> |
@@ -75,7 +75,7 @@ discard block |
||
| 75 | 75 | </thead> |
| 76 | 76 | <tbody> |
| 77 | 77 | <?php |
| 78 | - while($row = $modx->db->getRow($rs)) {
|
|
| 78 | + while($row = $modx->db->getRow($rs)) { |
|
| 79 | 79 | ?> |
| 80 | 80 | <tr> |
| 81 | 81 | <td class="text-right"><?= $row['id'] ?></td> |
@@ -97,11 +97,11 @@ discard block |
||
| 97 | 97 | <?php |
| 98 | 98 | $rs = $modx->db->select('id, pagetitle, pub_date, unpub_date', $modx->getFullTableName('site_content'), "pub_date > 0 OR unpub_date > 0", "pub_date DESC");
|
| 99 | 99 | $limit = $modx->db->getRecordCount($rs); |
| 100 | - if($limit < 1) {
|
|
| 100 | + if($limit < 1) { |
|
| 101 | 101 | ?> |
| 102 | 102 | <p><?= $_lang["no_docs_pending_pubunpub"] ?></p> |
| 103 | 103 | <?php |
| 104 | - } else {
|
|
| 104 | + } else { |
|
| 105 | 105 | ?> |
| 106 | 106 | <div class="table-responsive"> |
| 107 | 107 | <table class="grid sortabletable" id="table-3"> |
@@ -115,7 +115,7 @@ discard block |
||
| 115 | 115 | </thead> |
| 116 | 116 | <tbody> |
| 117 | 117 | <?php |
| 118 | - while($row = $modx->db->getRow($rs)) {
|
|
| 118 | + while($row = $modx->db->getRow($rs)) { |
|
| 119 | 119 | ?> |
| 120 | 120 | <tr> |
| 121 | 121 | <td class="text-right"><?= $row['id'] ?></td> |
@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -if( ! defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) { |
|
| 2 | +if (!defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) { |
|
| 3 | 3 | die("<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the EVO Content Manager instead of accessing this file directly."); |
| 4 | 4 | } |
| 5 | 5 | if (!$modx->hasPermission('save_plugin')) { |
@@ -11,7 +11,7 @@ discard block |
||
| 11 | 11 | $updateMsg = ''; |
| 12 | 12 | |
| 13 | 13 | if (isset($_POST['listSubmitted'])) { |
| 14 | - $updateMsg .= '<span class="text-success" id="updated">' . $_lang['sort_updated'] . '</span>'; |
|
| 14 | + $updateMsg .= '<span class="text-success" id="updated">'.$_lang['sort_updated'].'</span>'; |
|
| 15 | 15 | $tbl = $modx->getFullTableName('site_plugin_events'); |
| 16 | 16 | |
| 17 | 17 | foreach ($_POST as $listName => $listValue) { |
@@ -34,9 +34,9 @@ discard block |
||
| 34 | 34 | $modx->clearCache('full'); |
| 35 | 35 | } |
| 36 | 36 | |
| 37 | -$rs = $modx->db->select("sysevt.name as evtname, sysevt.id as evtid, pe.pluginid, plugs.name, pe.priority, plugs.disabled", $modx->getFullTableName('system_eventnames') . " sysevt |
|
| 38 | - INNER JOIN " . $modx->getFullTableName('site_plugin_events') . " pe ON pe.evtid = sysevt.id |
|
| 39 | - INNER JOIN " . $modx->getFullTableName('site_plugins') . " plugs ON plugs.id = pe.pluginid", '', 'sysevt.name,pe.priority'); |
|
| 37 | +$rs = $modx->db->select("sysevt.name as evtname, sysevt.id as evtid, pe.pluginid, plugs.name, pe.priority, plugs.disabled", $modx->getFullTableName('system_eventnames')." sysevt |
|
| 38 | + INNER JOIN " . $modx->getFullTableName('site_plugin_events')." pe ON pe.evtid = sysevt.id |
|
| 39 | + INNER JOIN " . $modx->getFullTableName('site_plugins')." plugs ON plugs.id = pe.pluginid", '', 'sysevt.name,pe.priority'); |
|
| 40 | 40 | |
| 41 | 41 | $insideUl = 0; |
| 42 | 42 | $preEvt = ''; |
@@ -47,17 +47,17 @@ discard block |
||
| 47 | 47 | if ($preEvt !== $plugins['evtid']) { |
| 48 | 48 | $sortables[] = $plugins['evtid']; |
| 49 | 49 | $sortableList .= $insideUl ? '</ul></div>' : ''; |
| 50 | - $sortableList .= '<div class="form-group clearfix"><strong>' . $plugins['evtname'] . '</strong><ul id="' . $plugins['evtid'] . '" class="sortableList">'; |
|
| 50 | + $sortableList .= '<div class="form-group clearfix"><strong>'.$plugins['evtname'].'</strong><ul id="'.$plugins['evtid'].'" class="sortableList">'; |
|
| 51 | 51 | $insideUl = 1; |
| 52 | 52 | } |
| 53 | - $sortableList .= '<li id="item_' . $plugins['pluginid'] . '"' . ($plugins['disabled'] ? ' class="disabledPlugin"' : '') . '><i class="fa fa-plug"></i> ' . $plugins['name'] . ($plugins['disabled'] ? ' (hide)' : '') . '</li>'; |
|
| 53 | + $sortableList .= '<li id="item_'.$plugins['pluginid'].'"'.($plugins['disabled'] ? ' class="disabledPlugin"' : '').'><i class="fa fa-plug"></i> '.$plugins['name'].($plugins['disabled'] ? ' (hide)' : '').'</li>'; |
|
| 54 | 54 | $preEvt = $plugins['evtid']; |
| 55 | 55 | } |
| 56 | 56 | if ($insideUl) { |
| 57 | 57 | $sortableList .= '</ul></div>'; |
| 58 | 58 | } |
| 59 | 59 | |
| 60 | -require_once(MODX_MANAGER_PATH . 'includes/header.inc.php'); |
|
| 60 | +require_once(MODX_MANAGER_PATH.'includes/header.inc.php'); |
|
| 61 | 61 | ?> |
| 62 | 62 | |
| 63 | 63 | <script type="text/javascript"> |
@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -if( ! defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) {
|
|
| 2 | +if (!defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) {
|
|
| 3 | 3 | die("<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the EVO Content Manager instead of accessing this file directly.");
|
| 4 | 4 | } |
| 5 | 5 | if (!($modx->hasPermission('new_module') || $modx->hasPermission('edit_module') || $modx->hasPermission('exec_module'))) {
|
@@ -25,7 +25,7 @@ discard block |
||
| 25 | 25 | |
| 26 | 26 | |
| 27 | 27 | // context menu |
| 28 | -include_once MODX_MANAGER_PATH . "includes/controls/contextmenu.php"; |
|
| 28 | +include_once MODX_MANAGER_PATH."includes/controls/contextmenu.php"; |
|
| 29 | 29 | $cm = new ContextMenu("cntxm", 150);
|
| 30 | 30 | $cm->addItem($_lang["run_module"], "js:menuAction(1)", $_style['actions_run'], (!$modx->hasPermission('exec_module') ? 1 : 0));
|
| 31 | 31 | if ($modx->hasPermission('edit_module') || $modx->hasPermission('new_module') || $modx->hasPermission('delete_module')) {
|
@@ -108,24 +108,24 @@ discard block |
||
| 108 | 108 | <div class="table-responsive"> |
| 109 | 109 | <?php |
| 110 | 110 | if ($_SESSION['mgrRole'] != 1 && !empty($modx->config['use_udperms'])) {
|
| 111 | - $rs = $modx->db->query('SELECT DISTINCT sm.id, sm.name, sm.description, mg.member, IF(disabled,"' . $_lang['yes'] . '","-") as disabled, IF(sm.icon<>"",sm.icon,"' . $_style['icons_modules'] . '") as icon
|
|
| 112 | - FROM ' . $modx->getFullTableName('site_modules') . ' AS sm
|
|
| 113 | - LEFT JOIN ' . $modx->getFullTableName('site_module_access') . ' AS sma ON sma.module = sm.id
|
|
| 114 | - LEFT JOIN ' . $modx->getFullTableName('member_groups') . ' AS mg ON sma.usergroup = mg.user_group
|
|
| 115 | - WHERE (mg.member IS NULL OR mg.member = ' . $modx->getLoginUserID() . ') AND sm.disabled != 1 AND sm.locked != 1 |
|
| 111 | + $rs = $modx->db->query('SELECT DISTINCT sm.id, sm.name, sm.description, mg.member, IF(disabled,"'.$_lang['yes'].'","-") as disabled, IF(sm.icon<>"",sm.icon,"'.$_style['icons_modules'].'") as icon
|
|
| 112 | + FROM ' . $modx->getFullTableName('site_modules').' AS sm
|
|
| 113 | + LEFT JOIN ' . $modx->getFullTableName('site_module_access').' AS sma ON sma.module = sm.id
|
|
| 114 | + LEFT JOIN ' . $modx->getFullTableName('member_groups').' AS mg ON sma.usergroup = mg.user_group
|
|
| 115 | + WHERE (mg.member IS NULL OR mg.member = ' . $modx->getLoginUserID().') AND sm.disabled != 1 AND sm.locked != 1 |
|
| 116 | 116 | ORDER BY sm.name'); |
| 117 | 117 | if ($modx->hasPermission('edit_module')) {
|
| 118 | - $title = "<a href='index.php?a=108&id=[+id+]' title='" . $_lang["module_edit_click_title"] . "'>[+value+]</a>"; |
|
| 118 | + $title = "<a href='index.php?a=108&id=[+id+]' title='".$_lang["module_edit_click_title"]."'>[+value+]</a>"; |
|
| 119 | 119 | } else if ($modx->hasPermission('exec_module')) {
|
| 120 | - $title = "<a href='index.php?a=112&id=[+id+]' title='" . $_lang["module_edit_click_title"] . "'>[+value+]</a>"; |
|
| 120 | + $title = "<a href='index.php?a=112&id=[+id+]' title='".$_lang["module_edit_click_title"]."'>[+value+]</a>"; |
|
| 121 | 121 | } else {
|
| 122 | 122 | $title = '[+value+]'; |
| 123 | 123 | } |
| 124 | 124 | } else {
|
| 125 | 125 | $rs = $modx->db->select("id, name, description, IF(locked,'{$_lang['yes']}','-') as locked, IF(disabled,'{$_lang['yes']}','-') as disabled, IF(icon<>'',icon,'{$_style['icons_module']}') as icon", $modx->getFullTableName("site_modules"), (!empty($sqlQuery) ? "(name LIKE '%{$sqlQuery}%') OR (description LIKE '%{$sqlQuery}%')" : ""), "name");
|
| 126 | - $title = "<a href='index.php?a=108&id=[+id+]' title='" . $_lang["module_edit_click_title"] . "'>[+value+]</a>"; |
|
| 126 | + $title = "<a href='index.php?a=108&id=[+id+]' title='".$_lang["module_edit_click_title"]."'>[+value+]</a>"; |
|
| 127 | 127 | } |
| 128 | - include_once MODX_MANAGER_PATH . "includes/controls/datagrid.class.php"; |
|
| 128 | + include_once MODX_MANAGER_PATH."includes/controls/datagrid.class.php"; |
|
| 129 | 129 | $grd = new DataGrid('', $rs, $number_of_results); // set page size to 0 t show all items
|
| 130 | 130 | $grd->noRecordMsg = $_lang["no_records_found"]; |
| 131 | 131 | $grd->cssClass = "table data"; |
@@ -133,10 +133,10 @@ discard block |
||
| 133 | 133 | $grd->itemClass = "tableItem"; |
| 134 | 134 | $grd->altItemClass = "tableAltItem"; |
| 135 | 135 | $grd->fields = "icon,name,description,locked,disabled"; |
| 136 | - $grd->columns = $_lang["icon"] . " ," . $_lang["name"] . " ," . $_lang["description"] . " ," . $_lang["locked"] . " ," . $_lang["disabled"]; |
|
| 136 | + $grd->columns = $_lang["icon"]." ,".$_lang["name"]." ,".$_lang["description"]." ,".$_lang["locked"]." ,".$_lang["disabled"]; |
|
| 137 | 137 | $grd->colWidths = "34,,,60,60"; |
| 138 | 138 | $grd->colAligns = "center,,,center,center"; |
| 139 | - $grd->colTypes = "template:<a class='tableRowIcon' href='javascript:;' onclick='return showContentMenu([+id+],event);' title='" . $_lang["click_to_context"] . "'><i class='[+value+]'></i></a>||template:" . $title; |
|
| 139 | + $grd->colTypes = "template:<a class='tableRowIcon' href='javascript:;' onclick='return showContentMenu([+id+],event);' title='".$_lang["click_to_context"]."'><i class='[+value+]'></i></a>||template:".$title; |
|
| 140 | 140 | if ($listmode == '1') {
|
| 141 | 141 | $grd->pageSize = 0; |
| 142 | 142 | } |
@@ -1,8 +1,8 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -if( ! defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) {
|
|
| 2 | +if( ! defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) { |
|
| 3 | 3 | die("<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the EVO Content Manager instead of accessing this file directly.");
|
| 4 | 4 | } |
| 5 | -if (!($modx->hasPermission('new_module') || $modx->hasPermission('edit_module') || $modx->hasPermission('exec_module'))) {
|
|
| 5 | +if (!($modx->hasPermission('new_module') || $modx->hasPermission('edit_module') || $modx->hasPermission('exec_module'))) { |
|
| 6 | 6 | $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
| 7 | 7 | } |
| 8 | 8 | |
@@ -10,10 +10,10 @@ discard block |
||
| 10 | 10 | $modx->manager->initPageViewState(); |
| 11 | 11 | |
| 12 | 12 | // get and save search string |
| 13 | -if ($_REQUEST['op'] == 'reset') {
|
|
| 13 | +if ($_REQUEST['op'] == 'reset') { |
|
| 14 | 14 | $query = ''; |
| 15 | 15 | $_PAGE['vs']['search'] = ''; |
| 16 | -} else {
|
|
| 16 | +} else { |
|
| 17 | 17 | $query = isset($_REQUEST['search']) ? $_REQUEST['search'] : $_PAGE['vs']['search']; |
| 18 | 18 | $sqlQuery = $modx->db->escape($query); |
| 19 | 19 | $_PAGE['vs']['search'] = $query; |
@@ -28,7 +28,7 @@ discard block |
||
| 28 | 28 | include_once MODX_MANAGER_PATH . "includes/controls/contextmenu.php"; |
| 29 | 29 | $cm = new ContextMenu("cntxm", 150);
|
| 30 | 30 | $cm->addItem($_lang["run_module"], "js:menuAction(1)", $_style['actions_run'], (!$modx->hasPermission('exec_module') ? 1 : 0));
|
| 31 | -if ($modx->hasPermission('edit_module') || $modx->hasPermission('new_module') || $modx->hasPermission('delete_module')) {
|
|
| 31 | +if ($modx->hasPermission('edit_module') || $modx->hasPermission('new_module') || $modx->hasPermission('delete_module')) { |
|
| 32 | 32 | $cm->addSeparator(); |
| 33 | 33 | } |
| 34 | 34 | $cm->addItem($_lang["edit"], "js:menuAction(2)", $_style['actions_edit'], (!$modx->hasPermission('edit_module') ? 1 : 0));
|
@@ -107,21 +107,21 @@ discard block |
||
| 107 | 107 | <div class="tab-page"> |
| 108 | 108 | <div class="table-responsive"> |
| 109 | 109 | <?php |
| 110 | - if ($_SESSION['mgrRole'] != 1 && !empty($modx->config['use_udperms'])) {
|
|
| 110 | + if ($_SESSION['mgrRole'] != 1 && !empty($modx->config['use_udperms'])) { |
|
| 111 | 111 | $rs = $modx->db->query('SELECT DISTINCT sm.id, sm.name, sm.description, mg.member, IF(disabled,"' . $_lang['yes'] . '","-") as disabled, IF(sm.icon<>"",sm.icon,"' . $_style['icons_modules'] . '") as icon
|
| 112 | 112 | FROM ' . $modx->getFullTableName('site_modules') . ' AS sm
|
| 113 | 113 | LEFT JOIN ' . $modx->getFullTableName('site_module_access') . ' AS sma ON sma.module = sm.id
|
| 114 | 114 | LEFT JOIN ' . $modx->getFullTableName('member_groups') . ' AS mg ON sma.usergroup = mg.user_group
|
| 115 | 115 | WHERE (mg.member IS NULL OR mg.member = ' . $modx->getLoginUserID() . ') AND sm.disabled != 1 AND sm.locked != 1 |
| 116 | 116 | ORDER BY sm.name'); |
| 117 | - if ($modx->hasPermission('edit_module')) {
|
|
| 117 | + if ($modx->hasPermission('edit_module')) { |
|
| 118 | 118 | $title = "<a href='index.php?a=108&id=[+id+]' title='" . $_lang["module_edit_click_title"] . "'>[+value+]</a>"; |
| 119 | - } else if ($modx->hasPermission('exec_module')) {
|
|
| 119 | + } else if ($modx->hasPermission('exec_module')) { |
|
| 120 | 120 | $title = "<a href='index.php?a=112&id=[+id+]' title='" . $_lang["module_edit_click_title"] . "'>[+value+]</a>"; |
| 121 | - } else {
|
|
| 121 | + } else { |
|
| 122 | 122 | $title = '[+value+]'; |
| 123 | 123 | } |
| 124 | - } else {
|
|
| 124 | + } else { |
|
| 125 | 125 | $rs = $modx->db->select("id, name, description, IF(locked,'{$_lang['yes']}','-') as locked, IF(disabled,'{$_lang['yes']}','-') as disabled, IF(icon<>'',icon,'{$_style['icons_module']}') as icon", $modx->getFullTableName("site_modules"), (!empty($sqlQuery) ? "(name LIKE '%{$sqlQuery}%') OR (description LIKE '%{$sqlQuery}%')" : ""), "name");
|
| 126 | 126 | $title = "<a href='index.php?a=108&id=[+id+]' title='" . $_lang["module_edit_click_title"] . "'>[+value+]</a>"; |
| 127 | 127 | } |
@@ -137,10 +137,10 @@ discard block |
||
| 137 | 137 | $grd->colWidths = "34,,,60,60"; |
| 138 | 138 | $grd->colAligns = "center,,,center,center"; |
| 139 | 139 | $grd->colTypes = "template:<a class='tableRowIcon' href='javascript:;' onclick='return showContentMenu([+id+],event);' title='" . $_lang["click_to_context"] . "'><i class='[+value+]'></i></a>||template:" . $title; |
| 140 | - if ($listmode == '1') {
|
|
| 140 | + if ($listmode == '1') { |
|
| 141 | 141 | $grd->pageSize = 0; |
| 142 | 142 | } |
| 143 | - if ($_REQUEST['op'] == 'reset') {
|
|
| 143 | + if ($_REQUEST['op'] == 'reset') { |
|
| 144 | 144 | $grd->pageNumber = 1; |
| 145 | 145 | } |
| 146 | 146 | // render grid |
@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -if( ! defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) {
|
|
| 2 | +if (!defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) {
|
|
| 3 | 3 | die("<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the EVO Content Manager instead of accessing this file directly.");
|
| 4 | 4 | } |
| 5 | 5 | if (!$modx->hasPermission('logs')) {
|
@@ -12,14 +12,14 @@ discard block |
||
| 12 | 12 | $collation = $modx->db->getRow($res, 'num'); |
| 13 | 13 | |
| 14 | 14 | $serverArr = array( |
| 15 | - $_lang['modx_version'] => $modx->getVersionData('version') . ' ' . $newversiontext,
|
|
| 15 | + $_lang['modx_version'] => $modx->getVersionData('version').' '.$newversiontext,
|
|
| 16 | 16 | $_lang['release_date'] => $modx->getVersionData('release_date'),
|
| 17 | 17 | 'PHP Version' => phpversion(), |
| 18 | - 'phpInfo()' => '<a class="text-underline" href="javascript:;" onclick="viewPHPInfo();return false;">' . $_lang['view'] . '</a>', |
|
| 18 | + 'phpInfo()' => '<a class="text-underline" href="javascript:;" onclick="viewPHPInfo();return false;">'.$_lang['view'].'</a>', |
|
| 19 | 19 | $_lang['access_permissions'] => ($use_udperms == 1 ? $_lang['enabled'] : $_lang['disabled']), |
| 20 | 20 | $_lang['servertime'] => strftime('%H:%M:%S', time()),
|
| 21 | 21 | $_lang['localtime'] => strftime('%H:%M:%S', time() + $server_offset_time),
|
| 22 | - $_lang['serveroffset'] => $server_offset_time / (60 * 60) . ' h', |
|
| 22 | + $_lang['serveroffset'] => $server_offset_time / (60 * 60).' h', |
|
| 23 | 23 | $_lang['database_name'] => trim($dbase, '`'), |
| 24 | 24 | $_lang['database_server'] => $database_server, |
| 25 | 25 | $_lang['database_version'] => $modx->db->getVersion(), |
@@ -95,33 +95,33 @@ discard block |
||
| 95 | 95 | </thead> |
| 96 | 96 | <tbody> |
| 97 | 97 | <?php |
| 98 | - $sql = "SHOW TABLE STATUS FROM $dbase LIKE '" . $modx->db->escape($modx->db->config['table_prefix']) . "%';"; |
|
| 98 | + $sql = "SHOW TABLE STATUS FROM $dbase LIKE '".$modx->db->escape($modx->db->config['table_prefix'])."%';"; |
|
| 99 | 99 | $rs = $modx->db->query($sql); |
| 100 | 100 | $i = 0; |
| 101 | 101 | while ($log_status = $modx->db->getRow($rs)) {
|
| 102 | 102 | ?> |
| 103 | 103 | <tr> |
| 104 | 104 | <td class="text-primary"><b><?= $log_status['Name'] ?></b></td> |
| 105 | - <td class="text-xs-center"><?= (!empty($log_status['Comment']) ? '<i class="' . $_style['actions_help'] . '" data-tooltip="' . $log_status['Comment'] . '"></i>' : '') ?></td> |
|
| 105 | + <td class="text-xs-center"><?= (!empty($log_status['Comment']) ? '<i class="'.$_style['actions_help'].'" data-tooltip="'.$log_status['Comment'].'"></i>' : '') ?></td> |
|
| 106 | 106 | <td class="text-xs-right"><?= $log_status['Rows'] ?></td> |
| 107 | 107 | |
| 108 | 108 | <?php |
| 109 | 109 | $truncateable = array( |
| 110 | - $modx->db->config['table_prefix'] . 'event_log', |
|
| 111 | - $modx->db->config['table_prefix'] . 'manager_log', |
|
| 110 | + $modx->db->config['table_prefix'].'event_log', |
|
| 111 | + $modx->db->config['table_prefix'].'manager_log', |
|
| 112 | 112 | ); |
| 113 | 113 | if ($modx->hasPermission('settings') && in_array($log_status['Name'], $truncateable)) {
|
| 114 | 114 | echo "<td class=\"text-xs-right\">"; |
| 115 | - echo "<a class=\"text-danger\" href='index.php?a=54&mode=$action&u=" . $log_status['Name'] . "' title='" . $_lang['truncate_table'] . "'>" . $modx->nicesize($log_status['Data_length'] + $log_status['Data_free']) . "</a>"; |
|
| 115 | + echo "<a class=\"text-danger\" href='index.php?a=54&mode=$action&u=".$log_status['Name']."' title='".$_lang['truncate_table']."'>".$modx->nicesize($log_status['Data_length'] + $log_status['Data_free'])."</a>"; |
|
| 116 | 116 | echo "</td>"; |
| 117 | 117 | } else {
|
| 118 | - echo "<td class=\"text-xs-right\">" . $modx->nicesize($log_status['Data_length'] + $log_status['Data_free']) . "</td>"; |
|
| 118 | + echo "<td class=\"text-xs-right\">".$modx->nicesize($log_status['Data_length'] + $log_status['Data_free'])."</td>"; |
|
| 119 | 119 | } |
| 120 | 120 | |
| 121 | 121 | if ($modx->hasPermission('settings')) {
|
| 122 | - echo "<td class=\"text-xs-right\">" . ($log_status['Data_free'] > 0 ? "<a class=\"text-danger\" href='index.php?a=54&mode=$action&t=" . $log_status['Name'] . "' title='" . $_lang['optimize_table'] . "' ><span>" . $modx->nicesize($log_status['Data_free']) . "</span></a>" : "-") . "</td>"; |
|
| 122 | + echo "<td class=\"text-xs-right\">".($log_status['Data_free'] > 0 ? "<a class=\"text-danger\" href='index.php?a=54&mode=$action&t=".$log_status['Name']."' title='".$_lang['optimize_table']."' ><span>".$modx->nicesize($log_status['Data_free'])."</span></a>" : "-")."</td>"; |
|
| 123 | 123 | } else {
|
| 124 | - echo "<td class=\"text-xs-right\">" . ($log_status['Data_free'] > 0 ? $modx->nicesize($log_status['Data_free']) : "-") . "</td>"; |
|
| 124 | + echo "<td class=\"text-xs-right\">".($log_status['Data_free'] > 0 ? $modx->nicesize($log_status['Data_free']) : "-")."</td>"; |
|
| 125 | 125 | } |
| 126 | 126 | ?> |
| 127 | 127 | <td class="text-xs-right"><?= $modx->nicesize($log_status['Data_length'] - $log_status['Data_free']) ?></td> |
@@ -136,9 +136,9 @@ discard block |
||
| 136 | 136 | <tr class="unstyled"> |
| 137 | 137 | <td class="text-xs-right"><?= $_lang['database_table_totals'] ?></td> |
| 138 | 138 | <td colspan="3"> </td> |
| 139 | - <td class="text-xs-right"><?= $totaloverhead > 0 ? "<b class=\"text-danger\">" . $modx->nicesize($totaloverhead) . "</b><br />(" . number_format($totaloverhead) . " B)" : "-" ?></td>
|
|
| 139 | + <td class="text-xs-right"><?= $totaloverhead > 0 ? "<b class=\"text-danger\">".$modx->nicesize($totaloverhead)."</b><br />(".number_format($totaloverhead)." B)" : "-" ?></td>
|
|
| 140 | 140 | <td colspan="2"> </td> |
| 141 | - <td class="text-xs-right"><?= "<b>" . $modx->nicesize($total) . "</b><br />(" . number_format($total) . " B)" ?></td>
|
|
| 141 | + <td class="text-xs-right"><?= "<b>".$modx->nicesize($total)."</b><br />(".number_format($total)." B)" ?></td>
|
|
| 142 | 142 | </tr> |
| 143 | 143 | </tbody> |
| 144 | 144 | </table> |
@@ -1,8 +1,8 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -if( ! defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) {
|
|
| 2 | +if( ! defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) { |
|
| 3 | 3 | die("<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the EVO Content Manager instead of accessing this file directly.");
|
| 4 | 4 | } |
| 5 | -if (!$modx->hasPermission('logs')) {
|
|
| 5 | +if (!$modx->hasPermission('logs')) { |
|
| 6 | 6 | $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
| 7 | 7 | } |
| 8 | 8 | |
@@ -55,7 +55,7 @@ discard block |
||
| 55 | 55 | <table class="table data table-sm nowrap"> |
| 56 | 56 | <tbody> |
| 57 | 57 | <?php |
| 58 | - foreach ($serverArr as $key => $value) {
|
|
| 58 | + foreach ($serverArr as $key => $value) { |
|
| 59 | 59 | ?> |
| 60 | 60 | <tr> |
| 61 | 61 | <td width="1%"><?= $key ?></td> |
@@ -98,7 +98,7 @@ discard block |
||
| 98 | 98 | $sql = "SHOW TABLE STATUS FROM $dbase LIKE '" . $modx->db->escape($modx->db->config['table_prefix']) . "%';"; |
| 99 | 99 | $rs = $modx->db->query($sql); |
| 100 | 100 | $i = 0; |
| 101 | - while ($log_status = $modx->db->getRow($rs)) {
|
|
| 101 | + while ($log_status = $modx->db->getRow($rs)) { |
|
| 102 | 102 | ?> |
| 103 | 103 | <tr> |
| 104 | 104 | <td class="text-primary"><b><?= $log_status['Name'] ?></b></td> |
@@ -110,17 +110,17 @@ discard block |
||
| 110 | 110 | $modx->db->config['table_prefix'] . 'event_log', |
| 111 | 111 | $modx->db->config['table_prefix'] . 'manager_log', |
| 112 | 112 | ); |
| 113 | - if ($modx->hasPermission('settings') && in_array($log_status['Name'], $truncateable)) {
|
|
| 113 | + if ($modx->hasPermission('settings') && in_array($log_status['Name'], $truncateable)) { |
|
| 114 | 114 | echo "<td class=\"text-xs-right\">"; |
| 115 | 115 | echo "<a class=\"text-danger\" href='index.php?a=54&mode=$action&u=" . $log_status['Name'] . "' title='" . $_lang['truncate_table'] . "'>" . $modx->nicesize($log_status['Data_length'] + $log_status['Data_free']) . "</a>"; |
| 116 | 116 | echo "</td>"; |
| 117 | - } else {
|
|
| 117 | + } else { |
|
| 118 | 118 | echo "<td class=\"text-xs-right\">" . $modx->nicesize($log_status['Data_length'] + $log_status['Data_free']) . "</td>"; |
| 119 | 119 | } |
| 120 | 120 | |
| 121 | - if ($modx->hasPermission('settings')) {
|
|
| 121 | + if ($modx->hasPermission('settings')) { |
|
| 122 | 122 | echo "<td class=\"text-xs-right\">" . ($log_status['Data_free'] > 0 ? "<a class=\"text-danger\" href='index.php?a=54&mode=$action&t=" . $log_status['Name'] . "' title='" . $_lang['optimize_table'] . "' ><span>" . $modx->nicesize($log_status['Data_free']) . "</span></a>" : "-") . "</td>"; |
| 123 | - } else {
|
|
| 123 | + } else { |
|
| 124 | 124 | echo "<td class=\"text-xs-right\">" . ($log_status['Data_free'] > 0 ? $modx->nicesize($log_status['Data_free']) : "-") . "</td>"; |
| 125 | 125 | } |
| 126 | 126 | ?> |
@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | if( ! defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) {
|
| 3 | - die("<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the EVO Content Manager instead of accessing this file directly.");
|
|
| 3 | + die("<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the EVO Content Manager instead of accessing this file directly.");
|
|
| 4 | 4 | } |
| 5 | 5 | $helpBasePath = "actions/help/"; |
| 6 | 6 | ?> |
@@ -16,36 +16,36 @@ discard block |
||
| 16 | 16 | </script> |
| 17 | 17 | |
| 18 | 18 | <?php |
| 19 | - if($handle = opendir('actions/help')) {
|
|
| 20 | - while(false !== ($file = readdir($handle))) {
|
|
| 21 | - if($file != "." && $file != ".." && $file != ".svn" && $file != 'index.html' && !is_dir($helpBasePath . $file)) {
|
|
| 22 | - $help[] = $file; |
|
| 23 | - } |
|
| 24 | - } |
|
| 25 | - closedir($handle); |
|
| 26 | - } |
|
| 27 | - |
|
| 28 | - natcasesort($help); |
|
| 29 | - |
|
| 30 | - foreach($help as $k => $v) {
|
|
| 31 | - |
|
| 32 | - $helpname = substr($v, 0, strrpos($v, '.')); |
|
| 33 | - |
|
| 34 | - $prefix = substr($helpname, 0, 2); |
|
| 35 | - if(is_numeric($prefix)) {
|
|
| 36 | - $helpname = substr($helpname, 2, strlen($helpname) - 1); |
|
| 37 | - } |
|
| 38 | - |
|
| 39 | - $hnLower = strtolower($helpname); |
|
| 40 | - $helpname = isset($_lang[$hnLower]) ? $_lang[$hnLower] : str_replace('_', ' ', $helpname);
|
|
| 41 | - |
|
| 42 | - echo '<div class="tab-page" id="tab' . $k . 'Help">'; |
|
| 43 | - echo '<h2 class="tab">' . $helpname . '</h2>'; |
|
| 44 | - echo '<script type="text/javascript">tp.addTabPage( document.getElementById( "tab' . $k . 'Help" ) );</script>'; |
|
| 45 | - include_once($helpBasePath . "{$v}");
|
|
| 46 | - echo '</div>'; |
|
| 47 | - } |
|
| 48 | - ?> |
|
| 19 | + if($handle = opendir('actions/help')) {
|
|
| 20 | + while(false !== ($file = readdir($handle))) {
|
|
| 21 | + if($file != "." && $file != ".." && $file != ".svn" && $file != 'index.html' && !is_dir($helpBasePath . $file)) {
|
|
| 22 | + $help[] = $file; |
|
| 23 | + } |
|
| 24 | + } |
|
| 25 | + closedir($handle); |
|
| 26 | + } |
|
| 27 | + |
|
| 28 | + natcasesort($help); |
|
| 29 | + |
|
| 30 | + foreach($help as $k => $v) {
|
|
| 31 | + |
|
| 32 | + $helpname = substr($v, 0, strrpos($v, '.')); |
|
| 33 | + |
|
| 34 | + $prefix = substr($helpname, 0, 2); |
|
| 35 | + if(is_numeric($prefix)) {
|
|
| 36 | + $helpname = substr($helpname, 2, strlen($helpname) - 1); |
|
| 37 | + } |
|
| 38 | + |
|
| 39 | + $hnLower = strtolower($helpname); |
|
| 40 | + $helpname = isset($_lang[$hnLower]) ? $_lang[$hnLower] : str_replace('_', ' ', $helpname);
|
|
| 41 | + |
|
| 42 | + echo '<div class="tab-page" id="tab' . $k . 'Help">'; |
|
| 43 | + echo '<h2 class="tab">' . $helpname . '</h2>'; |
|
| 44 | + echo '<script type="text/javascript">tp.addTabPage( document.getElementById( "tab' . $k . 'Help" ) );</script>'; |
|
| 45 | + include_once($helpBasePath . "{$v}");
|
|
| 46 | + echo '</div>'; |
|
| 47 | + } |
|
| 48 | + ?> |
|
| 49 | 49 | </div> |
| 50 | 50 | </div> |
| 51 | 51 | <script> |
@@ -1,12 +1,12 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -if( ! defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) {
|
|
| 2 | +if (!defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) {
|
|
| 3 | 3 | die("<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the EVO Content Manager instead of accessing this file directly.");
|
| 4 | 4 | } |
| 5 | 5 | $helpBasePath = "actions/help/"; |
| 6 | 6 | ?> |
| 7 | 7 | |
| 8 | 8 | <h1> |
| 9 | - <?php echo $_style['page_help']; echo $_lang['help']; ?> |
|
| 9 | + <?php echo $_style['page_help']; echo $_lang['help']; ?> |
|
| 10 | 10 | </h1> |
| 11 | 11 | |
| 12 | 12 | <div class="sectionBody"> |
@@ -16,9 +16,9 @@ discard block |
||
| 16 | 16 | </script> |
| 17 | 17 | |
| 18 | 18 | <?php |
| 19 | - if($handle = opendir('actions/help')) {
|
|
| 20 | - while(false !== ($file = readdir($handle))) {
|
|
| 21 | - if($file != "." && $file != ".." && $file != ".svn" && $file != 'index.html' && !is_dir($helpBasePath . $file)) {
|
|
| 19 | + if ($handle = opendir('actions/help')) {
|
|
| 20 | + while (false !== ($file = readdir($handle))) {
|
|
| 21 | + if ($file != "." && $file != ".." && $file != ".svn" && $file != 'index.html' && !is_dir($helpBasePath.$file)) {
|
|
| 22 | 22 | $help[] = $file; |
| 23 | 23 | } |
| 24 | 24 | } |
@@ -27,22 +27,22 @@ discard block |
||
| 27 | 27 | |
| 28 | 28 | natcasesort($help); |
| 29 | 29 | |
| 30 | - foreach($help as $k => $v) {
|
|
| 30 | + foreach ($help as $k => $v) {
|
|
| 31 | 31 | |
| 32 | 32 | $helpname = substr($v, 0, strrpos($v, '.')); |
| 33 | 33 | |
| 34 | 34 | $prefix = substr($helpname, 0, 2); |
| 35 | - if(is_numeric($prefix)) {
|
|
| 35 | + if (is_numeric($prefix)) {
|
|
| 36 | 36 | $helpname = substr($helpname, 2, strlen($helpname) - 1); |
| 37 | 37 | } |
| 38 | 38 | |
| 39 | 39 | $hnLower = strtolower($helpname); |
| 40 | 40 | $helpname = isset($_lang[$hnLower]) ? $_lang[$hnLower] : str_replace('_', ' ', $helpname);
|
| 41 | 41 | |
| 42 | - echo '<div class="tab-page" id="tab' . $k . 'Help">'; |
|
| 43 | - echo '<h2 class="tab">' . $helpname . '</h2>'; |
|
| 44 | - echo '<script type="text/javascript">tp.addTabPage( document.getElementById( "tab' . $k . 'Help" ) );</script>'; |
|
| 45 | - include_once($helpBasePath . "{$v}");
|
|
| 42 | + echo '<div class="tab-page" id="tab'.$k.'Help">'; |
|
| 43 | + echo '<h2 class="tab">'.$helpname.'</h2>'; |
|
| 44 | + echo '<script type="text/javascript">tp.addTabPage( document.getElementById( "tab'.$k.'Help" ) );</script>'; |
|
| 45 | + include_once($helpBasePath."{$v}");
|
|
| 46 | 46 | echo '</div>'; |
| 47 | 47 | } |
| 48 | 48 | ?> |
@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -if( ! defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) {
|
|
| 2 | +if( ! defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) { |
|
| 3 | 3 | die("<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the EVO Content Manager instead of accessing this file directly.");
|
| 4 | 4 | } |
| 5 | 5 | $helpBasePath = "actions/help/"; |
@@ -16,9 +16,9 @@ discard block |
||
| 16 | 16 | </script> |
| 17 | 17 | |
| 18 | 18 | <?php |
| 19 | - if($handle = opendir('actions/help')) {
|
|
| 20 | - while(false !== ($file = readdir($handle))) {
|
|
| 21 | - if($file != "." && $file != ".." && $file != ".svn" && $file != 'index.html' && !is_dir($helpBasePath . $file)) {
|
|
| 19 | + if($handle = opendir('actions/help')) { |
|
| 20 | + while(false !== ($file = readdir($handle))) { |
|
| 21 | + if($file != "." && $file != ".." && $file != ".svn" && $file != 'index.html' && !is_dir($helpBasePath . $file)) { |
|
| 22 | 22 | $help[] = $file; |
| 23 | 23 | } |
| 24 | 24 | } |
@@ -27,12 +27,12 @@ discard block |
||
| 27 | 27 | |
| 28 | 28 | natcasesort($help); |
| 29 | 29 | |
| 30 | - foreach($help as $k => $v) {
|
|
| 30 | + foreach($help as $k => $v) { |
|
| 31 | 31 | |
| 32 | 32 | $helpname = substr($v, 0, strrpos($v, '.')); |
| 33 | 33 | |
| 34 | 34 | $prefix = substr($helpname, 0, 2); |
| 35 | - if(is_numeric($prefix)) {
|
|
| 35 | + if(is_numeric($prefix)) { |
|
| 36 | 36 | $helpname = substr($helpname, 2, strlen($helpname) - 1); |
| 37 | 37 | } |
| 38 | 38 | |
@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -if( ! defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) { |
|
| 2 | +if (!defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) { |
|
| 3 | 3 | die("<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the EVO Content Manager instead of accessing this file directly."); |
| 4 | 4 | } |
| 5 | 5 | if (!$modx->hasPermission('edit_module')) { |
@@ -63,7 +63,7 @@ discard block |
||
| 63 | 63 | |
| 64 | 64 | } |
| 65 | 65 | |
| 66 | -include_once MODX_MANAGER_PATH . "includes/header.inc.php"; |
|
| 66 | +include_once MODX_MANAGER_PATH."includes/header.inc.php"; |
|
| 67 | 67 | ?> |
| 68 | 68 | <script language="JavaScript" type="text/javascript"> |
| 69 | 69 | function saveSelection() |
@@ -138,7 +138,7 @@ discard block |
||
| 138 | 138 | </script> |
| 139 | 139 | |
| 140 | 140 | <h1> |
| 141 | - <?= $title . " - " . $_lang['element_selector_title'] ?><i class="fa fa-question-circle help"></i> |
|
| 141 | + <?= $title." - ".$_lang['element_selector_title'] ?><i class="fa fa-question-circle help"></i> |
|
| 142 | 142 | </h1> |
| 143 | 143 | |
| 144 | 144 | <div id="actions"> |
@@ -177,15 +177,15 @@ discard block |
||
| 177 | 177 | <div class="row"> |
| 178 | 178 | <div class="table-responsive"> |
| 179 | 179 | <?php |
| 180 | - include_once MODX_MANAGER_PATH . "includes/controls/datagrid.class.php"; |
|
| 180 | + include_once MODX_MANAGER_PATH."includes/controls/datagrid.class.php"; |
|
| 181 | 181 | $grd = new DataGrid('', $ds, $number_of_results); // set page size to 0 t show all items |
| 182 | 182 | $grd->noRecordMsg = $_lang["no_records_found"]; |
| 183 | 183 | $grd->cssClass = "table data nowrap"; |
| 184 | 184 | $grd->columnHeaderClass = "tableHeader"; |
| 185 | 185 | $grd->itemClass = "tableItem"; |
| 186 | 186 | $grd->altItemClass = "tableAltItem"; |
| 187 | - $grd->columns = $_lang["name"] . " ," . $_lang["description"]; |
|
| 188 | - $grd->colTypes = "template:<input type='" . ($sm == 'm' ? 'checkbox' : 'radio') . "' name='id[]' value='[+id+]' onclick='setCheckbox(this);'> [+value+]"; |
|
| 187 | + $grd->columns = $_lang["name"]." ,".$_lang["description"]; |
|
| 188 | + $grd->colTypes = "template:<input type='".($sm == 'm' ? 'checkbox' : 'radio')."' name='id[]' value='[+id+]' onclick='setCheckbox(this);'> [+value+]"; |
|
| 189 | 189 | $grd->colWidths = "45%"; |
| 190 | 190 | $grd->fields = "name,description"; |
| 191 | 191 | if ($_REQUEST['listmode'] == '1') { |
@@ -1,5 +1,5 @@ |
||
| 1 | 1 | <?php |
| 2 | -if( ! defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) { |
|
| 2 | +if (!defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) { |
|
| 3 | 3 | die("<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the EVO Content Manager instead of accessing this file directly."); |
| 4 | 4 | } |
| 5 | 5 | ?> |
@@ -1,9 +1,9 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | if( ! defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) { |
| 3 | - die("<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the EVO Content Manager instead of accessing this file directly."); |
|
| 3 | + die("<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the EVO Content Manager instead of accessing this file directly."); |
|
| 4 | 4 | } |
| 5 | 5 | if(!$modx->hasPermission('export_static')) { |
| 6 | - $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
|
| 6 | + $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
|
| 7 | 7 | } |
| 8 | 8 | |
| 9 | 9 | // figure out the base of the server, so we know where to get the documents in order to export them |
@@ -35,11 +35,11 @@ discard block |
||
| 35 | 35 | |
| 36 | 36 | <div class="container container-body"> |
| 37 | 37 | <?php |
| 38 | - if(isset($_POST['export'])) { |
|
| 39 | - $rs = include_once(MODX_MANAGER_PATH . 'processors/export_site.processor.php'); |
|
| 40 | - echo $rs; |
|
| 41 | - } else { |
|
| 42 | - ?> |
|
| 38 | + if(isset($_POST['export'])) { |
|
| 39 | + $rs = include_once(MODX_MANAGER_PATH . 'processors/export_site.processor.php'); |
|
| 40 | + echo $rs; |
|
| 41 | + } else { |
|
| 42 | + ?> |
|
| 43 | 43 | <form action="index.php" method="post" name="exportFrm"> |
| 44 | 44 | <input type="hidden" name="export" value="export" /> |
| 45 | 45 | <input type="hidden" name="a" value="83" /> |
@@ -81,8 +81,8 @@ discard block |
||
| 81 | 81 | </script> |
| 82 | 82 | </form> |
| 83 | 83 | <?php |
| 84 | - } |
|
| 85 | - ?> |
|
| 84 | + } |
|
| 85 | + ?> |
|
| 86 | 86 | </div> |
| 87 | 87 | </div> |
| 88 | 88 | |
@@ -1,8 +1,8 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -if( ! defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) { |
|
| 2 | +if (!defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) { |
|
| 3 | 3 | die("<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the EVO Content Manager instead of accessing this file directly."); |
| 4 | 4 | } |
| 5 | -if(!$modx->hasPermission('export_static')) { |
|
| 5 | +if (!$modx->hasPermission('export_static')) { |
|
| 6 | 6 | $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
| 7 | 7 | } |
| 8 | 8 | |
@@ -35,8 +35,8 @@ discard block |
||
| 35 | 35 | |
| 36 | 36 | <div class="container container-body"> |
| 37 | 37 | <?php |
| 38 | - if(isset($_POST['export'])) { |
|
| 39 | - $rs = include_once(MODX_MANAGER_PATH . 'processors/export_site.processor.php'); |
|
| 38 | + if (isset($_POST['export'])) { |
|
| 39 | + $rs = include_once(MODX_MANAGER_PATH.'processors/export_site.processor.php'); |
|
| 40 | 40 | echo $rs; |
| 41 | 41 | } else { |
| 42 | 42 | ?> |
@@ -76,7 +76,7 @@ discard block |
||
| 76 | 76 | <a href="javascript:;" class="btn btn-primary" onclick="document.exportFrm.submit();jQuery(this).hide();"><i class="<?= $_style["actions_save"] ?>"></i> <?= $_lang["export_site_start"] ?></a> |
| 77 | 77 | <script> |
| 78 | 78 | jQuery('#exportButton a').click(function() { |
| 79 | - jQuery(this).parent().html('<?= $_style['ajax_loader'];?>'); |
|
| 79 | + jQuery(this).parent().html('<?= $_style['ajax_loader']; ?>'); |
|
| 80 | 80 | }); |
| 81 | 81 | </script> |
| 82 | 82 | </form> |