joomla-platform / libraries / joomla / document / document.php

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
<?php
/**
 * @package     Joomla.Platform
 * @subpackage  Document
 *
 * @copyright   Copyright (C) 2005 - 2011 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE
 */

defined('JPATH_PLATFORM') or die;

//Register the renderer class with the loader
JLoader::register('JDocumentRenderer', dirname(__FILE__).DS.'renderer.php');

/**
 * Document class, provides an easy interface to parse and display a document
 *
 * @abstract
 * @package     Joomla.Platform
 * @subpackage  Document
 * @since       11.1
 */
class JDocument extends JObject
{
    /**
     * Document title
     *
     * @var string
     */
    public $title = '';

    /**
     * Document description
     *
     * @var string
     */
    public $description = '';

    /**
     * Document full URL
     *
     * @var string
     */
    public $link = '';

    /**
     * Document base URL
     *
     * @var string
     */
    public $base = '';

    /**
     * Contains the document language setting
     *
     * @var string
     */
    public $language = 'en-gb';

    /**
     * Contains the document direction setting
     *
     * @var string
     */
    public $direction = 'ltr';

    /**
     * Document generator
     *
     * @var     string
     */
    public $_generator = 'Joomla! 1.6 - Open Source Content Management';

    /**
     * Document modified date
     *
     * @var     string
     */
    public $_mdate = '';

    /**
     * Tab string
     *
     * @var     string
     */
    private $_tab = "\11";

    /**
     * Contains the line end string
     *
     * @var     string
     */
    private $_lineEnd = "\12";

    /**
     * Contains the character encoding string
     *
     * @var string
     */
    private $_charset = 'utf-8';

    /**
     * Document mime type
     *
     * @var     string
     */
    private $_mime = '';

    /**
     * Document namespace
     *
     * @var     string
     */
    private $_namespace = '';

    /**
     * Document profile
     *
     * @var     string
     */
    private $_profile = '';

    /**
     * Array of linked scripts
     *
     * @var     array
     */
    private $_scripts = array();

    /**
     * Array of scripts placed in the header
     *
     * @var  array
     */
    private $_script = array();

    /**
     * Array of linked style sheets
     *
     * @var array
     */
    private $_styleSheets = array();

    /**
     * Array of included style declarations
     *
     * @var array
     */
    private $_style = array();

    /**
     * Array of meta tags
     *
     * @var array
     */
    private $_metaTags = array();

    /**
     * The rendering engine
     *
     * @var object
     */
    private $_engine = null;

    /**
     * The document type
     *
     * @var string
     */
    private $_type = null;

    /**
     * Array of buffered output
     *
     * @var     mixed (depends on the renderer)
     * @access  private
     */
    protected static $_buffer = null;


    /**
    * Class constructor
    *
    * @param    array   $options Associative array of options
    */
    protected function __construct($options = array())
    {
        parent::__construct();

        if (array_key_exists('lineend', $options)) {
            $this->setLineEnd($options['lineend']);
        }

        if (array_key_exists('charset', $options)) {
            $this->setCharset($options['charset']);
        }

        if (array_key_exists('language', $options)) {
            $this->setLanguage($options['language']);
        }

        if (array_key_exists('direction', $options)) {
            $this->setDirection($options['direction']);
        }

        if (array_key_exists('tab', $options)) {
            $this->setTab($options['tab']);
        }

        if (array_key_exists('link', $options)) {
            $this->setLink($options['link']);
        }

        if (array_key_exists('base', $options)) {
            $this->setBase($options['base']);
        }
    }

