1- # clue/zenity-react [ ![ Build Status] ( https://travis-ci.org/clue/php -zenity-react .svg?branch=master )] ( https://travis-ci.org/clue/php -zenity-react )
1+ # clue/reactphp-zenity [ ![ Build Status] ( https://travis-ci.org/clue/reactphp -zenity.svg?branch=master )] ( https://travis-ci.org/clue/reactphp -zenity )
22
3- [ Zenity] ( https://help.gnome.org/users/zenity/stable/ ) is a small program that allows
4- creating simple GTK+ dialogs from within command line scripts. This library provides
5- an easy to use wrapper to spawn Zenity processes to build graphical desktop applications
6- with PHP.
3+ Zenity allows you to build graphical desktop (GUI) applications in PHP, built on top of [ ReactPHP] ( https://reactphp.org/ ) .
74
8- Zenity already ships with Ubuntu-based distributions and does not require any installation
9- there - so this library should work out of the box. Otherwise you may have to [ install
10- Zenity] ( #install ) yourself.
5+ ![ https://help.gnome.org/users/zenity/3.24/question.html ] ( https://help.gnome.org/users/zenity/3.24/figures/zenity-question-screenshot.png )
116
12- ![ https://help.gnome.org/users/zenity/stable/question.html ] ( https://help.gnome.org/users/zenity/stable/figures/zenity-question-screenshot.png )
7+ [ Zenity] ( https://help.gnome.org/users/zenity/3.24/ ) is a small program that
8+ allows creating simple GTK+ dialogs from within command line scripts. Zenity
9+ already ships with Ubuntu-based distributions and does not require any
10+ installation there - so this library should work out of the box. Otherwise you
11+ may have to [ install Zenity] ( #install ) yourself. This library provides an easy
12+ to use wrapper to spawn Zenity processes to build graphical desktop applications
13+ with PHP.
1314
1415** Table of contents**
1516
@@ -185,27 +186,27 @@ Abstract base class for all Zenity dialogs (see below for details on each concre
185186
186187#### CalendarDialog
187188
188- ![ https://help.gnome.org/users/zenity/stable /calendar.html ] ( https://help.gnome.org/users/zenity/stable /figures/zenity-calendar-screenshot.png )
189+ ![ https://help.gnome.org/users/zenity/3.24 /calendar.html ] ( https://help.gnome.org/users/zenity/3.24 /figures/zenity-calendar-screenshot.png )
189190
190191#### ColorSelectionDialog
191192
192- ![ https://help.gnome.org/users/zenity/stable /colorselection.html ] ( https://help.gnome.org/users/zenity/stable /figures/zenity-colorselection-screenshot.png )
193+ ![ https://help.gnome.org/users/zenity/3.24 /colorselection.html ] ( https://help.gnome.org/users/zenity/3.24 /figures/zenity-colorselection-screenshot.png )
193194
194195#### EntryDialog
195196
196197``` php
197198$builder->entry($prompt = null, $prefill = null);
198199```
199200
200- ![ https://help.gnome.org/users/zenity/stable /entry.html ] ( https://help.gnome.org/users/zenity/stable /figures/zenity-entry-screenshot.png )
201+ ![ https://help.gnome.org/users/zenity/3.24 /entry.html ] ( https://help.gnome.org/users/zenity/3.24 /figures/zenity-entry-screenshot.png )
201202
202203#### ErrorDialog
203204
204205``` php
205206$builder->error($text, $title = null);
206207```
207208
208- ![ https://help.gnome.org/users/zenity/stable /error.html ] ( https://help.gnome.org/users/zenity/stable /figures/zenity-error-screenshot.png )
209+ ![ https://help.gnome.org/users/zenity/3.24 /error.html ] ( https://help.gnome.org/users/zenity/3.24 /figures/zenity-error-screenshot.png )
209210
210211#### FileSelectionDialog
211212
@@ -215,19 +216,19 @@ $builder->fileSave($title = null, $previous = null);
215216$builder->directorySelection($title = null, $multiple = false);
216217```
217218
218- ![ https://help.gnome.org/users/zenity/stable /fileselection.html ] ( https://help.gnome.org/users/zenity/stable /figures/zenity-fileselection-screenshot.png )
219+ ![ https://help.gnome.org/users/zenity/3.24 /fileselection.html ] ( https://help.gnome.org/users/zenity/3.24 /figures/zenity-fileselection-screenshot.png )
219220
220221#### FormsDialog
221222
222- ![ https://help.gnome.org/users/zenity/stable /forms.html ] ( https://help.gnome.org/users/zenity/stable /figures/zenity-forms-screenshot.png )
223+ ![ https://help.gnome.org/users/zenity/3.24 /forms.html ] ( https://help.gnome.org/users/zenity/3.24 /figures/zenity-forms-screenshot.png )
223224
224225#### InfoDialog
225226
226227``` php
227228$builder->info($text, $title = null);
228229```
229230
230- ![ https://help.gnome.org/users/zenity/stable /info.html ] ( https://help.gnome.org/users/zenity/stable /figures/zenity-information-screenshot.png )
231+ ![ https://help.gnome.org/users/zenity/3.24 /info.html ] ( https://help.gnome.org/users/zenity/3.24 /figures/zenity-information-screenshot.png )
231232
232233#### ListDialog
233234
@@ -241,7 +242,7 @@ $builder->table(array $rows, array $columns = null, $text = null);
241242Where ` $selected ` in case of listCheck is an array of keys of the items from ` $list ` you want to preselect.
242243Where ` $selected ` in case of listRadio is the key of the item from ` $list ` you want to preselect.
243244
244- ![ https://help.gnome.org/users/zenity/stable /list.html ] ( https://help.gnome.org/users/zenity/stable /figures/zenity-list-screenshot.png )
245+ ![ https://help.gnome.org/users/zenity/3.24 /list.html ] ( https://help.gnome.org/users/zenity/3.24 /figures/zenity-list-screenshot.png )
245246
246247#### NotificationDialog
247248
@@ -250,11 +251,11 @@ $builder->notification($text);
250251$builder->notifier();
251252```
252253
253- ![ https://help.gnome.org/users/zenity/stable /notification.html ] ( https://help.gnome.org/users/zenity/stable /figures/zenity-notification-screenshot.png )
254+ ![ https://help.gnome.org/users/zenity/3.24 /notification.html ] ( https://help.gnome.org/users/zenity/3.24 /figures/zenity-notification-screenshot.png )
254255
255256#### PasswordDialog
256257
257- ![ https://help.gnome.org/users/zenity/stable /password.html ] ( https://help.gnome.org/users/zenity/stable /figures/zenity-password-screenshot.png )
258+ ![ https://help.gnome.org/users/zenity/3.24 /password.html ] ( https://help.gnome.org/users/zenity/3.24 /figures/zenity-password-screenshot.png )
258259
259260#### ProgressDialog
260261
@@ -263,19 +264,19 @@ $builder->progress($text = null);
263264$builder->pulsate($text = null);
264265```
265266
266- ![ https://help.gnome.org/users/zenity/stable /progress.html ] ( https://help.gnome.org/users/zenity/stable /figures/zenity-progress-screenshot.png )
267+ ![ https://help.gnome.org/users/zenity/3.24 /progress.html ] ( https://help.gnome.org/users/zenity/3.24 /figures/zenity-progress-screenshot.png )
267268
268269#### QuestionDialog
269270
270271``` php
271272$builder->question($question, $title = null);
272273```
273274
274- ![ https://help.gnome.org/users/zenity/stable /question.html ] ( https://help.gnome.org/users/zenity/stable /figures/zenity-question-screenshot.png )
275+ ![ https://help.gnome.org/users/zenity/3.24 /question.html ] ( https://help.gnome.org/users/zenity/3.24 /figures/zenity-question-screenshot.png )
275276
276277#### ScaleDialog
277278
278- ![ https://help.gnome.org/users/zenity/stable /scale.html ] ( https://help.gnome.org/users/zenity/stable /figures/zenity-scale-screenshot.png )
279+ ![ https://help.gnome.org/users/zenity/3.24 /scale.html ] ( https://help.gnome.org/users/zenity/3.24 /figures/zenity-scale-screenshot.png )
279280
280281#### TextInfoDialog
281282
@@ -285,15 +286,15 @@ $builder->editable($filename, $title = null);
285286$builder->confirmLicense($filename, $confirmation, $title = null);
286287```
287288
288- ![ https://help.gnome.org/users/zenity/stable /text.html ] ( https://help.gnome.org/users/zenity/stable /figures/zenity-text-screenshot.png )
289+ ![ https://help.gnome.org/users/zenity/3.24 /text.html ] ( https://help.gnome.org/users/zenity/3.24 /figures/zenity-text-screenshot.png )
289290
290291#### WarningDialog
291292
292293``` php
293294$builder->warning($text, $title = null);
294295```
295296
296- ![ https://help.gnome.org/users/zenity/stable /warning.html ] ( https://help.gnome.org/users/zenity/stable /figures/zenity-warning-screenshot.png )
297+ ![ https://help.gnome.org/users/zenity/3.24 /warning.html ] ( https://help.gnome.org/users/zenity/3.24 /figures/zenity-warning-screenshot.png )
297298
298299## Install
299300
0 commit comments