\JGithubIssues
GitHub API Issues class for the Joomla Platform.
Synopsis
class JGithubIssues
extends JGithubObject
{
- // methods
- public create()
- public createComment()
- public createLabel()
- public void deleteComment()
- public deleteLabel()
- public edit()
- public editComment()
- public editLabel()
- public get()
- public getComment()
- public array getComments()
- public getLabel()
- public array getLabels()
- public array getList()
- public array getListByRepository()
- // Inherited methods from JGithubObject
- public void __construct()
- protected string fetchUrl()
- protected mixed processResponse()
Hierarchy
Extends
Tasks
Tasks
Line | Task |
---|---|
539 | Implement the filtering options. |
Members
protected
- $client — JGithubHttp
- $options — JRegistry
Methods
public
- create() — Method to create an issue.
- createComment() — Method to create a comment on an issue.
- createLabel() — Method to create a label on a repo.
- deleteComment() — Method to delete a comment on an issue.
- deleteLabel() — Method to delete a label on a repo.
- edit() — Method to update an issue.
- editComment() — Method to update a comment on an issue.
- editLabel() — Method to update a label on a repo.
- get() — Method to get a single issue.
- getComment() — Method to get a specific comment on an issue.
- getComments() — Method to get the list of comments on an issue.
- getLabel() — Method to get a specific label on a repo.
- getLabels() — Method to get the list of labels on a repo.
- getList() — Method to list an authenticated user's issues.
- getListByRepository() — Method to list issues.
Inherited from JGithubObject
protected
- fetchUrl() — Method to build and return a full request URL for the request. This method will add appropriate pagination details if necessary and also prepend the API url to have a complete URL for the request.
- processResponse() — Process the response and decode it.