    /**
     * Returns the global JDocument object, only creating it
     * if it doesn't already exist.
     *
     * @param type $type The document type to instantiate
     * 
     * @return object  The document object.
     */
    public static function getInstance($type = 'html', $attributes = array())
    {
        static $instances;

        if (!isset($instances)) {
            $instances = array();
        }

        $signature = serialize(array($type, $attributes));

        if (empty($instances[$signature]))
        {
            $type   = preg_replace('/[^A-Z0-9_\.-]/i', '', $type);
            $path   = dirname(__FILE__).DS.$type.DS.$type.'.php';
            $ntype  = null;

            // Check if the document type exists
            if (!file_exists($path))
            {
                // Default to the raw format
                $ntype  = $type;
                $type   = 'raw';
            }

            // Determine the path and class
            $class = 'JDocument'.$type;
            if (!class_exists($class))
            {
                $path   = dirname(__FILE__).DS.$type.DS.$type.'.php';
                if (file_exists($path)) {
                    require_once $path;
                } else {
                    JError::raiseError(500,JText::_('JLIB_DOCUMENT_ERROR_UNABLE_LOAD_DOC_CLASS'));
                }
            }

            $instance   = new $class($attributes);
            $instances[$signature] = &$instance;

            if (!is_null($ntype))
            {
                // Set the type to the Document type originally requested
                $instance->setType($ntype);
            }
        }

        return $instances[$signature];
    }

    /**
     * Set the document type
     *
     * @param   string $type
     */
    public function setType($type) {
        $this->_type = $type;
    }

    /**
     * Returns the document type
     *
     * @return  string
     */
    public function getType() {
        return $this->_type;
    }

    /**
     * Get the document head data
     *
     * @return  array   The document head data in array form
     */
    public function getHeadData() {
        // Impelemented in child classes
    }

    /**
     * Set the document head data
     *
     * @param   array   $data   The document head data in array form
     */
    public function setHeadData($data) {
        // Impelemented in child classes
    }

    /**
     * Set the document head data
     *
     * @param   array   $data   The document head data in array form
     */
    public function mergeHeadData($data) {
        // Impelemented in child classes
    }

    /**
     * Get the contents of the document buffer
     *
     * @return  The contents of the document buffer
     */
    public function getBuffer() {
        return self::$_buffer;
    }

    /**
     * Set the contents of the document buffer
     *
     * @param   string  $content    The content to be set in the buffer.
     * @param   array   $options    Array of optional elements.
     */
    public function setBuffer($content, $options = array()) {
        self::$_buffer = $content;
    }

    /**
     * Gets a meta tag.
     *
     * @param   string  $name           Value of name or http-equiv tag
     * @param   bool    $http_equiv META type "http-equiv" defaults to null
     * 
     * @return  string
     */
    public function getMetaData($name, $http_equiv = false)
    {
        $result = '';
        $name = strtolower($name);
        if ($name == 'generator') {
            $result = $this->getGenerator();
        } elseif ($name == 'description') {
            $result = $this->getDescription();
        } else {
            if ($http_equiv == true) {
                $result = @$this->_metaTags['http-equiv'][$name];
            } else {
                $result = @$this->_metaTags['standard'][$name];
            }
        }
        return $result;
    }

    /**
     * Sets or alters a meta tag.
     *
     * @param string    $name           Value of name or http-equiv tag
     * @param string    $content        Value of the content tag
     * @param bool      $http_equiv     META type "http-equiv" defaults to null
     * @param bool      $sync           Should http-equiv="content-type" by synced with HTTP-header?
     *
     * @return void
     */
    public function setMetaData($name, $content, $http_equiv = false, $sync = true)
    {
        $name = strtolower($name);
        if ($name == 'generator') {
            $this->setGenerator($content);
        } elseif ($name == 'description') {
            $this->setDescription($content);
        } else {
            if ($http_equiv == true) {
                $this->_metaTags['http-equiv'][$name] = $content;
                // Syncing with HTTP-header
                if($sync && strtolower($name) == 'content-type') {
                    $this->setMimeEncoding($content, false);
                }
            } else {
                $this->_metaTags['standard'][$name] = $content;
            }
        }
    }

    /**
     * Adds a linked script to the page
     *
     * @param   string  $url        URL to the linked script
     * @param   string  $type       Type of script. Defaults to 'text/javascript'
     */
    public function addScript($url, $type="text/javascript") {
        $this->_scripts[$url] = $type;
    }

