Completed
Push — master ( 3a6ebc...3a5a05 )
by Michael
04:13
created
xoops_trust_path/libs/altsys/class/MyBlocksAdmin.class.php 1 patch
Doc Comments   +24 added lines patch added patch discarded remove patch
@@ -488,6 +488,12 @@  discard block
 block discarded – undo
488 488
     }
489 489
 
490 490
 
491
+    /**
492
+     * @param integer $bside
493
+     * @param integer $bweight
494
+     * @param integer $bvisible
495
+     * @param integer $bcachetime
496
+     */
491 497
     public function update_block($bid, $bside, $bweight, $bvisible, $btitle, $bcontent, $bctype, $bcachetime, $options=array())
492 498
     {
493 499
         global $xoopsConfig;
@@ -646,6 +652,9 @@  discard block
 block discarded – undo
646 652
     }
647 653
 
648 654
 
655
+    /**
656
+     * @param integer $bid
657
+     */
649 658
     public function do_delete($bid)
650 659
     {
651 660
         $bid = intval($bid) ;
@@ -671,6 +680,9 @@  discard block
 block discarded – undo
671 680
     }
672 681
 
673 682
 //HACK add by domifara
683
+/**
684
+ * @param integer $bid
685
+ */
674 686
 public function do_deleteBlockReadGroupPerm($bid)
675 687
 {
676 688
     $bid = intval($bid) ;
@@ -679,6 +691,9 @@  discard block
 block discarded – undo
679 691
     $this->db->query($sql) ;
680 692
 }
681 693
 
694
+    /**
695
+     * @param integer $bid
696
+     */
682 697
     public function form_delete($bid)
683 698
     {
684 699
         $bid = intval($bid) ;
@@ -708,6 +723,9 @@  discard block
 block discarded – undo
708 723
     }
709 724
 
710 725
 
726
+    /**
727
+     * @param integer $bid
728
+     */
711 729
     public function do_clone($bid)
712 730
     {
713 731
         $bid = intval($bid) ;
@@ -786,6 +804,9 @@  discard block
 block discarded – undo
786 804
     }
787 805
 
788 806
 
807
+    /**
808
+     * @param integer $bid
809
+     */
789 810
     public function do_edit($bid)
790 811
     {
791 812
         $bid = intval($bid) ;
@@ -829,6 +850,9 @@  discard block
 block discarded – undo
829 850
     }
830 851
 
831 852
 
853
+    /**
854
+     * @param integer $bid
855
+     */
832 856
     public function form_edit($bid, $mode = 'edit')
833 857
     {
834 858
         $bid = intval($bid) ;
Please login to merge, or discard this patch.
xoops_trust_path/libs/altsys/include/altsys_functions.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -103,6 +103,12 @@
 block discarded – undo
103 103
 }
104 104
 
105 105
 
106
+/**
107
+ * @param integer $mid
108
+ * @param integer $coretype
109
+ *
110
+ * @return string
111
+ */
106 112
 function altsys_get_link2modpreferences($mid, $coretype)
107 113
 {
108 114
     switch ($coretype) {
Please login to merge, or discard this patch.
xoops_trust_path/libs/altsys/include/mygrouppermform.php 1 patch
Doc Comments   +10 added lines patch added patch discarded remove patch
@@ -82,6 +82,12 @@  discard block
 block discarded – undo
82 82
      */
83 83
 //HACK by domifara
84 84
 //	public function MyXoopsGroupPermForm($title, $modid, $permname, $permdesc)
85
+    /**
86
+     * @param string $title
87
+     * @param integer $modid
88
+     * @param string $permname
89
+     * @param string $permdesc
90
+     */
85 91
     public function __construct($title, $modid, $permname, $permdesc)
86 92
     {
87 93
         //		$this->XoopsForm($title, 'groupperm_form', XOOPS_URL.'/modules/system/admin/groupperm.php', 'post'); GIJ
@@ -112,6 +118,9 @@  discard block
 block discarded – undo
112 118
      * Add appendix
113 119
      *
114 120
      * @access public
121
+     * @param string $permName
122
+     * @param integer $itemId
123
+     * @param string $itemName
115 124
      */
116 125
     public function addAppendix($permName, $itemId, $itemName)
117 126
     {
@@ -251,6 +260,7 @@  discard block
 block discarded – undo
251 260
 
252 261
     /**
253 262
      * Constructor
263
+     * @param string $name
254 264
      */
255 265
     public function MyXoopsGroupFormCheckBox($caption, $name, $groupId, $values = null)
256 266
     {
Please login to merge, or discard this patch.
xoops_trust_path/libs/altsys/class/MyBlocksAdminForICMS.class.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -69,6 +69,9 @@
 block discarded – undo
69 69
 
70 70
 
71 71
 // private
72
+/**
73
+ * @param integer $target_side
74
+ */
72 75
 public function renderRadio4BlockPosition($target_side, $block_data)
73 76
 {
74 77
     $bid = intval($block_data['bid']) ;
Please login to merge, or discard this patch.