Re: What funtions have i to edit to show categories in my/index.php?
by Rajesh Taneja. You need to modify block_course_overview_renderer::course_overview() in blocks/course_overview/renderer.php which is being called from block_course_overview::get_content() in...
View ArticleRe: DB SQL Queries
by Rami Zaitoun. Appreciate your help and assistance. Thank you so much
View ArticleRe: DB SQL Queries
by Joseph Rézeau. Rami, if you appreciate Alan's help, do rate his reply as Useful!
View ArticleWhich table relates the course and the users enrolled ?
by Borislav Banchev. Hello everybody !I'm trying to figure out in which table is the relationship between the course and the user/users enrolled in the course? I would like to check whether particular...
View ArticleRe: Which table relates the course and the users enrolled ?
by Davo Smith. mdl_enrol - connects a course to a particular enrolment plugin instancemdl_user_enrolments - connects a user to a enrolment plugin instanceYou need to use both together to connect a...
View ArticleRe: What funtions have i to edit to show categories in my/index.php?
by Jesus Francisco Sanchez Franco. Thank you so much Rajesh!!!!The main problem that i find in moodle development is to know where is the diferent objects defined.A arquitecture guide made by the...
View ArticleRe: Which table relates the course and the users enrolled ?
by Borislav Banchev. So checkingmdl_course.id = mdl_enrol.courseid and mdl_enrol.id = mdl_user_enrolment.enrolid and mdl_user_enrolment.userid = mdl_user.id is enough for user to be enrolled in a...
View ArticleRe: Which table relates the course and the users enrolled ?
by Davo Smith. That looks about right - I'd have to type it into a DB to be completely certain.
View ArticleRe: Writing Moodle's Course Search plugin
by Shashikant Vaishnav. Hi Brian,yah ! You can look over the initial code pushed on my public repository[1]. I will suggest to have a look over the doc specification[2] that will clear out why Apache...
View ArticleRe: Which table relates the course and the users enrolled ?
by Rex Lorenzo. Well, not necessarily true. There are some fields in the user_enrolments table that you need to also check. If the status is 0, the enrolment is active, but 1 means suspended. Then...
View ArticleFW logo - html link not connecting
by Jim Becker. I am using Moodle 2.5. We have selected the theme Formal White and have inputed the http location for our logo which isper the instructions given in the theme settings. It didn't take,...
View ArticleRe: FW logo - html link not connecting
by Richard Crawford. When you say you cleared out the cache, I assume you meant your browser's cache.Is it possible that the old logo is stuck in Moodle's cache? Try this:Site administration ->...
View ArticleRe: FW logo - html link not connecting
by Shashikant Vaishnav. Hi jim, I just made a try to put your logo in Formal White theme with the link and its work fine.If you will look over the source. The theme...
View Articlepost beginner API Moodle 2
by stephane ng. Hi all,I have my owned script LDAP,and I whant enrol members student and teacher automatical with LDAP.I want create in folder moodle/myScript form only my work coding.How i can't...
View ArticleRe: Databases: replace.php - error in mdl_pma_history table
by Dan Jackson. I'm receiving this exact same error when trying to upgrade from 1.9.7 to 2.2:UPDATE mdl_pma_history SET table = REPLACE(table, ?, ?) [array ( 0 => 'moodle.longroad.ac.uk', 1 =>...
View ArticleBulk course creation, adding meta enrolment
by Peter Kemp. Hi,I have the bulk course creator working well (https://github.com/piersharding/moodle-tool_uploadcourse), only problem is I can't work out the format to use a metacourse enrolment...
View ArticleRe: Databases: replace.php - error in mdl_pma_history table
by Dan Jackson. I investigated this a bit further using the Moodle Adminer plugin. 'table' is a reserved word in SQL, and as the query does not quote it, a syntax error is being returned. It's...
View Articlenew page in local plugin
by Michael Hamburger. Hi, right now I am writing a local plugin which extends the course-administration. The new page (like overview.php) which can be opened via the new course-administration-link...
View ArticleDevelopping specific display for some courses
by Al Jax. Hi everydoby,I've searched in many ways to try to do what I want but it seems to be a perfect failure... I will try to explain my needs.I want to create a special display for some courses...
View Article