PEAR
[ class tree: PEAR ] [ index: PEAR ] [ all elements ]

Source for file Auth-init.php

Documentation is available at Auth-init.php

  1. <?php
  2. // quick-load, small memory footprint command configuration
  3. $implements = array(
  4.         'login' => array(
  5.             'summary' => 'Connects and authenticates to remote server',
  6.             'shortcut' => 'li',
  7.             'function' => 'doLogin',
  8.             'options' => array(),
  9.             'doc' => '
  10. Log in to the remote server.  To use remote functions in the installer
  11. that require any kind of privileges, you need to log in first.  The
  12. username and password you enter here will be stored in your per-user
  13. PEAR configuration (~/.pearrc on Unix-like systems).  After logging
  14. in, your username and password will be sent along in subsequent
  15. operations on the remote server.',
  16.             ),
  17.         'logout' => array(
  18.             'summary' => 'Logs out from the remote server',
  19.             'shortcut' => 'lo',
  20.             'function' => 'doLogout',
  21.             'options' => array(),
  22.             'doc' => '
  23. Logs out from the remote server.  This command does not actually
  24. connect to the remote server, it only deletes the stored username and
  25. password from your user configuration.',
  26.             )
  27.  
  28.         );
  29. ?>

Documentation generated on Mon, 11 Mar 2019 14:15:31 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.