.. | ||
code.php | ||
code.power | ||
README.md | ||
settings.json |
██████╗ ██████╗ ██╗ ██╗███████╗██████╗
██╔══██╗██╔═══██╗██║ ██║██╔════╝██╔══██╗
██████╔╝██║ ██║██║ █╗ ██║█████╗ ██████╔╝
██╔═══╝ ██║ ██║██║███╗██║██╔══╝ ██╔══██╗
██║ ╚██████╔╝╚███╔███╔╝███████╗██║ ██║
╚═╝ ╚═════╝ ╚══╝╚══╝ ╚══════╝╚═╝ ╚═╝
class Issue (Details)
namespace: VDM\Joomla\Gitea extends: Api
@startuml
class Issue #Gold {
+ list(string $owner, string $repo, ...) : ?array
+ get(string $owner, string $repo, ...) : ?object
+ create(string $owner, string $repo, ...) : ?object
+ search(string $q, int $page = 1, ...) : ?array
+ edit(string $owner, string $repo, ...) : ?object
+ delete(string $owner, string $repo, ...) : string
}
note right of Issue::list
List a repository's issues.
since: 3.2.0
return: ?array
arguments:
string $owner
string $repo
string $state = 'open'
int $page = 1
int $limit = 10
?string $labels = null
?string $q = null
?string $type = null
?string $milestones = null
?string $since = null
?string $before = null
?string $createdBy = null
?string $assignedBy = null
?string $mentionedBy = null
end note
note right of Issue::get
Get an issue.
since: 3.2.0
return: ?object
arguments:
string $owner
string $repo
int $index
end note
note right of Issue::create
Create an issue. If using deadline only the date will be taken into account, and time of day ignored.
since: 3.2.0
return: ?object
arguments:
string $owner
string $repo
string $issueTitle
?array $assignees = null
?string $issueBody = null
?bool $closed = null
?string $dueDate = null
?array $labelIds = null
?int $milestoneId = null
end note
note right of Issue::search
Search for issues across the repositories that the user has access to.
since: 3.2.0
return: ?array
arguments:
string $q
int $page = 1
int $limit = 10
?string $state = 'open'
?string $labels = null
?string $milestones = null
?int $priorityRepoId = null
?string $type = null
?string $since = null
?string $before = null
?bool $assigned = null
?bool $created = null
?bool $mentioned = null
?bool $reviewRequested = null
?string $owner = null
?string $team = null
end note
note right of Issue::edit
Edit an issue.
since: 3.2.0
return: ?object
arguments:
string $owner
string $repo
int $index
?string $assignee = null
?array $assignees = null
?string $body = null
?string $dueDate = null
?int $milestone = null
?string $ref = null
?string $state = null
?string $title = null
?bool $unsetDueDate = null
end note
note right of Issue::delete
Delete an issue.
since: 3.2.0
return: string
arguments:
string $owner
string $repo
int $index
end note
@enduml
The Power feature in JCB allows you to write PHP classes and their implementations, making it easy to include them in your Joomla project. JCB handles linking, autoloading, namespacing, and folder structure creation for you.
By using the SPK (Super Power Key) in your custom code (replacing the class name in your code with the SPK), JCB will automatically pull the power from the repository into your project. This makes it available in your JCB instance, allowing you to edit it and include the class in your generated Joomla component.
JCB uses placeholders like [[[NamespacePrefix
]]] and [[[ComponentNamespace
]]] in namespacing to prevent collisions and improve reusability across different JCB systems. You can also set the JCB powers path globally or per component under the Dynamic Integration tab, providing flexibility and easy maintainability.
To add this specific Power to your project in JCB:
simply use this SPK
Super---5c8f9038_d6e9_4788_96df_45019eafbadb---Power
remember to replace the
---
with___
to activate this Power in your code
██╗ ██████╗██████╗
██║██╔════╝██╔══██╗
██║██║ ██████╔╝
██ ██║██║ ██╔══██╗
╚█████╔╝╚██████╗██████╔╝
╚════╝ ╚═════╝╚═════╝
Build with Joomla Component Builder