    /**
     * Adds a script to the page
     *
     * @param   string  $content    Script
     * @param   string  $type   Scripting mime (defaults to 'text/javascript')
     * @return  void
     */
    public function addScriptDeclaration($content, $type = 'text/javascript')
    {
        if (!isset($this->_script[strtolower($type)])) {
            $this->_script[strtolower($type)] = $content;
        } else {
            $this->_script[strtolower($type)] .= chr(13).$content;
        }
    }

    /**
     * Adds a linked stylesheet to the page
     *
     * @param   string  $url    URL to the linked style sheet
     * @param   string  $type   Mime encoding type
     * @param   string  $media  Media type that this stylesheet applies to
     */
    public function addStyleSheet($url, $type = 'text/css', $media = null, $attribs = array())
    {
        $this->_styleSheets[$url]['mime']       = $type;
        $this->_styleSheets[$url]['media']      = $media;
        $this->_styleSheets[$url]['attribs']    = $attribs;
    }

    /**
     * Adds a stylesheet declaration to the page
     *
     * @param   string  $content    Style declarations
     * @param   string  $type       Type of stylesheet (defaults to 'text/css')
     * 
     * @return  void
     */
    public function addStyleDeclaration($content, $type = 'text/css')
    {
        if (!isset($this->_style[strtolower($type)])) {
            $this->_style[strtolower($type)] = $content;
        } else {
            $this->_style[strtolower($type)] .= chr(13).$content;
        }
    }

    /**
     * Sets the document charset
     *
     * @param   string  $type  Charset encoding string
     * 
     * @return  void
     */
    public function setCharset($type = 'utf-8') {
        $this->_charset = $type;
    }

    /**
     * Returns the document charset encoding.
     *
     * @return string
     */
    public function getCharset() {
        return $this->_charset;
    }

    /**
     * Sets the global document language declaration. Default is English (en-gb).
     *
     * @param   string  $lang
     */
    public function setLanguage($lang = "en-gb") {
        $this->language = strtolower($lang);
    }

    /**
     * Returns the document language.
     *
     * @return string
     */
    public function getLanguage() {
        return $this->language;
    }

    /**
     * Sets the global document direction declaration. Default is left-to-right (ltr).
     *
     * @param   string  $lang
     */
    public function setDirection($dir = "ltr") {
        $this->direction = strtolower($dir);
    }

    /**
     * Returns the document direction declaration.
     *
     * @return string
     * 
     */
    public function getDirection() {
        return $this->direction;
    }

    /**
     * Sets the title of the document
     *
     * @param   string  $title
     * 
     */
    public function setTitle($title) {
        $this->title = $title;
    }

    /**
     * Return the title of the document.
     *
     * @return  string
     */
    public function getTitle() {
        return $this->title;
    }

    /**
     * Sets the base URI of the document
     *
     * @param   string  $base
     * 
     */
    public function setBase($base) {
        $this->base = $base;
    }

    /**
     * Return the base URI of the document.
     *
     * @return  string
     * 
     */
    public function getBase() {
        return $this->base;
    }

    /**
     * Sets the description of the document
     *
     * @param   string  $title
     * 
     */
    public function setDescription($description) {
        $this->description = $description;
    }

    /**
     * Return the title of the page.
     *
     * @return  string
     *
     */
    public function getDescription() {
        return $this->description;
    }

    /**
     * Sets the document link
     *
     * @param   string  $url  A url
     * 
     * @return  void
     */
    public function setLink($url) {
        $this->link = $url;
    }

    /**
     * Returns the document base url
     *
     * @return string
     */
    public function getLink() {
        return $this->link;
    }

    /**
     * Sets the document generator
     *
     * @param   string
     * @return  void
     */
    public function setGenerator($generator) {
        $this->_generator = $generator;
    }

    /**
     * Returns the document generator
     *
     * @return string
     */
    public function getGenerator() {
        return $this->_generator;
    }

    /**
     * Sets the document modified date
     *
     * @param   string
     * 
     * @return  void
     */
    public function setModifiedDate($date) {
        $this->_mdate = $date;
    }

    /**
     * Returns the document modified date
     *
     * @return string
     */
    public function getModifiedDate() {
        return $this->_mdate;
    }

