Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
workflow_schema_management.inc
1 <?php
18 require_once SQ_INCLUDE_PATH.'/asset_management.inc';
19 
31 {
32 
33 
39  {
40  Asset_Management::__construct($pm);
41 
42  $this->vars = Array(
43  'name' => Array(
44  'added' => '0.1',
45  'type' => 'text',
46  'default' => '',
47  ),
48  'notify_starter_on_live' => Array (
49  'added' => '0.1',
50  'type' => 'boolean',
51  'default' => FALSE,
52  'parameters' => Array(
53  'allow_empty' => FALSE,
54  ),
55  'description' => 'If enabled, will send the Notify on Live message to the initiator of the workflow process.',
56  ),
57  'subject_notify_on_live' => Array(
58  'added' => '0.2',
59  'type' => 'text',
60  'default' => 'Asset Made Live',
61  'description' => 'Custom subject to users when workflow is complete and the asset is made live',
62  ),
63  'message_notify_on_live' => Array(
64  'added' => '0.2',
65  'type' => 'text',
66  'default' => '',
67  'description' => 'Custom message to users when workflow is complete and the asset is made live',
68  ),
69  'schema_from_email_address' => Array(
70  'added' => '0.2',
71  'type' => 'email',
72  'default' => '',
73  'description' => 'Customise the "From" email address for our workflow emails',
74  ),
75  'schema_reply_to_email_address' => Array(
76  'added' => '0.2',
77  'type' => 'email',
78  'default' => '',
79  'description' => 'Customise the "Reply-To" email address for our workflow emails',
80  ),
81  );
82 
83  }//end constructor
84 
85 
92  function _getFileList()
93  {
94  return Array(
95  'css/workflow_schema_edit_fns.css',
96  'js/workflow_schema_edit_fns.js',
97  'files/wf_drag_handle.png',
98  );
99 
100  }//end _getFiles()
101 
102 
103 }//end class
104 
105 ?>