@@ -66,7 +66,7 @@ class helper {
66
66
* @param int $stepid The step ID.
67
67
* @param int $targettype The type of step.
68
68
*
69
- * @return moodle_url
69
+ * @return \ moodle_url
70
70
*/
71
71
public static function get_edit_step_link ($ tourid , $ stepid = null , $ targettype = null ) {
72
72
$ link = new \moodle_url ('/admin/tool/usertours/configure.php ' );
@@ -88,7 +88,7 @@ public static function get_edit_step_link($tourid, $stepid = null, $targettype =
88
88
* @param int $tourid The tour ID.
89
89
* @param int $direction The direction to move in
90
90
*
91
- * @return moodle_url
91
+ * @return \ moodle_url
92
92
*/
93
93
public static function get_move_tour_link ($ tourid , $ direction = self ::MOVE_DOWN ) {
94
94
$ link = new \moodle_url ('/admin/tool/usertours/configure.php ' );
@@ -107,7 +107,7 @@ public static function get_move_tour_link($tourid, $direction = self::MOVE_DOWN)
107
107
* @param int $stepid The step ID.
108
108
* @param int $direction The direction to move in
109
109
*
110
- * @return moodle_url
110
+ * @return \ moodle_url
111
111
*/
112
112
public static function get_move_step_link ($ stepid , $ direction = self ::MOVE_DOWN ) {
113
113
$ link = new \moodle_url ('/admin/tool/usertours/configure.php ' );
@@ -126,7 +126,7 @@ public static function get_move_step_link($stepid, $direction = self::MOVE_DOWN)
126
126
* @param int $tourid The ID of the tour to attach this step to.
127
127
* @param int $targettype The type of target.
128
128
*
129
- * @return moodle_url The required URL.
129
+ * @return \ moodle_url The required URL.
130
130
*/
131
131
public static function get_new_step_link ($ tourid , $ targettype = null ) {
132
132
$ link = new \moodle_url ('/admin/tool/usertours/configure.php ' );
@@ -141,7 +141,7 @@ public static function get_new_step_link($tourid, $targettype = null) {
141
141
* Get the link used to view the tour.
142
142
*
143
143
* @param int $tourid The ID of the tour to display.
144
- * @return moodle_url The URL.
144
+ * @return \ moodle_url The URL.
145
145
*/
146
146
public static function get_view_tour_link ($ tourid ) {
147
147
return new \moodle_url ('/admin/tool/usertours/configure.php ' , [
@@ -154,7 +154,7 @@ public static function get_view_tour_link($tourid) {
154
154
* Get the link used to reset the tour state for all users.
155
155
*
156
156
* @param int $tourid The ID of the tour to display.
157
- * @return moodle_url The URL.
157
+ * @return \ moodle_url The URL.
158
158
*/
159
159
public static function get_reset_tour_for_all_link ($ tourid ) {
160
160
return new \moodle_url ('/admin/tool/usertours/configure.php ' , [
@@ -168,7 +168,7 @@ public static function get_reset_tour_for_all_link($tourid) {
168
168
* Get the link used to edit the tour.
169
169
*
170
170
* @param int $tourid The ID of the tour to edit.
171
- * @return moodle_url The URL.
171
+ * @return \ moodle_url The URL.
172
172
*/
173
173
public static function get_edit_tour_link ($ tourid = null ) {
174
174
$ link = new \moodle_url ('/admin/tool/usertours/configure.php ' );
@@ -186,7 +186,7 @@ public static function get_edit_tour_link($tourid = null) {
186
186
/**
187
187
* Get the link used to import the tour.
188
188
*
189
- * @return moodle_url The URL.
189
+ * @return \ moodle_url The URL.
190
190
*/
191
191
public static function get_import_tour_link () {
192
192
$ link = new \moodle_url ('/admin/tool/usertours/configure.php ' , [
@@ -200,7 +200,7 @@ public static function get_import_tour_link() {
200
200
* Get the link used to export the tour.
201
201
*
202
202
* @param int $tourid The ID of the tour to export.
203
- * @return moodle_url The URL.
203
+ * @return \ moodle_url The URL.
204
204
*/
205
205
public static function get_export_tour_link ($ tourid ) {
206
206
$ link = new \moodle_url ('/admin/tool/usertours/configure.php ' , [
@@ -215,7 +215,7 @@ public static function get_export_tour_link($tourid) {
215
215
* Get the link used to duplicate the tour.
216
216
*
217
217
* @param int $tourid The ID of the tour to duplicate.
218
- * @return moodle_url The URL.
218
+ * @return \ moodle_url The URL.
219
219
*/
220
220
public static function get_duplicate_tour_link ($ tourid ) {
221
221
$ link = new \moodle_url ('/admin/tool/usertours/configure.php ' , [
@@ -230,7 +230,7 @@ public static function get_duplicate_tour_link($tourid) {
230
230
* Get the link used to delete the tour.
231
231
*
232
232
* @param int $tourid The ID of the tour to delete.
233
- * @return moodle_url The URL.
233
+ * @return \ moodle_url The URL.
234
234
*/
235
235
public static function get_delete_tour_link ($ tourid ) {
236
236
return new \moodle_url ('/admin/tool/usertours/configure.php ' , [
@@ -243,7 +243,7 @@ public static function get_delete_tour_link($tourid) {
243
243
/**
244
244
* Get the link for listing tours.
245
245
*
246
- * @return moodle_url The URL.
246
+ * @return \ moodle_url The URL.
247
247
*/
248
248
public static function get_list_tour_link () {
249
249
$ link = new \moodle_url ('/admin/tool/usertours/configure.php ' );
@@ -295,7 +295,7 @@ public static function get_filler_icon($options = array()) {
295
295
* Get the link for deleting steps.
296
296
*
297
297
* @param int $stepid The ID of the step to display.
298
- * @return moodle_url The URL.
298
+ * @return \ moodle_url The URL.
299
299
*/
300
300
public static function get_delete_step_link ($ stepid ) {
301
301
return new \moodle_url ('/admin/tool/usertours/configure.php ' , [
0 commit comments