Differential D9431 Diff 22523 src/applications/auth/controller/PhabricatorAuthConfirmLinkController.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/auth/controller/PhabricatorAuthConfirmLinkController.php
| Show First 20 Lines • Show All 52 Lines • ▼ Show 20 Lines | $form = id(new PHUIFormLayoutView()) | ||||
| ->setFullWidth(true) | ->setFullWidth(true) | ||||
| ->appendChild( | ->appendChild( | ||||
| phutil_tag( | phutil_tag( | ||||
| 'div', | 'div', | ||||
| array( | array( | ||||
| 'class' => 'aphront-form-instructions', | 'class' => 'aphront-form-instructions', | ||||
| ), | ), | ||||
| pht( | pht( | ||||
| "Confirm the link with this %s account. This account will be ". | 'Confirm the link with this %s account. This account will be '. | ||||
| "able to log in to your Phabricator account.", | 'able to log in to your Phabricator account.', | ||||
| $provider->getProviderName()))) | $provider->getProviderName()))) | ||||
| ->appendChild( | ->appendChild( | ||||
| id(new PhabricatorAuthAccountView()) | id(new PhabricatorAuthAccountView()) | ||||
| ->setUser($viewer) | ->setUser($viewer) | ||||
| ->setExternalAccount($account) | ->setExternalAccount($account) | ||||
| ->setAuthProvider($provider)); | ->setAuthProvider($provider)); | ||||
| $dialog->appendChild($form); | $dialog->appendChild($form); | ||||
| Show All 18 Lines | |||||