    /**
     * Sets the document MIME encoding that is sent to the browser.
     *
     * This usually will be text/html because most browsers cannot yet
     * accept the proper mime settings for XHTML: application/xhtml+xml
     * and to a lesser extent application/xml and text/xml. See the W3C note
     * ({@link http://www.w3.org/TR/xhtml-media-types/
     * http://www.w3.org/TR/xhtml-media-types/}) for more details.
     *
     * @param   string      $type
     * @param   boolean     Should the type be synced with HTML?
     * @return  void
     */
    public function setMimeEncoding($type = 'text/html', $sync = true) {
        $this->_mime = strtolower($type);

        // Syncing with meta-data
        if ($sync) {
            $this->setMetaData('content-type', $type, true, false);
        }
    }

    /**
     * Return the document MIME encoding that is sent to the browser.
     *
     * @return  string
     */
    public function getMimeEncoding() {
        return $this->_mime;
    }

    /**
     * Sets the line end style to Windows, Mac, Unix or a custom string.
     *
     * @param   string  $style  "win", "mac", "unix" or custom string.
     * @return  void
     */
    public function setLineEnd($style)
    {
        switch ($style) {
            case 'win':
                $this->_lineEnd = "\15\12";
                break;
            case 'unix':
                $this->_lineEnd = "\12";
                break;
            case 'mac':
                $this->_lineEnd = "\15";
                break;
            default:
                $this->_lineEnd = $style;
        }
    }

    /**
     * Returns the lineEnd
     *
     * @return  string
     */
    private function _getLineEnd() {
        return $this->_lineEnd;
    }

    /**
     * Sets the string used to indent HTML
     *
     * @param   string  $string String used to indent ("\11", "\t", '  ', etc.).
     * 
     * @return  void
     */
    public function setTab($string) {
        $this->_tab = $string;
    }

    /**
     * Returns a string containing the unit for indenting HTML
     *
     * @return  string
     */
    private function _getTab() {
        return $this->_tab;
    }

    /**
    * Load a renderer
    *
    * @param    string  The renderer type
    * @return   object
    * @since   11.1
    */
    public function loadRenderer($type)
    {
        $class  = 'JDocumentRenderer'.$type;

        if (!class_exists($class))
        {
            $path = dirname(__FILE__).DS.$this->_type.DS.'renderer'.DS.$type.'.php';
            if (file_exists($path)) {
                require_once $path;
            } else {
                JError::raiseError(500,JText::_('Unable to load renderer class'));
            }
        }

        if (!class_exists($class)) {
            return null;
        }

        $instance = new $class($this);
        return $instance;
    }

    /**
     * Parses the document and prepares the buffers
     *
     * @return null
     */
    public function parse($params = array()) {
        return null;
    }

    /**
     * Outputs the document
     *
     * @param boolean   $cache      If true, cache the output
     * @param boolean   $compress   If true, compress the output
     * @param array     $params     Associative array of attributes
     * 
     * @return  The rendered data
     */
    public function render($cache = false, $params = array())
    {
        if ($mdate = $this->getModifiedDate()) {
            JResponse::setHeader('Last-Modified', $mdate /* gmdate('D, d M Y H:i:s', time() + 900) . ' GMT' */);
        }
        JResponse::setHeader('Content-Type', $this->_mime .  '; charset=' . $this->_charset);
    }
}
Tip: Filter by directory path e.g. /media app.js to search for public/media/app.js.
Tip: Use camelCasing e.g. ProjME to search for ProjectModifiedEvent.java.
Tip: Filter by extension type e.g. /repo .js to search for all .js files in the /repo directory.
Tip: Separate your search with spaces e.g. /ssh pom.xml to search for src/ssh/pom.xml.
Tip: Use ↑ and ↓ arrow keys to navigate and return to view the file.
Tip: You can also navigate files with Ctrl+j (next) and Ctrl+k (previous) and view the file with Ctrl+o.
Tip: You can also navigate files with Alt+j (next) and Alt+k (previous) and view the file with Alt+o.