123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354 |
- <?php
- function row_to_elggannotation($row) {
- if (!($row instanceof \stdClass)) {
-
- return $row;
- }
- return new \ElggAnnotation($row);
- }
- function elgg_get_annotation_from_id($id) {
- return _elgg_services()->annotations->get($id);
- }
- function elgg_delete_annotation_by_id($id) {
- return _elgg_services()->annotations->delete($id);
- }
- function create_annotation($entity_guid, $name, $value, $value_type = '',
- $owner_guid = 0, $access_id = ACCESS_PRIVATE) {
- return _elgg_services()->annotations->create(
- $entity_guid, $name, $value, $value_type, $owner_guid, $access_id);
- }
- function update_annotation($annotation_id, $name, $value, $value_type, $owner_guid, $access_id) {
- return _elgg_services()->annotations->update($annotation_id, $name, $value, $value_type, $owner_guid, $access_id);
- }
- function elgg_get_annotations(array $options = array()) {
- return _elgg_services()->annotations->find($options);
- }
- function elgg_list_annotations($options) {
- $defaults = array(
- 'limit' => 25,
- 'offset' => (int) max(get_input('annoff', 0), 0),
- 'no_results' => '',
- );
- $options = array_merge($defaults, $options);
- return elgg_list_entities($options, 'elgg_get_annotations', 'elgg_view_annotation_list');
- }
- function elgg_delete_annotations(array $options) {
- return _elgg_services()->annotations->deleteAll($options);
- }
- function elgg_disable_annotations(array $options) {
- return _elgg_services()->annotations->disableAll($options);
- }
- function elgg_enable_annotations(array $options) {
- return _elgg_services()->annotations->enableAll($options);
- }
- function elgg_get_entities_from_annotations(array $options = array()) {
- return _elgg_services()->annotations->getEntities($options);
- }
- function elgg_list_entities_from_annotations($options = array()) {
- return elgg_list_entities($options, 'elgg_get_entities_from_annotations');
- }
- function elgg_get_entities_from_annotation_calculation($options) {
- return _elgg_services()->annotations->getEntitiesFromCalculation($options);
- }
- function elgg_list_entities_from_annotation_calculation($options) {
- $defaults = array(
- 'calculation' => 'sum',
- 'order_by' => 'annotation_calculation desc'
- );
- $options = array_merge($defaults, $options);
- return elgg_list_entities($options, 'elgg_get_entities_from_annotation_calculation');
- }
- function elgg_annotation_exists($entity_guid, $annotation_type, $owner_guid = null) {
- return _elgg_services()->annotations->exists($entity_guid, $annotation_type, $owner_guid);
- }
- function _elgg_set_comment_url($hook, $type, $url, $params) {
- $annotation = $params['extender'];
-
- if ($annotation->getSubtype() == 'generic_comment') {
- $entity = $annotation->getEntity();
- if ($entity) {
- return $entity->getURL() . '#item-annotation-' . $annotation->id;
- }
- }
- }
- function _elgg_annotations_test($hook, $type, $tests) {
- global $CONFIG;
- $tests[] = $CONFIG->path . 'engine/tests/ElggCoreAnnotationAPITest.php';
- $tests[] = $CONFIG->path . 'engine/tests/ElggAnnotationTest.php';
- return $tests;
- }
- function _elgg_annotations_init() {
- elgg_register_plugin_hook_handler('extender:url', 'annotation', '_elgg_set_comment_url');
- elgg_register_plugin_hook_handler('unit_test', 'system', '_elgg_annotations_test');
- }
- return function(\Elgg\EventsService $events, \Elgg\HooksRegistrationService $hooks) {
- $events->registerHandler('init', 'system', '_elgg_annotations_init');
- };
|