Project

General

Profile

How to add a launch page » History » Version 9

Amber Herold, 08/15/2012 11:08 AM

1 1 Amber Herold
h1. How to add a job launch page to the Appion pipeline
2
3 4 Amber Herold
# *Add a php page with the basic appion template*
4 5 Amber Herold
 
5 4 Amber Herold
Most of our launch pages are php files with at leat 2 functions, one to create a form for the user to fill out, and another to build a job command when the user submits the form. You can copy an existing PHP file such as runSimple.php to create your new launch page. To give your page the Appion processing page look and feel with the header and side menu, be sure the functions processing_header($title,$heading,$javascript) and processing_footer() are called. 
6 5 Amber Herold
 
7 4 Amber Herold
# *Add a link to your page in the menuprocessing.php file or from another page*
8 5 Amber Herold
 
9 4 Amber Herold
The menuprocessing file is a bit tricky to work with.
10 5 Amber Herold
 
11 4 Amber Herold
# *Create a new form class for your package specific parameters*
12 5 Amber Herold
 
13 4 Amber Herold
You can copy simpleParamsForm.inc as a template for your own form parameters. There are 2 primary functions to define.
14
## Define the constructor
15
This is where all your parameters are listed. Values passed into the constructor become default values. Validations can be added to any of the parameters.
16
## Define the generateForm() function
17
This function outputs html. There are many predefined parameter fields that can be used to build your form.
18 5 Amber Herold
 
19 4 Amber Herold
# *Add pop-up help messages to help.js*
20 5 Amber Herold
 
21 4 Amber Herold
Located at myami/myamiweb/processing/js/help.js.
22
## Add a new namespace for your form, you can copy the 'simple' section. Don't forget any commas.
23
## add a help string for each of the parameter keys in your form
24
## make sure $javascript .= writeJavaPopupFunctions(); is in your createForm() function in your php launch page prior to the processing header function.
25 5 Amber Herold
 
26 4 Amber Herold
# *Add a publication reference for the package you are using*
27 5 Amber Herold
 
28 4 Amber Herold
## Edit /myami/myamiweb/processing/inc/publicationList.inc to include an entry for any references you need to add to your launch page.
29
## publications can be added to a page with the following code:
30 3 Amber Herold
<pre>
31 4 Amber Herold
	$pub = new Publication('appion'); 
32
	echo $pub->getHtmlTable(); //returns the html reference to the "appion" publication
33 3 Amber Herold
</pre>
34 6 Amber Herold
&nbsp;
35
# *Use your new form class in your launch page*
36 1 Amber Herold
&nbsp;
37 8 Amber Herold
## Modify the launch page *createForm()* function
38 9 Amber Herold
The create form function outputs the html needed for your form. The myami/myamiweb/processing/inc/forms directory holds reusable form classes based on the basicForm.inc class. Any combination of these can be used to add parameters to your form with little knowlege of html. You may also create a new form class to define the parameters specific to your job command.
39 6 Amber Herold
### Add a call to your form class generateForm() function, adding default values in the constructor.
40
<pre>
41
	$simpleParamsForm = new SimpleParamsForm('','','','CHECKED','','','10','30','','20','100','2','2','10','','0.8','40','3','3');
42
	echo $simpleParamsForm->generateForm();
43
</pre>
44
### Add a reference to your publication
45
<pre>
46
	$pub = new Publication('appion');
47
	echo $pub->getHtmlTable();
48
</pre>
49 8 Amber Herold
## Modify the launch page *createCommand()* function
50 6 Amber Herold
### instantiate and validate your form parameters
51
<pre>
52
	$simpleParamsForm = new SimpleParamsForm();
53
	$errorMsg .= $simpleParamsForm->validate( $_POST );
54
</pre>
55
### Create your new command
56
<pre>
57
	/* *******************
58
	 PART 2: Create program command
59
	 ******************** */
60
	$command = "runSimpleCluster.py ";
61
	
62
	// add run parameters
63
	$command .= $runParametersForm->buildCommand( $_POST );
64
65
	// add simple parameters
66
	$command .= $simpleParamsForm->buildCommand( $_POST );
67
</pre>
68
### Add a reference to your publication in the header info
69
### Change the jobtype passed in showOrSubmitCommand()