Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
/**
2
 * The notification module provides a standard set of dialogues for use
3
 * within Moodle.
4
 *
5
 * @module moodle-core-notification
6
 * @main
7
 */
8
 
9
/**
10
 * To avoid bringing moodle-core-notification into modules in it's
11
 * entirety, we now recommend using on of the subclasses of
12
 * moodle-core-notification. These include:
13
 * <dl>
14
 *  <dt> moodle-core-notification-dialogue</dt>
15
 *  <dt> moodle-core-notification-alert</dt>
16
 *  <dt> moodle-core-notification-confirm</dt>
17
 *  <dt> moodle-core-notification-exception</dt>
18
 *  <dt> moodle-core-notification-ajaxexception</dt>
19
 * </dl>
20
 *
21
 * @class M.core.notification
22
 * @deprecated
23
 */
24
Y.log("The moodle-core-notification parent module has been deprecated. " +
25
        "Please use one of its subclasses instead.", 'moodle-core-notification', 'warn');