Project

General

Profile

How to add a launch page » History » Version 14

Neil Voss, 08/15/2012 12:48 PM

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 10 Neil Voss
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 11 Neil Voss
 
7 14 Neil Voss
A starting template with documentation is available here to get you started:
8
<pre>
9
cp -v runAppionScript.php.template runMyProgram.php
10
</pre>&nbsp;
11 4 Amber Herold
# *Add a link to your page in the menuprocessing.php file or from another page*
12 5 Amber Herold
&nbsp;
13 4 Amber Herold
The menuprocessing file is a bit tricky to work with.
14 5 Amber Herold
&nbsp;
15 4 Amber Herold
# *Create a new form class for your package specific parameters*
16 5 Amber Herold
&nbsp;
17 4 Amber Herold
You can copy simpleParamsForm.inc as a template for your own form parameters. There are 2 primary functions to define.
18
## Define the constructor
19
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.
20
## Define the generateForm() function
21
This function outputs html. There are many predefined parameter fields that can be used to build your form.
22 5 Amber Herold
&nbsp;
23 4 Amber Herold
# *Add pop-up help messages to help.js*
24 5 Amber Herold
&nbsp;
25 4 Amber Herold
Located at myami/myamiweb/processing/js/help.js.
26
## Add a new namespace for your form, you can copy the 'simple' section. Don't forget any commas.
27
## add a help string for each of the parameter keys in your form
28
## make sure $javascript .= writeJavaPopupFunctions(); is in your createForm() function in your php launch page prior to the processing header function.
29 5 Amber Herold
&nbsp;
30 4 Amber Herold
# *Add a publication reference for the package you are using*
31 5 Amber Herold
&nbsp;
32 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.
33
## publications can be added to a page with the following code:
34 3 Amber Herold
<pre>
35 4 Amber Herold
	$pub = new Publication('appion'); 
36
	echo $pub->getHtmlTable(); //returns the html reference to the "appion" publication
37 3 Amber Herold
</pre>
38 6 Amber Herold
&nbsp;
39
# *Use your new form class in your launch page*
40 1 Amber Herold
&nbsp;
41 8 Amber Herold
## Modify the launch page *createForm()* function
42 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.
43 6 Amber Herold
### Add a call to your form class generateForm() function, adding default values in the constructor.
44
<pre>
45
	$simpleParamsForm = new SimpleParamsForm('','','','CHECKED','','','10','30','','20','100','2','2','10','','0.8','40','3','3');
46
	echo $simpleParamsForm->generateForm();
47
</pre>
48
### Add a reference to your publication
49
<pre>
50
	$pub = new Publication('appion');
51
	echo $pub->getHtmlTable();
52
</pre>
53 8 Amber Herold
## Modify the launch page *createCommand()* function
54 6 Amber Herold
### instantiate and validate your form parameters
55
<pre>
56
	$simpleParamsForm = new SimpleParamsForm();
57
	$errorMsg .= $simpleParamsForm->validate( $_POST );
58
</pre>
59
### Create your new command
60
<pre>
61
	/* *******************
62
	 PART 2: Create program command
63
	 ******************** */
64
	$command = "runSimpleCluster.py ";
65
	
66
	// add run parameters
67
	$command .= $runParametersForm->buildCommand( $_POST );
68
69
	// add simple parameters
70
	$command .= $simpleParamsForm->buildCommand( $_POST );
71
</pre>
72
### Add a reference to your publication in the header info
73
### Change the jobtype passed in showOrSubmitCommand()