本文整理汇总了PHP中Index::getMainIndex方法的典型用法代码示例。如果您正苦于以下问题:PHP Index::getMainIndex方法的具体用法?PHP Index::getMainIndex怎么用?PHP Index::getMainIndex使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Index
的用法示例。
在下文中一共展示了Index::getMainIndex方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: editIndex
/**
* Modify a index saved in the database.
*
* @param Index $index
* @return integer
*/
public function editIndex(Index $index)
{
$sql = "UPDATE cindex \n\t\t\tSET month = '" . $index->getMonth() . "', price = '" . $index->getPrice() . "', main_index = '" . $index->getMainIndex() . "', variation = '" . $index->getVariation() . "' WHERE id_index = '" . $index->getIdIndex() . "'";
return DB::query($sql);
}
示例2: render
/**
* Renderize the view.
*
* @return null
*/
public function render(Index $index)
{
?>
<p>
<?php
echo REQUIRED_FIELDS_TEXT;
?>
</p>
<form action="<?php
echo $this->generateURL('index', 'edit', $index->getIdIndex());
?>
" method="post">
<fieldset>
<div class="row">
<div class="col-md-6">
<div>
<label for="month">
Mes <small>(*)</small>
</label>
<input name="month" type="text" required value="<?php
echo $index->getMonth();
?>
" />
</div>
<div>
<label for="price">
$/m² <small>(*)</small>
</label>
<input name="price" type="text" required value="<?php
echo $index->getPrice();
?>
" />
</div>
</div>
<div class="col-md-6">
<div>
<label for="main_index">
Índice de la <br> construcción <small>(*)</small>
</label>
<input name="main_index" type="text" required value="<?php
echo $index->getMainIndex();
?>
" />
</div>
<div>
<label for="variation">
Variación con respecto <br> del mes anterior <small>(*)</small>
</label>
<input name="variation" type="text" required value="<?php
echo $index->getVariation();
?>
" />
</div>
<div>
<input type="submit" value="Modificar" />
</div>
</div>
</div>
</fieldset>
</form>
<?php
}