[ Index ]

PHP Cross Reference of Phabricator

title

Body

[close]

/src/applications/project/controller/ -> PhabricatorProjectWikiExplainController.php (source)

   1  <?php
   2  
   3  final class PhabricatorProjectWikiExplainController
   4    extends PhabricatorProjectController {
   5  
   6    public function handleRequest(AphrontRequest $request) {
   7      return $this->newDialog()
   8        ->setTitle(pht('Wikis Have Changed'))
   9        ->appendParagraph(
  10          pht(
  11            'Wiki pages in Phriction have been upgraded to have more powerful '.
  12            'support for policies and access control. Each page can now have '.
  13            'its own policies.'))
  14        ->appendParagraph(
  15          pht(
  16            'This change obsoletes dedicated project wiki pages and '.
  17            'resolves a number of issues they had: you can now have '.
  18            'multiple wiki pages for a project, put them anywhere, give '.
  19            'them custom access controls, and rename them (or the project) '.
  20            'more easily and with fewer issues.'))
  21        ->appendParagraph(
  22          pht(
  23            'If you want to point users of this project to specific wiki '.
  24            'pages with relevant documentation or information, edit the project '.
  25            'description and add links. You can use the %s syntax to link to a '.
  26            'wiki page.',
  27            phutil_tag('tt', array(), '[[ example/page/ ]]')))
  28        ->addCancelButton('/', pht('Okay'));
  29    }
  30  
  31  }


Generated: Sun Nov 30 09:20:46 2014 Cross-referenced by PHPXref 0.7.1