Blame view

sources/apps/activity/README.md 1.48 KB
6d9380f96   Cédric Dupont   Update sources OC...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
  # ownCloud Activity App
  
  The activity app for ownCloud
  
  Provides an activity feed showing your file changes and other interesting things
  going on in your ownCloud.
  
  ## QA metrics on master branch:
  
  [![Build Status](https://travis-ci.org/owncloud/activity.svg?branch=master)](https://travis-ci.org/owncloud/activity)
  
  [![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/owncloud/activity/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/owncloud/activity/?branch=master)
  
  [![Code Coverage](https://scrutinizer-ci.com/g/owncloud/activity/badges/coverage.png?b=master)](https://scrutinizer-ci.com/g/owncloud/activity/?branch=master)
  
  ## QA metrics on stable7 branch:
  
  [![Build Status](https://travis-ci.org/owncloud/activity.svg?branch=stable7)](https://travis-ci.org/owncloud/activity)
  
  [![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/owncloud/activity/badges/quality-score.png?b=stable7)](https://scrutinizer-ci.com/g/owncloud/activity/?branch=master)
  
  [![Code Coverage](https://scrutinizer-ci.com/g/owncloud/activity/badges/coverage.png?b=stable7)](https://scrutinizer-ci.com/g/owncloud/activity/?branch=master)
  
  # Add new activities / types for other apps
  
  With the activity manager extensions can be registered which allow any app to extend the activity behavior.
  
  In order to implement an extension create a class which implements the interface `\OCP\Activity\IExtension`.
  
  The PHPDoc comments on each method should give enough information to the developer on how to implement them.