Completed
Push — master ( c5aa4f...a09810 )
by Michael
02:13
created

SmartAddTo   A

Complexity

Total Complexity 8

Size/Duplication

Total Lines 65
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 0

Importance

Changes 0
Metric Value
dl 0
loc 65
rs 10
c 0
b 0
f 0
wmc 8
lcom 1
cbo 0

3 Methods

Rating   Name   Duplication   Size   Complexity  
B __construct() 0 14 5
A render() 0 17 2
A renderForBlock() 0 13 1
1
<?php
2
3
/**
4
 * SmartAddTo class to easily add content to social networking/bookmarking site
5
 *
6
 * @credit http://addtobookmarks.com/, James Morris and the XoopsInfo team
7
 */
8
9
// defined('XOOPS_ROOT_PATH') || exit('XOOPS root path not defined');
0 ignored issues
show
Unused Code Comprehensibility introduced by
70% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
10
11
class SmartAddTo
12
{
13
    public $_layout;
14
    public $_method;
15
16
    /**
17
     * Constructor of SmartAddTo
18
     *
19
     * @param int $layout 0=Horizontal 1 row, 1=Horizontal 2 rows, 2=Vertical with icons, 3=Vertical no icons
20
     * @param int $method 0=directpage, 1=popup
21
     */
22
    public function __construct($layout = 0, $method = 1)
23
    {
24
        $layout = (int)$layout;
25
        if ($layout < 0 || $layout > 3) {
26
            $layout = 0;
27
        }
28
        $this->_layout = $layout;
29
30
        $method = (int)$method;
31
        if ($method < 0 || $method > 1) {
32
            $method = 1;
33
        }
34
        $this->_method = $method;
35
    }
36
37
    /**
38
     * @param  bool $fetchOnly
39
     * @return mixed|string|void
40
     */
41
    public function render($fetchOnly = false)
42
    {
43
        global $xoTheme, $xoopsTpl;
44
45
        $xoTheme->addStylesheet(SMARTOBJECT_URL . 'include/addto/addto.css');
46
47
        $xoopsTpl->assign('smartobject_addto_method', $this->_method);
48
        $xoopsTpl->assign('smartobject_addto_layout', $this->_layout);
49
50
        $xoopsTpl->assign('smartobject_addto_url', SMARTOBJECT_URL . 'include/addto/');
51
52
        if ($fetchOnly) {
53
            return $xoopsTpl->fetch('db:smartobject_addto.tpl');
54
        } else {
55
            $xoopsTpl->display('db:smartobject_addto.tpl');
56
        }
57
    }
58
59
    /**
60
     * @return array
61
     */
62
    public function renderForBlock()
63
    {
64
        global $xoTheme;
65
66
        $xoTheme->addStylesheet(SMARTOBJECT_URL . 'include/addto/addto.css');
67
68
        $block                             = array();
69
        $block['smartobject_addto_method'] = $this->_method;
70
        $block['smartobject_addto_layout'] = $this->_layout;
71
        $block['smartobject_addto_url']    = SMARTOBJECT_URL . 'include/addto/';
72
73
        return $block;
74
    }
75
}
76