Esempio n. 1
0
<?php

$title = AppletInstance::getValue("title", "");
?>
<div class="vbx-applet menu-applet">
<h2>Chirbit Posting Options</h2>

	<h3>Select a Greeting to play before the caller leaves a recording</h3>
		<?php 
echo AppletUI::audioSpeechPicker('prompt');
?>

	<h3>Set the title for your posts on Chirbit</h3>
		<input name="title" size="40" value="<?php 
echo $title;
?>
" />

	<h3>Choose the User whose credentials will be used for Chirbit</h3>
		<?php 
echo AppletUI::UserGroupPicker('chirbit-controller');
?>

	<h3>Select a Greeting to play after the user leaves a recording</h3>
		<?php 
echo AppletUI::audioSpeechPicker('after');
Esempio n. 2
0
		<h3>Do you want to repeat the menu back?</h3>
		<div class="vbx-full-pane">
			<p>Repeat the menu back to the caller.  Enter zero if you do not want the menu to repeat.</p>
			<fieldset class="vbx-input-complex vbx-input-container">
				<input type="text" name="repeat-count" class="left tiny" value="<?php 
echo AppletInstance::getValue('repeat-count', 3);
?>
" />
				<label class="field-label-left">time(s)</label>
			</fieldset>
		</div>

		<h3>When the caller didn't enter anything after the menu...</h3>
		<div class="vbx-full-pane">
			<fieldset class="vbx-input-complex vbx-input-container">
				<p>Redirect the caller to another applet.</p>
				<?php 
echo AppletUI::DropZone('next');
?>
			</fieldset>
		</div><!-- .vbx-split-pane -->

		<h3>Oops! The caller didn't enter something right.</h3>
		<p>Customize a specific message about the invalid option.</p>
		<?php 
echo AppletUI::audioSpeechPicker('invalid-option');
?>
    	<br />
		
</div><!-- .vbx-applet -->
Esempio n. 3
0
	<h3>Search Prompt</h3>
	<p>When the caller reaches this menu they will hear this prompt:</p>
	<?php 
echo AppletUI::audioSpeechPicker('searchMenu');
?>
	<h3>Menu Prompt</h3>
	<p>The caller can select a user from the menu, or dial 0 to try again. Before the user menu is played, play this prompt:</p>
	<?php 
echo AppletUI::audioSpeechPicker('dirMenu');
?>
	<h3>No Matches</h3>
	<p>Select a message to play when no users are found, before the process is restarted.</p>
	<?php 
echo AppletUI::audioSpeechPicker('nomatchMessage');
?>
	<h3>Restart Search</h3>
	<p>The caller dialed 0 to restart the search, customize this message.</p>
	<?php 
echo AppletUI::audioSpeechPicker('restartMessage');
?>
	<h3>Invalid Selection</h3>
	<p>Customize a specific message about the invalid selection.</p>
	<?php 
echo AppletUI::audioSpeechPicker('invalidMessage');
?>
	<h3>Error Message</h3>
	<p>Pick a message to notify the caller an error occurred before the process is restarted.</p>
	<?php 
echo AppletUI::audioSpeechPicker('errorMessage');
?>
</div>