Skip to content

Commit

Permalink
attribution stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
cliffcaseyyet committed Oct 24, 2024
1 parent 6fa074a commit 1b44482
Show file tree
Hide file tree
Showing 13 changed files with 20 additions and 30 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.

/**
* Transform for the forum discussion viewed event.
* Transform for the forum discussion subscribed event.
*
* @package logstore_xapi
* @copyright Cliff Casey <[email protected]>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.

/**
* Transform for the forum discussion viewed event.
* Transform for the forum discussion unsubscribed event.
*
* @package logstore_xapi
* @copyright Cliff Casey <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion src/transformer/events/mod_forum/post_deleted.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.

/**
* Transform for the forum post created event.
* Transform for the forum post deleted event.
*
* @package logstore_xapi
* @copyright Cliff Casey <[email protected]>
Expand Down
4 changes: 2 additions & 2 deletions src/transformer/events/mod_forum/post_updated.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.

/**
* Transform for the forum post created event.
* Transform for the forum post updated event.
*
* @package logstore_xapi
* @copyright Cliff Casey <[email protected]>
Expand All @@ -27,7 +27,7 @@
use src\transformer\utils as utils;

/**
* Transformer for forum post created event.
* Transformer for forum post updated event.
*
* @param array $config The transformer config settings.
* @param \stdClass $event The event to be transformed.
Expand Down
4 changes: 2 additions & 2 deletions src/transformer/events/mod_forum/subscription_created.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.

/**
* Transform for the forum discussion viewed event.
* Transform for the forum subscribed event.
*
* @package logstore_xapi
* @copyright Cliff Casey <[email protected]>
Expand All @@ -27,7 +27,7 @@
use src\transformer\utils as utils;

/**
* Transformer for forum subscribed.
* Transformer for forum subscribed event.
*
* @param array $config The transformer config settings.
* @param \stdClass $event The event to be transformed.
Expand Down
4 changes: 2 additions & 2 deletions src/transformer/events/mod_forum/subscription_deleted.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.

/**
* Transform for the forum discussion viewed event.
* Transform for the forum unsubscribed event.
*
* @package logstore_xapi
* @copyright Cliff Casey <[email protected]>
Expand All @@ -27,7 +27,7 @@
use src\transformer\utils as utils;

/**
* Transformer for forum unsubscribed.
* Transformer for forum unsubscribed event.
*
* @param array $config The transformer config settings.
* @param \stdClass $event The event to be transformed.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
* @copyright Jerret Fowler <[email protected]>
* Ryan Smith <https://www.linkedin.com/in/ryan-smith-uk/>
* David Pesce <[email protected]>
* Cliff Casey <[email protected]>
* @license https://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
class discussion_created_test extends \logstore_xapi\xapi_test_case {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,10 @@
require_once($CFG->dirroot . '/admin/tool/log/store/xapi/tests/xapi_test_case.php');

/**
* Unit test for mod_forum discussion created event.
* Unit test for mod_forum discussion subscribed event.
*
* @package logstore_xapi
* @copyright Jerret Fowler <[email protected]>
* Ryan Smith <https://www.linkedin.com/in/ryan-smith-uk/>
* David Pesce <[email protected]>
* @copyright Cliff Casey <[email protected]>
* @license https://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
class discussion_subscription_created_test extends \logstore_xapi\xapi_test_case {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
require_once($CFG->dirroot . '/admin/tool/log/store/xapi/tests/xapi_test_case.php');

/**
* Unit test for mod_forum discussion created event.
* Unit test for mod_forum discussion unsubscribed event.
*
* @package logstore_xapi
* @copyright Cliff Casey <[email protected]>
Expand Down
5 changes: 1 addition & 4 deletions tests/mod_forum/post_deleted/post_deleted_test.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,7 @@
* Unit test for mod_forum post deleted event.
*
* @package logstore_xapi
* @copyright Jerret Fowler <[email protected]>
* Ryan Smith <https://www.linkedin.com/in/ryan-smith-uk/>
* David Pesce <[email protected]>
* Cliff Casey <[email protected]>
* @copyright Cliff Casey <[email protected]>
* @license https://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
class post_deleted_test extends \logstore_xapi\xapi_test_case {
Expand Down
6 changes: 2 additions & 4 deletions tests/mod_forum/post_updated/post_updated_test.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,9 @@
/**
* Unit test for mod_forum post updated event.
*
*
* @package logstore_xapi
* @copyright Jerret Fowler <[email protected]>
* Ryan Smith <https://www.linkedin.com/in/ryan-smith-uk/>
* David Pesce <[email protected]>
* Cliff Casey <[email protected]>
* @copyright Cliff Casey <[email protected]>
* @license https://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
class post_updated_test extends \logstore_xapi\xapi_test_case {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,10 @@
require_once($CFG->dirroot . '/admin/tool/log/store/xapi/tests/xapi_test_case.php');

/**
* Unit test for mod_forum discussion created event.
* Unit test for mod_forum forum subscribed event.
*
* @package logstore_xapi
* @copyright Jerret Fowler <[email protected]>
* Ryan Smith <https://www.linkedin.com/in/ryan-smith-uk/>
* David Pesce <[email protected]>
* @copyright Cliff Casey <[email protected]>
* @license https://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
class subscription_created_test extends \logstore_xapi\xapi_test_case {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,10 @@
require_once($CFG->dirroot . '/admin/tool/log/store/xapi/tests/xapi_test_case.php');

/**
* Unit test for mod_forum discussion created event.
* Unit test for mod_forum forum unsubscribed event.
*
* @package logstore_xapi
* @copyright Jerret Fowler <[email protected]>
* Ryan Smith <https://www.linkedin.com/in/ryan-smith-uk/>
* David Pesce <[email protected]>
* @copyright Cliff Casey <[email protected]>
* @license https://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
class subscription_deleted_test extends \logstore_xapi\xapi_test_case {
Expand Down

0 comments on commit 1b44482

Please sign in to comment.