示例#1
0
	</tr>

	<tr>
		<th>prenom</th>
		<td><input name="prenom" /><?php 
if ($this->tMessage and isset($this->tMessage['prenom'])) {
    echo implode(',', $this->tMessage['prenom']);
}
?>
</td>
	</tr>

	<tr>
		<th>groupe</th>
		<td><?php 
echo $oPluginHtml->getSelect('groupe', model_group::getInstance()->getListSelect());
if ($this->tMessage and isset($this->tMessage['groupe'])) {
    echo implode(',', $this->tMessage['groupe']);
}
?>
</td>
	</tr>

</table>

<input type="hidden" name="token" value="<?php 
echo $this->token;
?>
" />
<?php 
if ($this->tMessage and isset($this->tMessage['token'])) {
示例#2
0
		<th>prenom</th>
		<td><input name="prenom" value="<?php 
echo $this->oAccount->prenom;
?>
" /><?php 
if ($this->tMessage and isset($this->tMessage['prenom'])) {
    echo implode(',', $this->tMessage['prenom']);
}
?>
</td>
	</tr>

	<tr>
		<th>groupe</th>
		<td><?php 
echo $oPluginHtml->getSelect('groupe', model_group::getInstance()->getListSelect(), $this->oAccount->groupe);
?>
		<?php 
if ($this->tMessage and isset($this->tMessage['groupe'])) {
    echo implode(',', $this->tMessage['groupe']);
}
?>
</td>
	</tr>

</table>

<input type="hidden" name="token" value="<?php 
echo $this->token;
?>
" />
示例#3
0
    echo $this->oPermission->{$sColumn};
    ?>
" />
	<?php 
    if ($this->tMessage and isset($this->tMessage[$sColumn])) {
        echo implode(',', $this->tMessage[$sColumn]);
    }
}
?>
	
<table>
	
	<tr>
		<th>group</th>
		<td><?php 
echo $oPluginHtml->getSelect('group', model_group::getInstance()->getListSelect(), $this->oPermission->group);
?>
		<?php 
if ($this->tMessage and isset($this->tMessage['group'])) {
    echo implode(',', $this->tMessage['group']);
}
?>
</td>
	</tr>

	<tr>
		<th>action</th>
		<td><input name="action" value="<?php 
echo $this->oPermission->action;
?>
" /><?php 
示例#4
0
<table>
	
	<tr>
		<th>titre</th>
		<td><input name="titre" /><?php 
if ($this->tMessage and isset($this->tMessage['titre'])) {
    echo implode(',', $this->tMessage['titre']);
}
?>
</td>
	</tr>

	<tr>
		<th>auteur_id</th>
		<td><?php 
echo $oPluginHtml->getSelect('auteur_id', $this->tJoinAuteur, $this->oArticle->auteur_id);
if ($this->tMessage and isset($this->tMessage['auteur_id'])) {
    echo implode(',', $this->tMessage['auteur_id']);
}
?>
</td>
	</tr>

	<tr>
		<th>priority</th>
		<td><input name="priority" /><?php 
if ($this->tMessage and isset($this->tMessage['priority'])) {
    echo implode(',', $this->tMessage['priority']);
}
?>
</td>
示例#5
0
<?php

$oPluginHtml = new plugin_html();
?>
<form action="" method="POST">

<table>
	
	<tr>
		<th>group</th>
		<td><?php 
echo $oPluginHtml->getSelect('group', model_group::getInstance()->getListSelect());
if ($this->tMessage and isset($this->tMessage['group'])) {
    echo implode(',', $this->tMessage['group']);
}
?>
</td>
	</tr>

	<tr>
		<th>action</th>
		<td><input name="action" /><?php 
if ($this->tMessage and isset($this->tMessage['action'])) {
    echo implode(',', $this->tMessage['action']);
}
?>
</td>
	</tr>

	<tr>
		<th>element</th>
示例#6
0
文件: new.php 项目: DavBfr/BlogMVC
			<input  name="name"  class="form-control" maxlength="255" type="text" id="PostName" required="required">
		</div>
	</div>
	<div class="col-md-6">
		<div class="form-group required">
			<label for="PostSlug">Slug :</label>
			<input name="slug"  class="form-control" maxlength="255" type="text" id="PostSlug" required="required">
		</div>
	</div>
</div>
<div class="row">
	<div class="col-md-6">
		<div class="form-group">
			<label for="PostCategoryId">Category :</label>
			<?php 
echo $oPluginHtml->getSelect('category_id', $this->tJoinmodel_categories, null, array('class' => 'form-control', 'id' => 'PostCategoryId'));
?>
			
		</div>
	</div>
	<div class="col-md-6">
		<div class="form-group">
			<label for="PostUserId">Author :</label>
			<?php 
echo $oPluginHtml->getSelect('user_id', $this->tJoinmodel_users, null, array('class' => 'form-control', 'id' => 'PostUserId'));
?>
		</div>
	</div>
</div>
<div class="form-group required">
	<label for="PostContent">Content :</label>