Course format plugin Picture Link was developed for Davidson Institute to allow to the teachers locate activities on background image.
Continue reading “Moodle – Course Format Picture Link”Category: Moodle
Moodle Development
[caption id="attachment_126" align="aligncenter" width="300"] Moodle Development[/caption]Moodle – How to install Moodle on Ubuntu 18.04
This post will show you how to install Moodle step by step by below details:
- OS: Ubuntu 18.04
- Web Server: Apache 2.4
- PHP 7.2
- Mysql 5.7
- Moodle 3.6
Moodle – Mysql query initiate new DB for Moodle
How to quickly create Data Base for Moodle Instance via CLI Mode (Less secure Not for Production Mode)
run: CREATE DATABASE moodle DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
//mysql 5.7 GRANT ALL PRIVILEGES ON moodle.* to 'youredbusername'@'localhost' identified by 'yourepassword';
//mysql 8 //Create User CREATE USER 'moodle'@'localhost' IDENTIFIED WITH mysql_native_password BY 'yourepassword'; //grand all permission GRANT ALL PRIVILEGES ON moodle.* TO 'moodle'@'localhost';
Moodle – Filter Team Work tutorial
This tutorial will describe how to use Team Work filter plugin in Moodle environment. Please, follow the instructions:
Download plugin with link: https://github.com/PeTeL-Weizmann/moodle-filter_teamwork
Continue reading “Moodle – Filter Team Work tutorial”Moodle -Query to change all users details
UPDATE mdl_user
SET
username=CONCAT('username',mdl_user.id),
phone1=CONCAT('11111',mdl_user.id),
phone2=CONCAT('11111',mdl_user.id),
firstname=CONCAT('Name',mdl_user.id),
lastname=CONCAT('Last',mdl_user.id),
email=CONCAT('email',mdl_user.id,'@test.com'),
idnumber= CONCAT('1000',mdl_user.id,'2000')
WHERE id>=7
Moodle – extended course format render from theme
How to customise course format from theme. Example on course format grid.
Continue reading “Moodle – extended course format render from theme”Moodle – Make backup each day on Ubuntu server
Simple Bash script to make
Moodle – Add multi-lang strings in Javascript
As we all know well, Moodle is a multilingual system which, depending on the wishes of the user, can perfectly support many languages. As a rule, when developing a new plugin, there are no big difficulties
Moodle – יצירת קורס פורמת חדש
מבוא
הקורס פורמט הוא סוג תוסף מיוחד במוודל שאחראי על פריסת מידע של הקורס במערכת moodle. דף הקורס (/course/view.php) יכול להיות במצב תצוגה ועריכה, קורס פורמט של moodle מציג פרקים, משאבים ופעילויות בצורה מוגדרת בהגדרות הקורס במערכת moodle. מנהל מערכת יכול להפעיל, לבטל או למחוק תבניות לקורסים.
Continue reading “Moodle – יצירת קורס פורמת חדש”Moodle – Create a new Course format, based on Topics
Brief about course formats in Moodle
A course format is a special type of plugin in Moodle, which is responsible for the course layout – what the course page looks like (/course/view.php) in both view and editing mode, which resources and activities must be displayed, how they are styled and in which order they are arranged, in which sections they are located etc. The basic and most popular Moodle course format is the Topics format. It is the most simple and that’s why it’s best to use it as a skeleton for the creation of a new course format.
Continue reading “Moodle – Create a new Course format, based on Topics”