@@ -126,7 +126,7 @@ discard block |
||
126 | 126 | return false; |
127 | 127 | } |
128 | 128 | } |
129 | - */ |
|
129 | + */ |
|
130 | 130 | |
131 | 131 | /* |
132 | 132 | * Creating a Room for the meeting |
@@ -256,10 +256,10 @@ discard block |
||
256 | 256 | return true; |
257 | 257 | } |
258 | 258 | |
259 | - /** |
|
260 | - * Gets the password for a specific meeting for the current user |
|
261 | - * @return string A moderator password if user is teacher, or the course code otherwise |
|
262 | - */ |
|
259 | + /** |
|
260 | + * Gets the password for a specific meeting for the current user |
|
261 | + * @return string A moderator password if user is teacher, or the course code otherwise |
|
262 | + */ |
|
263 | 263 | public function getMeetingUserPassword() |
264 | 264 | { |
265 | 265 | if ($this->isTeacher()) { |
@@ -538,7 +538,7 @@ discard block |
||
538 | 538 | // |
539 | 539 | // } |
540 | 540 | // |
541 | - //$item['created_at'] = api_convert_and_format_date($meetingDb['created_at']); |
|
541 | + //$item['created_at'] = api_convert_and_format_date($meetingDb['created_at']); |
|
542 | 542 | // //created_at |
543 | 543 | // |
544 | 544 | // $item['publish_url'] = api_get_self().'?action=publish&id='.$meetingDb['id']; |
@@ -55,7 +55,7 @@ |
||
55 | 55 | //$gradebook['name'] = $gradebook['name']; |
56 | 56 | //$gradebook_list[] = $gradebook; |
57 | 57 | } else { |
58 | - // $gradebook['name'] = $gradebook_list[$gradebook['parent_id']]['name'].' > '.$gradebook['name']; |
|
58 | + // $gradebook['name'] = $gradebook_list[$gradebook['parent_id']]['name'].' > '.$gradebook['name']; |
|
59 | 59 | //$gradebook_list[] = $gradebook; |
60 | 60 | } |
61 | 61 | } |
@@ -70,13 +70,13 @@ |
||
70 | 70 | <tr> |
71 | 71 | <td align="center"> |
72 | 72 | <?php |
73 | - echo Display::select( |
|
74 | - 'sessions[]', |
|
75 | - $sessionList, |
|
76 | - '', |
|
77 | - array('style'=>'width:100%', 'multiple'=>'multiple', 'id'=>'sessions', 'size'=>'15px'), |
|
78 | - false |
|
79 | - ); |
|
73 | + echo Display::select( |
|
74 | + 'sessions[]', |
|
75 | + $sessionList, |
|
76 | + '', |
|
77 | + array('style'=>'width:100%', 'multiple'=>'multiple', 'id'=>'sessions', 'size'=>'15px'), |
|
78 | + false |
|
79 | + ); |
|
80 | 80 | ?> |
81 | 81 | </td> |
82 | 82 | <td align="center"> |
@@ -926,14 +926,14 @@ discard block |
||
926 | 926 | } |
927 | 927 | |
928 | 928 | /** |
929 | - * The most important function here, prints the session and course list (user_portal.php) |
|
930 | - * |
|
931 | - * @param int $user_id |
|
932 | - * @param string $filter |
|
933 | - * @param int $page |
|
934 | - * @return string HTML list of sessions and courses |
|
935 | - * |
|
936 | - */ |
|
929 | + * The most important function here, prints the session and course list (user_portal.php) |
|
930 | + * |
|
931 | + * @param int $user_id |
|
932 | + * @param string $filter |
|
933 | + * @param int $page |
|
934 | + * @return string HTML list of sessions and courses |
|
935 | + * |
|
936 | + */ |
|
937 | 937 | public function returnCourses($user_id, $filter, $page) |
938 | 938 | { |
939 | 939 | if (empty($user_id)) { |
@@ -1434,9 +1434,9 @@ discard block |
||
1434 | 1434 | $tpl->assign('welcome_to_course_block', 1); |
1435 | 1435 | } |
1436 | 1436 | |
1437 | - /** |
|
1438 | - * @param array |
|
1439 | - */ |
|
1437 | + /** |
|
1438 | + * @param array |
|
1439 | + */ |
|
1440 | 1440 | public function returnNavigationLinks($items) |
1441 | 1441 | { |
1442 | 1442 | // Main navigation section. |
@@ -233,7 +233,7 @@ |
||
233 | 233 | */ |
234 | 234 | public static function getMailer() |
235 | 235 | { |
236 | - return self::$container->get('mailer'); |
|
236 | + return self::$container->get('mailer'); |
|
237 | 237 | } |
238 | 238 | |
239 | 239 | /** |
@@ -88,7 +88,7 @@ |
||
88 | 88 | |
89 | 89 | // Admins have access to everything |
90 | 90 | if ($authChecker->isGranted('ROLE_ADMIN')) { |
91 | - // return true; |
|
91 | + // return true; |
|
92 | 92 | } |
93 | 93 | |
94 | 94 | // Check if I'm the owner |
@@ -136,7 +136,7 @@ |
||
136 | 136 | ); |
137 | 137 | /** @var Category $category */ |
138 | 138 | foreach ($categories as $category) { |
139 | - $faq->addChild( |
|
139 | + $faq->addChild( |
|
140 | 140 | $category->getHeadline(), |
141 | 141 | array( |
142 | 142 | 'route' => 'faq', |
@@ -94,12 +94,12 @@ |
||
94 | 94 | */ |
95 | 95 | protected $assignedLastUser; |
96 | 96 | |
97 | - /** |
|
98 | - * @var Status |
|
99 | - * |
|
100 | - * @ORM\ManyToOne(targetEntity="Chamilo\TicketBundle\Entity\Status") |
|
101 | - * @ORM\JoinColumn(name="status_id", referencedColumnName="id") |
|
102 | - **/ |
|
97 | + /** |
|
98 | + * @var Status |
|
99 | + * |
|
100 | + * @ORM\ManyToOne(targetEntity="Chamilo\TicketBundle\Entity\Status") |
|
101 | + * @ORM\JoinColumn(name="status_id", referencedColumnName="id") |
|
102 | + **/ |
|
103 | 103 | protected $status; |
104 | 104 | |
105 | 105 | /** |
@@ -56,7 +56,7 @@ |
||
56 | 56 | */ |
57 | 57 | protected $filename; |
58 | 58 | |
59 | - /** |
|
59 | + /** |
|
60 | 60 | * @var integer |
61 | 61 | * |
62 | 62 | * @ORM\Column(name="size", type="integer", nullable=false, unique=false) |