123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- <?php
- class MakeAdminForm extends Form
- {
-
- var $profile = null;
-
- var $group = null;
-
- var $args = null;
-
- function __construct($out=null, $profile=null, $group=null, $args=null)
- {
- parent::__construct($out);
- $this->profile = $profile;
- $this->group = $group;
- $this->args = $args;
- }
-
- function id()
- {
-
- return 'makeadmin-' . $this->profile->id;
- }
-
- function formClass()
- {
- return 'form_make_admin';
- }
-
- function action()
- {
- return common_local_url('makeadmin', array('nickname' => $this->group->nickname));
- }
-
- function formLegend()
- {
-
- $this->out->element('legend', null, _('Make user an admin of the group'));
- }
-
- function formData()
- {
- $this->out->hidden('profileid-' . $this->profile->id,
- $this->profile->id,
- 'profileid');
- $this->out->hidden('groupid-' . $this->group->id,
- $this->group->id,
- 'groupid');
- if ($this->args) {
- foreach ($this->args as $k => $v) {
- $this->out->hidden('returnto-' . $k, $v);
- }
- }
- }
-
- function formActions()
- {
- $this->out->submit(
- 'submit',
-
- _m('BUTTON','Make Admin'),
- 'submit',
- null,
-
- _m('TOOLTIP','Make this user an admin.'));
- }
- }
|