123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- <?php
- if (!defined('GNUSOCIAL')) { exit(1); }
- class ApplicationList extends Widget
- {
-
- var $application = null;
-
- var $owner = null;
- function __construct($application, Profile $owner, Action $out=null)
- {
- parent::__construct($out);
- $this->application = $application;
- $this->owner = $owner;
- }
- function show()
- {
- $this->out->elementStart('ul', 'applications');
- $cnt = 0;
- while ($this->application->fetch()) {
- $cnt++;
- if($cnt > APPS_PER_PAGE) {
- break;
- }
- $this->showApplication();
- }
- $this->out->elementEnd('ul');
- return $cnt;
- }
- function showApplication()
- {
- $this->out->elementStart('li', array('class' => 'application h-entry',
- 'id' => 'oauthclient-' . $this->application->id));
- $this->out->elementStart('a', array('href' => common_local_url('showapplication',
- array('id' => $this->application->id)),
- 'class' => 'h-card'));
- if (!empty($this->application->icon)) {
- $this->out->element('img', array('src' => $this->application->icon,
- 'class' => 'avatar u-photo'));
- }
- $this->out->text($this->application->name);
- $this->out->elementEnd('a');
- $this->out->raw(' by ');
- $this->out->element('a', array('href' => $this->application->homepage,
- 'class' => 'u-url'),
- $this->application->organization);
- $this->out->element('p', 'note', $this->application->description);
- $this->out->elementEnd('li');
- }
-
- function showOwnerControls()
- {
- return;
- }
- }
|