Proyectos de Subversion Moodle

Rev

Rev 1 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 1 Rev 1441
Línea 47... Línea 47...
47
     * @param int           $limitnum        Return at most this many results.
47
     * @param int           $limitnum        Return at most this many results.
48
     * @param bool          $ignorehidden    True to ignore hidden events. False to include them.
48
     * @param bool          $ignorehidden    True to ignore hidden events. False to include them.
49
     * @return \stdClass[] Array of event records.
49
     * @return \stdClass[] Array of event records.
50
     */
50
     */
51
    public function get_raw_events(
51
    public function get_raw_events(
52
        array $usersfilter = null,
52
        ?array $usersfilter = null,
53
        array $groupsfilter = null,
53
        ?array $groupsfilter = null,
54
        array $coursesfilter = null,
54
        ?array $coursesfilter = null,
55
        array $categoriesfilter = null,
55
        ?array $categoriesfilter = null,
56
        array $whereconditions = null,
56
        ?array $whereconditions = null,
57
        array $whereparams = null,
57
        ?array $whereparams = null,
58
        $ordersql = null,
58
        $ordersql = null,
59
        $offset = null,
59
        $offset = null,
60
        $limitnum = 40,
60
        $limitnum = 40,
61
        $ignorehidden = true
61
        $ignorehidden = true
62
    );
62
    );