-
Notifications
You must be signed in to change notification settings - Fork 0
/
Manager.php
45 lines (41 loc) · 1.12 KB
/
Manager.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
40
41
42
43
44
45
<?php
/**
* Manager.php - \Callicore\Writer\Manager actual application class
*
* This is released under the MIT, see license.txt for details
*
* @author Elizabeth M Smith <[email protected]>
* @copyright Elizabeth M Smith (c)2009
* @link http://callicore.net
* @license http://www.opensource.org/licenses/mit-license.php MIT
* @version $Id: Client.php 21 2009-04-26 01:18:00Z auroraeosrose $
* @since Php 5.3.0
* @package callicore
* @subpackage lib
* @filesource
*/
/**
* Namespace for application
*/
namespace Callicore\Writer;
use \Callicore\Lib\Application; // this should have been loaded in the bootstrap
/**
* actual application class, handles startup, shutdown, etc
*/
class Manager extends Application {
/**
* Our application name, overrides Application default
*
* @var string
*/
protected $name = 'Writer';
/**
* Startup method for the twitter application
*
* @return void
*/
public function main(){
$window = new Main();
$window->show_all();
}
}