mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-09 13:28:29 +01:00
Summary: //(this diff used to be about applying policies to blueprints)// This restructures Drydock so that blueprints are instances in the DB, with an associated implementation class. Thus resources now have a `blueprintPHID` instead of `blueprintClass` and DrydockBlueprint becomes a DAO. The old DrydockBlueprint is renamed to DrydockBlueprintImplementation, and the DrydockBlueprint DAO has a `blueprintClass` column on it. This now just implements CAN_VIEW and CAN_EDIT policies for blueprints, although they are probably not enforced in all of the places they could be. Test Plan: Used the `create-resource` and `lease` commands. Closed resources and leases in the UI. Clicked around the new and old lists to make sure everything is still working. Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley CC: Korvin, epriestley, aran Maniphest Tasks: T4111, T2015 Differential Revision: https://secure.phabricator.com/D7638
55 lines
1.3 KiB
PHP
55 lines
1.3 KiB
PHP
<?php
|
|
|
|
/**
|
|
* This provides the layout of an AphrontFormView without actually providing
|
|
* the <form /> tag. Useful on its own for creating forms in other forms (like
|
|
* dialogs) or forms which aren't submittable.
|
|
*/
|
|
final class PHUIFormLayoutView extends AphrontView {
|
|
|
|
private $fullWidth;
|
|
|
|
public function setFullWidth($width) {
|
|
$this->fullWidth = $width;
|
|
return $this;
|
|
}
|
|
|
|
public function appendInstructions($text) {
|
|
return $this->appendChild(
|
|
phutil_tag(
|
|
'div',
|
|
array(
|
|
'class' => 'aphront-form-instructions',
|
|
),
|
|
$text));
|
|
}
|
|
|
|
public function appendRemarkupInstructions($remarkup) {
|
|
if ($this->getUser() === null) {
|
|
throw new Exception(
|
|
"Call `setUser` before appending Remarkup to PHUIFormLayoutView.");
|
|
}
|
|
|
|
return $this->appendInstructions(
|
|
PhabricatorMarkupEngine::renderOneObject(
|
|
id(new PhabricatorMarkupOneOff())->setContent($remarkup),
|
|
'default',
|
|
$this->getUser()));
|
|
}
|
|
|
|
public function render() {
|
|
$classes = array('phui-form-view');
|
|
|
|
if ($this->fullWidth) {
|
|
$classes[] = 'phui-form-full-width';
|
|
}
|
|
|
|
return phutil_tag(
|
|
'div',
|
|
array(
|
|
'class' => implode(' ', $classes),
|
|
),
|
|
$this->renderChildren());
|
|
|
|
}
|
|
}
|