2012-08-15 19:45:06 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright 2012 Facebook, Inc.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
final class PhabricatorActionView extends AphrontView {
|
|
|
|
|
|
|
|
private $name;
|
2012-10-03 19:21:39 +02:00
|
|
|
private $user;
|
2012-08-15 19:45:06 +02:00
|
|
|
private $icon;
|
|
|
|
private $href;
|
2012-08-24 22:19:30 +02:00
|
|
|
private $disabled;
|
|
|
|
private $workflow;
|
2012-10-03 19:21:39 +02:00
|
|
|
private $renderAsForm;
|
2012-08-15 19:45:06 +02:00
|
|
|
|
|
|
|
public function setHref($href) {
|
|
|
|
$this->href = $href;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setIcon($icon) {
|
|
|
|
$this->icon = $icon;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setName($name) {
|
|
|
|
$this->name = $name;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2012-08-24 22:19:30 +02:00
|
|
|
public function setDisabled($disabled) {
|
|
|
|
$this->disabled = $disabled;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setWorkflow($workflow) {
|
|
|
|
$this->workflow = $workflow;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2012-10-03 19:21:39 +02:00
|
|
|
public function setRenderAsForm($form) {
|
|
|
|
$this->renderAsForm = $form;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setUser(PhabricatorUser $user) {
|
|
|
|
$this->user = $user;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2012-08-15 19:45:06 +02:00
|
|
|
public function render() {
|
|
|
|
|
|
|
|
$icon = null;
|
|
|
|
if ($this->icon) {
|
|
|
|
$icon = phutil_render_tag(
|
|
|
|
'span',
|
|
|
|
array(
|
|
|
|
'class' => 'phabricator-action-view-icon autosprite '.
|
|
|
|
'action-'.$this->icon,
|
|
|
|
),
|
|
|
|
'');
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->href) {
|
2012-10-03 19:21:39 +02:00
|
|
|
if ($this->renderAsForm) {
|
|
|
|
if (!$this->user) {
|
|
|
|
throw new Exception(
|
|
|
|
'Call setUser() when rendering an action as a form.');
|
|
|
|
}
|
|
|
|
|
|
|
|
$item = javelin_render_tag(
|
|
|
|
'button',
|
|
|
|
array(
|
|
|
|
'class' => 'phabricator-action-view-item',
|
|
|
|
),
|
|
|
|
phutil_escape_html($this->name));
|
|
|
|
|
|
|
|
$item = phabricator_render_form(
|
|
|
|
$this->user,
|
|
|
|
array(
|
|
|
|
'action' => $this->href,
|
|
|
|
'method' => 'POST',
|
|
|
|
'sigil' => $this->workflow ? 'workflow' : null,
|
|
|
|
),
|
|
|
|
$item);
|
|
|
|
} else {
|
|
|
|
$item = javelin_render_tag(
|
|
|
|
'a',
|
|
|
|
array(
|
|
|
|
'href' => $this->href,
|
|
|
|
'class' => 'phabricator-action-view-item',
|
|
|
|
'sigil' => $this->workflow ? 'workflow' : null,
|
|
|
|
),
|
|
|
|
phutil_escape_html($this->name));
|
|
|
|
}
|
2012-08-15 19:45:06 +02:00
|
|
|
} else {
|
|
|
|
$item = phutil_render_tag(
|
|
|
|
'span',
|
|
|
|
array(
|
|
|
|
'class' => 'phabricator-action-view-item',
|
|
|
|
),
|
|
|
|
phutil_escape_html($this->name));
|
|
|
|
}
|
|
|
|
|
2012-08-24 22:19:30 +02:00
|
|
|
$classes = array();
|
|
|
|
$classes[] = 'phabricator-action-view';
|
|
|
|
if ($this->disabled) {
|
|
|
|
$classes[] = 'phabricator-action-view-disabled';
|
|
|
|
}
|
|
|
|
|
2012-08-15 19:45:06 +02:00
|
|
|
return phutil_render_tag(
|
|
|
|
'li',
|
|
|
|
array(
|
2012-08-24 22:19:30 +02:00
|
|
|
'class' => implode(' ', $classes),
|
2012-08-15 19:45:06 +02:00
|
|
|
),
|
|
|
|
$icon.$item);
|
|
|
|
}
|
|
|
|
|
2012-10-23 21:00:28 +02:00
|
|
|
public static function getAvailableIcons() {
|
|
|
|
return array(
|
|
|
|
'delete',
|
|
|
|
'edit',
|
|
|
|
'file',
|
|
|
|
'flag-0',
|
|
|
|
'flag-1',
|
|
|
|
'flag-2',
|
|
|
|
'flag-3',
|
|
|
|
'flag-4',
|
|
|
|
'flag-5',
|
|
|
|
'flag-6',
|
|
|
|
'flag-7',
|
|
|
|
'flag-ghost',
|
|
|
|
'fork',
|
|
|
|
'move',
|
|
|
|
'new',
|
|
|
|
'preview',
|
|
|
|
'subscribe-add',
|
|
|
|
'subscribe-auto',
|
|
|
|
'subscribe-delete',
|
|
|
|
'unpublish',
|
|
|
|
'world',
|
|
|
|
);
|
|
|
|
}
|
2012-08-15 19:45:06 +02:00
|
|
|
|
|
|
|
}
|