Select the types of activity you want to include in your feed.
@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.)
hq.recaptime.dev/wiki/Phorge
···11+<?php
22+33+final class PhabricatorProjectWikiExplainController
44+ extends PhabricatorProjectController {
55+66+ public function handleRequest(AphrontRequest $request) {
77+ return $this->newDialog()
88+ ->setTitle(pht('Wikis Have Changed'))
99+ ->appendParagraph(
1010+ pht(
1111+ 'Wiki pages in Phriction have been upgraded to have more powerful '.
1212+ 'support for policies and access control. Each page can now have '.
1313+ 'its own policies.'))
1414+ ->appendParagraph(
1515+ pht(
1616+ 'This change obsoletes dedicated project wiki pages and '.
1717+ 'resolves a number of issues they had: you can now have '.
1818+ 'multiple wiki pages for a project, put them anywhere, give '.
1919+ 'them custom access controls, and rename them (or the project) '.
2020+ 'more easily and with fewer issues.'))
2121+ ->appendParagraph(
2222+ pht(
2323+ 'If you want to point users of this project to specific wiki '.
2424+ 'pages with relevant documentation or information, edit the project '.
2525+ 'description and add links. You can use the %s syntax to link to a '.
2626+ 'wiki page.',
2727+ phutil_tag('tt', array(), '[[ example/page/ ]]')))
2828+ ->addCancelButton('/', pht('Okay'));
2929+ }
3030+3131+}