Joomla CMS  3.10.11 (avec JPlatform 13.1 inclus)
Documentation des API du CMS Joomla en version 3.10.11 et du framework Joomla Platform intégré
Référence de la classe JGithubPackageGists
+ Graphe d'héritage de JGithubPackageGists:

Fonctions membres publiques

 create ($files, $public=false, $description=null)
 
 delete ($gistId)
 
 edit ($gistId, $files=null, $public=null, $description=null)
 
 fork ($gistId)
 
 get ($gistId)
 
 getList ($page=0, $limit=0)
 
 getListByUser ($user, $page=0, $limit=0)
 
 getListPublic ($page=0, $limit=0)
 
 getListStarred ($page=0, $limit=0)
 
 isStarred ($gistId)
 
 star ($gistId)
 
 unstar ($gistId)
 
 createComment ($gistId, $body)
 
 deleteComment ($commentId)
 
 editComment ($commentId, $body)
 
 getComment ($commentId)
 
 getComments ($gistId, $page=0, $limit=0)
 
- Fonctions membres publiques hérités de JGithubPackage
 __get ($name)
 
- Fonctions membres publiques hérités de JGithubObject
 __construct (Registry $options=null, JGithubHttp $client=null)
 

Fonctions membres protégées

 buildFileData (array $files)
 
- Fonctions membres protégées hérités de JGithubObject
 fetchUrl ($path, $page=0, $limit=0)
 
 processResponse (JHttpResponse $response, $expectedCode=200, $decode=true)
 

Attributs protégés

 $name = 'Gists'
 
 $packages
 
- Attributs protégés hérités de JGithubPackage
 $name = ''
 
 $packages = array()
 
- Attributs protégés hérités de JGithubObject
 $options
 
 $client
 

Documentation des fonctions membres

◆ buildFileData()

buildFileData ( array  $files)
protected

Method to fetch a data array for transmitting to the GitHub API for a list of files based on an input array of file paths or filename and content pairs.

Paramètres
array$filesThe list of file paths or filenames and content.
Exceptions
InvalidArgumentException
Depuis
1.7.3
Renvoie
array

Références $data, $file, $files, $key, et elseif.

◆ create()

create (   $files,
  $public = false,
  $description = null 
)

Method to create a gist.

Paramètres
mixed$filesEither an array of file paths or a single file path as a string.
boolean$publicTrue if the gist should be public.
string$descriptionThe optional description of the gist.
Exceptions
DomainException
Depuis
1.7.3
Renvoie
object

Références $data, $description, $files, $path, et json_encode.

◆ createComment()

createComment (   $gistId,
  $body 
)

Method to create a comment on a gist.

Paramètres
integer$gistIdThe gist number.
string$bodyThe comment body text.
Obsolète:
use gists->comments->create()
Renvoie
object
Depuis
1.7.3

◆ delete()

delete (   $gistId)

Method to delete a gist.

Paramètres
integer$gistIdThe gist number.
Exceptions
DomainException
Depuis
1.7.3
Renvoie
void

Références $path.

◆ deleteComment()

deleteComment (   $commentId)

Method to delete a comment on a gist.

Paramètres
integer$commentIdThe id of the comment to delete.
Obsolète:
use gists->comments->delete()
Renvoie
void
Depuis
1.7.3

◆ edit()

edit (   $gistId,
  $files = null,
  $public = null,
  $description = null 
)

Method to update a gist.

Paramètres
integer$gistIdThe gist number.
mixed$filesEither an array of file paths or a single file path as a string.
boolean$publicTrue if the gist should be public.
string$descriptionThe description of the gist.
Exceptions
DomainException
Depuis
1.7.3
Renvoie
object

Références $data, $description, $files, $path, et json_encode.

◆ editComment()

editComment (   $commentId,
  $body 
)

Method to update a comment on a gist.

Paramètres
integer$commentIdThe id of the comment to update.
string$bodyThe new body text for the comment.
Obsolète:
use gists->comments->edit()
Renvoie
object
Depuis
1.7.3

◆ fork()

fork (   $gistId)

Method to fork a gist.

Paramètres
integer$gistIdThe gist number.
Exceptions
DomainException
Depuis
1.7.3
Renvoie
object

Références $path.

◆ get()

get (   $gistId)

Method to get a single gist.

Paramètres
integer$gistIdThe gist number.
Exceptions
DomainException
Depuis
1.7.3
Renvoie
object

Références $path.

◆ getComment()

getComment (   $commentId)

Method to get a specific comment on a gist.

Paramètres
integer$commentIdThe comment id to get.
Obsolète:
use gists->comments->get()
Renvoie
object
Depuis
1.7.3

◆ getComments()

getComments (   $gistId,
  $page = 0,
  $limit = 0 
)

Method to get the list of comments on a gist.

Paramètres
integer$gistIdThe gist number.
integer$pageThe page number from which to get items.
integer$limitThe number of items on a page.
Obsolète:
use gists->comments->getList()
Renvoie
array
Depuis
1.7.3

Références $limit.

◆ getList()

getList (   $page = 0,
  $limit = 0 
)

Method to list gists. If a user is authenticated it will return the user's gists, otherwise it will return all public gists.

Paramètres
integer$pageThe page number from which to get items.
integer$limitThe number of items on a page.
Exceptions
DomainException
Depuis
1.7.3
Renvoie
array

Références $limit, et $path.

◆ getListByUser()

getListByUser (   $user,
  $page = 0,
  $limit = 0 
)

Method to get a list of gists belonging to a given user.

Paramètres
string$userThe name of the GitHub user from which to list gists.
integer$pageThe page number from which to get items.
integer$limitThe number of items on a page.
Exceptions
DomainException
Depuis
1.7.3
Renvoie
array

Références $limit, $path, et $user.

◆ getListPublic()

getListPublic (   $page = 0,
  $limit = 0 
)

Method to get a list of all public gists.

Paramètres
integer$pageThe page number from which to get items.
integer$limitThe number of items on a page.
Exceptions
DomainException
Depuis
1.7.3
Renvoie
array

Références $limit, et $path.

◆ getListStarred()

getListStarred (   $page = 0,
  $limit = 0 
)

Method to get a list of the authenticated users' starred gists.

Paramètres
integer$pageThe page number from which to get items.
integer$limitThe number of items on a page.
Exceptions
DomainException
Depuis
1.7.3
Renvoie
array

Références $limit, et $path.

◆ isStarred()

isStarred (   $gistId)

Method to check if a gist has been starred.

Paramètres
integer$gistIdThe gist number.
Exceptions
DomainException
Depuis
1.7.3
Renvoie
boolean True if the gist is starred.

Références $path, et elseif.

◆ star()

star (   $gistId)

Method to star a gist.

Paramètres
integer$gistIdThe gist number.
Exceptions
DomainException
Depuis
1.7.3
Renvoie
void

Références $path.

◆ unstar()

unstar (   $gistId)

Method to star a gist.

Paramètres
integer$gistIdThe gist number.
Exceptions
DomainException
Depuis
1.7.3
Renvoie
void

Références $path.

Documentation des champs

◆ $name

$name = 'Gists'
protected

◆ $packages

$packages
protected
Valeur initiale :
= array(
'comments',
)

La documentation de cette classe a été générée à partir du fichier suivant :