mirror of
https://we.phorge.it/source/phorge.git
synced 2025-03-11 11:54:48 +01:00
Summary: it's ugly. but it works. basically. See T2399 for a roughly prioritized list of what still needs to happen. Test Plan: - created a conpherence with myself from my profile - created a conpherence with myself from "new conpherence" - created a conphernece with another from "new conpherence" - created a conpherence with several others - created a conpherence with files in the initial post - verified files via comment text ("{F232} is awesome!") and via traditional attach - edited a conpherence image - verified it showed up in the header and in the conpherence menu on the left - edited a conpherence title - verified it showed up in the header and in the conpherence menu on the right - verified each widget showed up when clicked and displayed the proper data - calendar being an exception since it sucks so hard right now. Reviewers: epriestley, chad Reviewed By: epriestley CC: aran, epriestley, chad, codeblock, Korvin Maniphest Tasks: T2301 Differential Revision: https://secure.phabricator.com/D4620
39 lines
1.2 KiB
PHP
39 lines
1.2 KiB
PHP
<?php
|
|
|
|
final class PhabricatorPHIDConstants {
|
|
|
|
const PHID_TYPE_USER = 'USER';
|
|
const PHID_TYPE_MLST = 'MLST';
|
|
const PHID_TYPE_DREV = 'DREV';
|
|
const PHID_TYPE_TASK = 'TASK';
|
|
const PHID_TYPE_FILE = 'FILE';
|
|
const PHID_TYPE_PROJ = 'PROJ';
|
|
const PHID_TYPE_UNKNOWN = '????';
|
|
const PHID_TYPE_MAGIC = '!!!!';
|
|
const PHID_TYPE_REPO = 'REPO';
|
|
const PHID_TYPE_CMIT = 'CMIT';
|
|
const PHID_TYPE_OPKG = 'OPKG';
|
|
const PHID_TYPE_PSTE = 'PSTE';
|
|
const PHID_TYPE_STRY = 'STRY';
|
|
const PHID_TYPE_POLL = 'POLL';
|
|
const PHID_TYPE_WIKI = 'WIKI';
|
|
const PHID_TYPE_APRJ = 'APRJ';
|
|
const PHID_TYPE_ACMT = 'ACMT';
|
|
const PHID_TYPE_DRYR = 'DRYR';
|
|
const PHID_TYPE_DRYL = 'DRYL';
|
|
const PHID_TYPE_OASC = 'OASC';
|
|
const PHID_TYPE_OASA = 'OASA';
|
|
const PHID_TYPE_POST = 'POST';
|
|
const PHID_TYPE_TOBJ = 'TOBJ';
|
|
const PHID_TYPE_BLOG = 'BLOG';
|
|
const PHID_TYPE_QUES = 'QUES';
|
|
const PHID_TYPE_ANSW = 'ANSW';
|
|
const PHID_TYPE_MOCK = 'MOCK';
|
|
const PHID_TYPE_MCRO = 'MCRO';
|
|
const PHID_TYPE_CONF = 'CONF';
|
|
const PHID_TYPE_CONP = 'CONP';
|
|
|
|
const PHID_TYPE_XACT = 'XACT';
|
|
const PHID_TYPE_XCMT = 'XCMT';
|
|
|
|
}
|