Proyectos de Subversion Moodle

Rev

Rev 1 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 1 Rev 1441
Línea 203... Línea 203...
203
     * Returns URL of a page where the grading form can be defined and edited.
203
     * Returns URL of a page where the grading form can be defined and edited.
204
     *
204
     *
205
     * @param moodle_url $returnurl optional URL of a page where the user should be sent once they are finished with editing
205
     * @param moodle_url $returnurl optional URL of a page where the user should be sent once they are finished with editing
206
     * @return moodle_url
206
     * @return moodle_url
207
     */
207
     */
208
    public function get_editor_url(moodle_url $returnurl = null) {
208
    public function get_editor_url(?moodle_url $returnurl = null) {
Línea 209... Línea 209...
209
 
209
 
Línea 210... Línea 210...
210
        $params = array('areaid' => $this->areaid);
210
        $params = array('areaid' => $this->areaid);
211
 
211
 
Línea 224... Línea 224...
224
     * and there is an area with the active grading method set to the given plugin.
224
     * and there is an area with the active grading method set to the given plugin.
225
     *
225
     *
226
     * @param settings_navigation $settingsnav {@link settings_navigation}
226
     * @param settings_navigation $settingsnav {@link settings_navigation}
227
     * @param navigation_node $node {@link navigation_node}
227
     * @param navigation_node $node {@link navigation_node}
228
     */
228
     */
229
    public function extend_settings_navigation(settings_navigation $settingsnav, navigation_node $node=null) {
229
    public function extend_settings_navigation(settings_navigation $settingsnav, ?navigation_node $node=null) {
230
        // do not extend by default
230
        // do not extend by default
231
    }
231
    }
Línea 232... Línea 232...
232
 
232
 
233
    /**
233
    /**
Línea 237... Línea 237...
237
     * FEATURE_ADVANCED_GRADING and there is an area with the active grading method set to the given plugin.
237
     * FEATURE_ADVANCED_GRADING and there is an area with the active grading method set to the given plugin.
238
     *
238
     *
239
     * @param global_navigation $navigation {@link global_navigation}
239
     * @param global_navigation $navigation {@link global_navigation}
240
     * @param navigation_node $node {@link navigation_node}
240
     * @param navigation_node $node {@link navigation_node}
241
     */
241
     */
242
    public function extend_navigation(global_navigation $navigation, navigation_node $node=null) {
242
    public function extend_navigation(global_navigation $navigation, ?navigation_node $node=null) {
243
        // do not extend by default
243
        // do not extend by default
244
    }
244
    }
Línea 245... Línea 245...
245
 
245
 
246
    /**
246
    /**