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

Source for file verysimple.php

Documentation is available at verysimple.php

  1. <?php
  2. /**
  3. *   Very simple Gtk2_EntryDialog example
  4. *
  5. *   @author Christian Weiske <cweiske@php.net>
  6. */
  7. require_once 'Gtk2/EntryDialog.php';
  8.  
  9. $text Gtk2_EntryDialog::get(
  10.     'What\'s your name?',       //the message
  11.     'Don\'t know'               //The default text
  12. );
  13.  
  14. if ($text !== false{
  15.     echo 'The name is: ';
  16.     var_dump($text);
  17. else {
  18.     echo "You cancelled\r\n";
  19. }
  20. ?>

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