SmartAdmin for laravel framework for fast database representation as RESTfull.
SmartAdmin – more than a simple admin panel.
Month: November 2018
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”WordPress – גיבוי אוטומטי למערכת וורדפרס בשרת ubuntu
סקריפט מאפשר לשמור גיבוי של קבצים ומסד נתונים למערכת וורדפרס בצורה אוטומטית במשך 7 ימים בשרת Ubuntu
Continue reading “WordPress – גיבוי אוטומטי למערכת וורדפרס בשרת ubuntu”WordPress – Make backup each day on Ubuntu Server
A simple script to backup WordPress each day on an Ubuntu server and keep it for 7 days
Continue reading “WordPress – Make backup each day on Ubuntu Server”Moodle – קידוד הנכון לכתיבת קוד ב-php במערכת מודל
רשימת הטעויות הנפוצות ביותר בכתיבת קוד ב-Moodle.
שמות הנכונים להגדרת פרמטרים
//BED $Userid, $course_id, $ModuleCourseid //GOOD $userid, $courseid, $modulecourseid, $param1, $parm2 ..
Continue reading “Moodle – קידוד הנכון לכתיבת קוד ב-php במערכת מודל”
Moodle – Code Styling for PHP
List of rules for proper development in the Moodle environment
Naming of parameters (do not use “_” or uppercase)
//BED $Userid, $course_id, $ModuleCourseid //GOOD $userid, $courseid, $modulecourseid, $param1, $parm2 ..
Moodle – Code Styling for PHP
List of rules for proper development in the Moodle environment
Naming of parameters (do not use “_” or uppercase)
//BED $Userid, $course_id, $ModuleCourseid //GOOD $userid, $courseid, $modulecourseid, $param1, $parm2 ..
GIT – Global configuration on server
List of common orders to use git in a different way
Moodle – How to make a test course in CLI mode
The fast way to define test course Moodle using CLI Screen
The fastest way to define a test course Moodle using the CLI Screen
php admin/tool/generator/cli/maketestcourse.php --shortname=Course1 --fullname=Course1 --size=S
–size=S – under a 100 users in the course
–size=M – under a 1000 users in the course
add default password for all test students, write it in config.php:
$CFG->tool_generator_users_password='Yorepassword1!';