Skip to content

Commit

Permalink
set mod_ratingallocate for all first levels in namespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
irinahpe committed Mar 6, 2024
1 parent 6065d99 commit 23bff77
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion db/db_structure.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/

namespace ratingallocate\db;
namespace mod_ratingallocate\db;

defined('MOODLE_INTERNAL') || die();
class ratingallocate {
Expand Down
2 changes: 1 addition & 1 deletion strategy/strategy01_yes_no.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/

namespace ratingallocate\strategy_yesno;
namespace mod_ratingallocate\strategy_yesno;

defined('MOODLE_INTERNAL') || die();
require_once($CFG->libdir . '/formslib.php');
Expand Down
2 changes: 1 addition & 1 deletion strategy/strategy02_yes_maybe_no.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
*/

// Namespace is mandatory!
namespace ratingallocate\strategy_yesmaybeno;
namespace mod_ratingallocate\strategy_yesmaybeno;

defined('MOODLE_INTERNAL') || die();
require_once($CFG->libdir . '/formslib.php');
Expand Down
2 changes: 1 addition & 1 deletion strategy/strategy03_lickert.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
*/

// Namespace is mandatory!
namespace ratingallocate\strategy_lickert;
namespace mod_ratingallocate\strategy_lickert;

defined('MOODLE_INTERNAL') || die();
require_once($CFG->libdir . '/formslib.php');
Expand Down
2 changes: 1 addition & 1 deletion strategy/strategy04_points.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
*/

// Namespace is mandatory!
namespace ratingallocate\strategy_points;
namespace mod_ratingallocate\strategy_points;

defined('MOODLE_INTERNAL') || die();
require_once($CFG->libdir . '/formslib.php');
Expand Down
2 changes: 1 addition & 1 deletion strategy/strategy05_order.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
// Namespace is mandatory!
namespace ratingallocate\strategy_order;
namespace mod_ratingallocate\strategy_order;

defined('MOODLE_INTERNAL') || die();
require_once($CFG->libdir . '/formslib.php');
Expand Down
2 changes: 1 addition & 1 deletion strategy/strategy06_tickyes.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
*/

// Namespace is mandatory!
namespace ratingallocate\strategy_tickyes;
namespace mod_ratingallocate\strategy_tickyes;

defined('MOODLE_INTERNAL') || die();
require_once($CFG->libdir . '/formslib.php');
Expand Down

0 comments on commit 23bff77

Please sign in to comment.