Example #1
0
?>
" method="post" name="adminForm" id="adminForm">
<?php 
$ordering = $this->lists['order'] == "ordering";
JHTML::_('behavior.modal');
?>
<div id="editcell">
	<table>
		<tr>
			<td width="100%">
				<?php 
echo JText::_("FILTER");
?>
:
				<input type="text" name="search" id="search" value="<?php 
echo JViewLegacy::escape($this->lists['search']);
?>
" class="text_area" onchange="document.adminForm.submit();" title="<?php 
echo JText::_("FILTER_BY_TITLE_OR_ENTER_ARTICLE_ID");
?>
"/>
				<button onclick="this.form.submit();"><?php 
echo JText::_("GO");
?>
</button>
				<button onclick="document.getElementById('search').value='';this.form.submit();"><?php 
echo JText::_("RESET");
?>
</button>
			</td>
			<td nowrap="nowrap">
Example #2
0
?>
</legend>

		<table class="admintable">
		<tr>
			<td width="135" align="right" class="key">
				<label for="title">
					<?php 
echo JText::_("TITLE");
?>
:
				</label>
			</td>
			<td>
				<input class="text_area" type="text" name="title" id="title" size="32" maxlength="250" value="<?php 
echo JViewLegacy::escape($this->prod->title);
?>
" />
			</td>
			<td>
				<div id="trprev_title"></div>
			</td>
		</tr>
		<?php 
FSTAdminHelper::LA_Form($this->prod, true);
?>
		<tr>
			<td width="135" align="right" class="key">
				<label for="image">
					<?php 
echo JText::_("IMAGE");
Example #3
0
			<form action="<?php 
        echo FSFRoute::x('index.php?option=com_fsf&view=faqs');
        ?>
" method="get" name="adminForm">
				<input type='hidden' name='option' value='com_fsf' />
				<input type='hidden' name='Itemid' value='<?php 
        echo JRequest::getVar('Itemid');
        ?>
' />
				<input type='hidden' name='view' value='faq' />
				<input type='hidden' name='catid' value='<?php 
        echo $this->curcatid;
        ?>
' />
				<input name='search' value="<?php 
        echo JViewLegacy::escape($this->search);
        ?>
">
				<input type='submit' class='button' value='<?php 
        echo JText::_("SEARCH");
        ?>
' >
			</form>
		</div>
		<div class='faq_category_faqlist'></div>
	<?php 
    }
    ?>
	
	
	<div class='fsf_faqs' id='fsf_faqs'>
Example #4
0
		</tr>		
		<?php 
FSFAdminHelper::LA_Form($this->faq);
?>
		<tr>
			<td width="135" align="right" class="key">
				<label for="question">
					<?php 
echo JText::_("QUESTION");
?>
:
				</label>
			</td>
			<td>
				<textarea name="question" id="question" cols="80" rows="4" style="width:544px;"><?php 
echo JViewLegacy::escape($this->faq->question);
?>
</textarea>
			</td>
		</tr>
		<tr>
			<td width="135" align="right" class="key">
				<label for="answer">
					<?php 
echo JText::_("ANSWER");
?>
:
				</label>
			</td>
			<td>
				<?php 
Example #5
0
?>
" />
			</td>
		</tr>
		<tr>
			<td width="100" align="right" class="key">
				<label for="website">
					<?php 
echo JText::_("WEBSITE");
?>
:
				</label>
			</td>
			<td>
				<input class="text_area" type="text" name="website" id="website" size="32" maxlength="250" value="<?php 
echo JViewLegacy::escape($this->test->website);
?>
" />
			</td>
		</tr>
		<tr>
			<td width="100" align="right" class="key">
				<label for="body">
					<?php 
echo JText::_("BODY");
?>
:
				</label>
			</td>
			<td>
				<textarea id="body" name="body" rows="20" cols="60"><?php 
Example #6
0
?>
</legend>

		<table class="admintable">
		<tr>
			<td width="135" align="right" class="key">
				<label for="word">
					<?php 
echo JText::_("WORD");
?>
:
				</label>
			</td>
			<td>
				<input class="text_area" type="text" name="word" id="word" size="32" maxlength="250" value="<?php 
echo JViewLegacy::escape($this->glossary->word);
?>
" />
			</td>
		</tr>
		<?php 
FSFAdminHelper::LA_Form($this->glossary);
?>
		<tr>
			<td width="135" align="right" class="key">
				<label for="description">
					<?php 
echo JText::_("DESCRIPTION");
?>
:
				</label>
Example #7
0
?>
</legend>

		<table class="admintable">
		<tr>
			<td width="135" align="right" class="key">
				<label for="title">
					<?php 
echo JText::_("TITLE");
?>
:
				</label>
			</td>
			<td>
				<input class="text_area" type="text" name="title" id="title" size="32" maxlength="250" value="<?php 
echo JViewLegacy::escape($this->faqcat->title);
?>
" />
			</td>
		</tr>
		<?php 
FSFAdminHelper::LA_Form($this->faqcat);
?>
		<tr>
			<td width="135" align="right" class="key">
				<label for="image">
					<?php 
echo JText::_("IMAGE");
?>
:
				</label>
 function escape($var)
 {
     $jview = new JViewLegacy();
     return $jview->escape($var);
 }