PrinterFriendly   A
last analyzed

Complexity

Total Complexity 5

Size/Duplication

Total Lines 64
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 1

Importance

Changes 0
Metric Value
dl 0
loc 64
rs 10
c 0
b 0
f 0
wmc 5
lcom 1
cbo 1

4 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 6 1
A render() 0 25 2
A setPageTitle() 0 4 1
A setWidth() 0 4 1
1
<?php namespace XoopsModules\Smartobject;
2
3
/**
4
 *
5
 * Module: SmartObject
6
 * Author: The SmartFactory <www.smartfactory.ca>
7
 * Licence: GNU
8
 */
9
10
use XoopsModules\Smartobject;
11
12
// defined('XOOPS_ROOT_PATH') || die('Restricted access');
13
14
/**
15
 * Class to manage a printer friendly page
16
 * @author The SmartFactory <www.smartfactory.ca>
17
 */
18
class PrinterFriendly
19
{
20
    public $_title;
21
    public $_dsc;
22
    public $_content;
23
    public $_tpl;
24
    public $_pageTitle = false;
25
    public $_width     = 680;
26
27
    /**
28
     * SmartPrinterFriendly constructor.
29
     * @param      $content
30
     * @param bool $title
31
     * @param bool $dsc
32
     */
33
    public function __construct($content, $title = false, $dsc = false)
34
    {
35
        $this->_title   = $title;
36
        $this->_dsc     = $dsc;
37
        $this->_content = $content;
38
    }
39
40
    public function render()
41
    {
42
        /**
43
         * @todo move the output to a template
44
         * @todo make the output XHTML compliant
45
         */
46
47
        require_once XOOPS_ROOT_PATH . '/class/template.php';
48
49
        $this->_tpl = new \XoopsTpl();
50
51
        $this->_tpl->assign('smartobject_print_pageTitle', $this->_pageTitle ?: $this->_title);
52
        $this->_tpl->assign('smartobject_print_title', $this->_title);
53
        $this->_tpl->assign('smartobject_print_dsc', $this->_dsc);
54
        $this->_tpl->assign('smartobject_print_content', $this->_content);
55
        $this->_tpl->assign('smartobject_print_width', $this->_width);
56
57
        $current_urls = Smartobject\Utility::getCurrentUrls();
58
        $current_url  = $current_urls['full'];
59
60
        $this->_tpl->assign('smartobject_print_currenturl', $current_url);
61
        $this->_tpl->assign('smartobject_print_url', $this->url);
0 ignored issues
show
Bug introduced by
The property url does not exist. Did you maybe forget to declare it?

In PHP it is possible to write to properties without declaring them. For example, the following is perfectly valid PHP code:

class MyClass { }

$x = new MyClass();
$x->foo = true;

Generally, it is a good practice to explictly declare properties to avoid accidental typos and provide IDE auto-completion:

class MyClass {
    public $foo;
}

$x = new MyClass();
$x->foo = true;
Loading history...
62
63
        $this->_tpl->display('db:smartobject_print.tpl');
64
    }
65
66
    /**
67
     * @param $text
68
     */
69
    public function setPageTitle($text)
70
    {
71
        $this->_pageTitle = $text;
72
    }
73
74
    /**
75
     * @param $width
76
     */
77
    public function setWidth($width)
78
    {
79
        $this->_width = $width;
80
    }
81
}
82