This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Aleshores vaig a tasques | |
Captura de Pantalla 2019-01-09 a les 15.03.15.png | |
i veig que fa un dia que no s'executa la d'enviament del fòrum (https://hubbik.elearnlab.org/admin/tool/task/scheduledtasks.php) | |
Aleshroes em connecto per SSH | |
sudo su | |
/usr/bin/php /var/www/html/moodle/admin/tool/task/cli/schedule_task.php --execute='\mod_forum\task\cron_task' | |
Retorna error "Cannot obtain task lock" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Añadir columna 'user id' en /admin/user.php | |
1) | |
$CFG->showuseridentity = 'id'; | |
ó | |
2) | |
$table->head[] = 'Id'; | |
$row[] = $user->id; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* @package local_wpsso | |
* @copyright 2018 Raúl Martínez <[email protected]> | |
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | |
*/ | |
require('../../config.php'); | |
require_once("$CFG->dirroot/group/lib.php"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Marcar check en 'Depurando': mostrar origen de cadenas | |
Pasarle a una URL ?strings=1 para ver origen | |
Desactivar en producción |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
mkdir $1 | |
cd $1 | |
wp core download # DescargaR el último WordPress | |
wp config create --dbname=$1 --dbuser=root --dbpass=root --locale=es_ES --force # Crear wp-config | |
wp db create # Crea la base de datos | |
wp core install --url="http://localhost/$1/" --title="$2" --admin_user="admin_$1" --admin_password="martin82" --admin_email="[email protected]" # Instalar WordPress | |
wp scaffold child-theme $1-child --parent_theme=twentyseventeen # Crear child-theme | |
wp theme activate $1-child # Activa el child-theme | |
wp plugin uninstall hello # Elimina 'Hello Dolly' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$name = $mform->get_new_filename('prizeimage'); | |
$mform->save_stored_file('prizeimage', | |
context_system::instance()->id, | |
'fpa', | |
'prizeimage', | |
$USER->id, | |
'/', | |
$name, | |
true); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$plugin_instance = $DB->get_record("enrol", array('courseid' => $courseid, 'enrol'=>'manual')); | |
$plugin = enrol_get_plugin('manual'); | |
$roleid = $DB->get_field('role', 'id', array('shortname' => 'student')); | |
$plugin->enrol_user($plugin_instance, $userid, $roleid); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// local/altamarimport/db/events.php | |
// This file is part of Moodle - http://moodle.org/ | |
// | |
// Moodle is free software: you can redistribute it and/or modify | |
// it under the terms of the GNU General Public License as published by | |
// the Free Software Foundation, either version 3 of the License, or | |
// (at your option) any later version. | |
// | |
// Moodle is distributed in the hope that it will be useful, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$record = new StdClass(); | |
$record->course = $courseid; | |
$record->contextid = $usercontextid; | |
$record->userid = $USER->id; | |
$record->component = 'user'; | |
$record->filearea = 'draft'; | |
$record->itemid = $draftitemid; | |
$record->filename = $scormFilename; | |
$record->filepath = '/'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$quizdata->completion = 2; | |
$quizdata->completionview = 1; // Requerir ver la actividad (para URL, SCORMS...) | |
$quizdata->completionexpected = 0; | |
$quizdata->completionusegrade = 1; // Requerir recibir nota (para Quizzes, Assigns...) |
NewerOlder