Announcing Moodle LMS 4.1 – a refined user experience
Hi everyone,
I am very proud to announce the latest release of Moodle LMS 4.1!
Our latest release builds on the user experience enhancements and features of Moodle LMS 4.0, giving more possibilities to build better learning experiences and for learners to find what they want when they need it. As a Long Term Support release, Moodle LMS 4.1 also ensures security support for three years – 18 months more than the standard edition.
A smoother experience with UX enhancements
In the latest release of Moodle LMS 4.1 UX improvements have been made to Database activity, including a useful start page, an improved Image gallery preset, plus three new presets: Journal, Proposals and Resources, which can be previewed. These four ready-made presets mean that you can use and adapt one of the four on offer to fit your needs, without having to build a layout from nothing. The presets can also be previewed before use so that you can be sure it is the layout you are looking for. These UX improvements have been supported by the Moodle Users Association.
Caption: Moodle LMS 4.1 comes with four presets to use as a starting point.
UX improvements have also been made to the Gradebook to make it easier to navigate. With Moodle LMS 4.1, a new ‘Grades summary’ page has been added to provide a summary of the grade averages for each course activity and can be filtered by activity. There is an improved ‘User report’ with a more modern design and collapsible categories, and a ‘Single view report’ with improved design and the ability to simply search by user, group or grade item, and more easily do bulk actions. This allows teachers and trainers to more easily analyse the success of formative and summative assessments and inform improvements to course design.
Caption: The new ‘Grades summary’ page provides a summary of the grade averages for each course activity.
Maximising the use of BigBlueButton
Moodle LMS 4.1 also includes improvements to BigBlueButton, the open source virtual classroom integrated into Moodle as a standard feature, including the ability to invite external guests to a BigBlueButton video conferencing session.
Improving the text editor
In Moodle LMS 4.1, TinyMCE 6 is included as an additional text editor, alongside the standard Atto editor. TinyMCE 6 is a modern and intuitive text editor that is accessible and offers an improved user experience.
Caption: TinyMCE 6 is included as an additional editor alongside the standard Atto editor.
Manage and collaborate with ease using the Moodle Question bank
Moodle LMS 4.1 features improvements to the Question bank features, making it easier for teachers and course creators to manage and collaborate on quiz questions. These improvements include inline editing of the question title, a new “Modified by” column to see who modified a question, and a new “Last used” column to see when a question was last attempted by a student.
More control over custom report settings
Custom reports now include a number of new useful report sources, including Badges, Comments, Notes, Course participants, Blogs, and Files. There is a new custom report settings page, allowing the admin to limit the number of reports and disable live editing.
Other key improvements
More helpful additions in the Moodle LMS 4.1 release include:
- Profiles can now display the user’s timezone.
- The grading scale can now have additional letters, going beyond the previous limit of fourteen.
- Completion reports include custom profile fields and the time of completion.
- A new admin setting to control the availability of the “Contact site support” form.
Find out more about Moodle LMS 4.1 and watch our short videos on Database activity, the Gradebook and Customer reports.
Enjoy!
Marie
#! code: Drupal 9: Extending Drupal Base Classes Without Overriding Constructors
I have been using the Drupal dependency injection system for a while now, even giving talks and writing articles on the subject. As the release of Drupal 10 is just around the corner I have been thinking more about how to override dependencies to plugin classes.
I wanted to share a trick to overriding dependency injection that will make your life easier. The Drupal codebase itself does not use this trick, but it seems that many contributed modules have started to use this trick to create plugin classes.
In this article I will go through how to add dependency injection to Drupal classes in two different patterns.
The first pattern will create problems and will require quite a bit more typing and repeating of code. The second pattern is much easier to use and will make life easier going forward.
An Example Block
The following block of code shows a very basic Drupal Block class that doesn’t do anything. This will be the basis of the rest of this article.
<?php namespace DrupalmymodulePluginBlock;
use DrupalCoreBlockBlockBase;
/**
* Provides a 'TEST' block.
*
* @Block(
* id = "mymodule_block",
* label = "A testing block",
* admin_label = @Translation("A testing block"),
* )
*/
class TestBlock extends BlockBase {
/**
* {@inheritdoc}
*/
public function build() {
$build = [];
return $build;
}
}
What I am going to do with this block is inject a service to perform route matching. In Drupal there are a couple of services to do this, but I will be using the current_route_match service to look for the service.
Why curation and decentralization is better than millions of apps
Every desktop computer or mobile device comes with some form of “app
store”. There is F-Droid for Android. Debian has “software repositories”
at its core. Then there are the really big, proprietary ones: Apple App
Store and Google Play. These have millions of apps, while Debian has tens
of thousands, and F-Droid around 4,000. This statistic is commonly
mentioned when the big app stores promote themselves. When comparing by
this number, F-Droid is a tiny little blip. But really, how many apps do
you need in your app store?
Every software collection is fundamentally an act of curation. Only useful
software is included. Malicious software is filtered out. Software deemed
illegal in your jurisdiction is blocked. Any software that does not meet
the standards or terms of service is removed. In the cases of
community-curated distros like Debian or F-Droid, the contributors curate by
choosing which apps are worth their attention. There is no major end-user
software distribution that does not curate. Ideally, it is software that is
useful to you, the user. Sadly, that is often not true. Think of the
companies that prioritize surveillance
capitalism:
they include software designed to capture your attention so they can sell to
advertisers. Or some companies promise privacy protections from apps, but
then exempt their own
software
from the privacy protections.
From the point of the user, the ideal app store would contain exactly what
the user wants, and not one thing more. Nobody has millions of apps
installed on their device. All those extra apps just get in the way of
finding what is important. Even worse, in the big app stores, its not just
noise, it is
malware
or companies trying to rope you into something. They are trying to be the
flashiest thing so people click the “buy” button. Or worse, they are trying
to
addict
you so that they can sell your data to advertisers.
F-Droid is organized around different principles: user choice,
decentralization, and community-controlled curation. This means F-Droid
gives you selected apps by default without bans or censorship. When you
install the F-Droid app, it automatically connects to the collection on
f-droid.org that is maintained by this community. F-Droid also makes it
easy for anyone to publish their own repository, with their own curation
rules. Repomaker is a easy web app
for publishing, and the fdroidserver command line tools that power
f-droid.org are available for power users.
Organizing this way makes a lot of hard questions go away. Children,
hackers, religious people, grandparents, activists, bachelors, and adult
film actors; we all use calendars, read the news, need help navigating, play
games. Over the years, a rough consensus has formed within the f-droid.org
community that our collection should be curated this way. This turns out to
be quite similar to other free software communities, like Debian. This blog
post aims to make this more explicit to our users.
Every society has accepted ways to communicate about offensive things. If
f-droid.org is the one source of software, then our curation would be
censorship, since we would be preventing speech. As supporters of free
software and privacy, we also want nothing to do with censorship. That’s
where decentralization comes in. Decentralization means people can choose
who they trust in a fine-grained way, not all or nothing. We have put a lot
of work into making it easy for anyone to make their own app repos, and
those repos can follow any rules that its creators want. Since F-Droid
repos are a form of user-controlled subscription, it is not the place for
F-Droid contributors to decide. Which apps or repos an F-Droid user
includes in their own devices is entirely up to them.
One common complaint about decentralized systems is that they work badly.
That is not true for the Android app ecosystem, and software distribution in
general. Software repositories are usually not monolithic, the big mobile
app stores are really the exception. Windows allows many sources. GNOME
Software has one seamless
experience based on apt, dnf, Flatpak, Snapcraft, etc. as software
sources. In the Chinese app store
market
five to ten commonly used app stores, and yet even the largest has less than
a majority market share. Most Chinese people have more than one app store
on their phone, so there is no monolith there, whereas “outside of China,
Apple and Google control more than 95 percent of the app store market
share”. Ecosystems with
multiple app sources work, and governments around the world believe that
monopoly
forces
are
what
keeps
Google
Play
and
Apple
App
Store
dominant. Even Apple’s famous strictly walled garden can coexist with
AltStore, AppFair, and
Cydia. This clearly demonstrates that the only
barrier to breaking down the app monoliths are the policies of monopolist
companies.
The point remains: for the vast majority of Apple iOS and Google Play device
users, when the store removes or restricts an app it is essentially
censorship. Using alternatives requires a high level of technical skill.
Google Play devices at least allow third party app stores, albeit with a
much lower level of integration than Google Play itself. Not only does
F-Droid offer truly open app distribution, the F-Droid model offers an
improved user experience: many decentralized app repositories can be managed
in a single F-Droid client app. So there is the ease of use provided by a
unified user experience, but it is not locked to a single provider. Only
when there is a free, open, decentralized ecosystem can everyone decide for
themselves what apps they want while also choosing which apps they do not
want to see. The freedom to get apps will always be in tension with the
things that people want to keep out of their life. Decentralization is the
only solution, and F-Droid is built from the ground up to enable it.
Beautiful Hand embroidery Flower Design Amazing Flower Embroidery Easy Needle Work by Crafty Stitch
Video by via Dailymotion Source Welcome Back To Crafty Stitch Channel… Today I’ll show you How To Make Beautiful Hand Embroidery Flower Designs Amazing Flower Embroidery Easy Needle Work by Crafty Stitch 2nd Channel Link:https://www.youtube.com/channel/UCxaow8QA8qE5AUrzFSOxyQQ Note: Subscribe to This Channel To get More Video About All Types of… Crafts Paper Flowers Ice Cream Stick Craft…
Mutalbaat e Quran – Demands Of Quran – Shuja Shuja uddin Sheikh – 27th November 2022 – ARY Qtv
Video by via Dailymotion Source Mutalbaat e Quran – Demands Of Quran – Shuja Shuja uddin Sheikh Subscribe Here: https://bit.ly/3dh3Yj1 Mutalbaat e Quran – Demands Of Quran | Host: Shuja Uddin Sheikh #ShujaUddinSheikh #MutalbaateQuran #DemandsOfQuran #ARYQtv Official Facebook: https://www.facebook.com/ARYQTV/Official Website: https://aryqtv.tv/Watch ARY Qtv Live: http://live.aryqtv.tv/Programs Schedule: https://aryqtv.tv/schedule/Islamic Information: https://bit.ly/2MfIF4PAndroid App: https://bit.ly/33wgto4Ios App: https: https://apple.co/2v3zoXW Go…