-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnwsw_About.php
executable file
·39 lines (29 loc) · 1.22 KB
/
nwsw_About.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php
/*******************************************************************************
nwsw_About.php Version 2.75
This script shows the version of the Starter Kit that is installed.
This is useful when checking for possible updates.
Copyright © 2015 by NoteWorthy Software, Inc.
All Rights Reserved
HISTORY:
================================================================================
[2015-09-15] Version 2.75: Changed to noteworthycomposer.com
[2009-10-02] Version 1.5: Added PHP version and phpinfo
[2006-05-12] Version 1.01: Code format cleanup
[2005-09-12] Version 1.00: Initial release
*******************************************************************************/
require_once("lib/nwc2clips.inc");
$libver = NWC2ClipLibVersion();
$phpver = phpversion();
$usermsg = <<<__EOMSG
Clip Library Version: $libver
PHP Version: $phpver
NWC2 User Tool Starter Kit is a free software package that includes a set of PHP scripts for use with the User Tool command in NoteWorthy Composer 2. Additional details about the starter kit can be found at our web site:
https://noteworthycomposer.com
You are currently using version $libver of the NWC2 User Tool Starter Kit.
__EOMSG;
//
fputs(STDOUT,$usermsg);
phpinfo();
exit(NWC2RC_REPORT);
?>