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