本文整理汇总了PHP中Note::getNoteText方法的典型用法代码示例。如果您正苦于以下问题:PHP Note::getNoteText方法的具体用法?PHP Note::getNoteText怎么用?PHP Note::getNoteText使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Note
的用法示例。
在下文中一共展示了Note::getNoteText方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: editNote
/**
* Modify a note saved in the database.
*
* @param Note $note
* @return integer
*/
public function editNote(Note $note)
{
$sql = "UPDATE note \n\t\t\tSET note = '" . replaceCharacters($note->getNote()) . "', note_text = '" . replaceCharacters($note->getNoteText()) . "' WHERE id_note = '" . $note->getIdNote() . "'";
return DB::query($sql);
}
示例2: render
//.........这里部分代码省略.........
<?php
if ($note->getNote() === "Hipótesis de Gestión Económica y Composición del Precio") {
?>
<option selected>
Hipótesis de Gestión Económica y Composición del Precio
</option>
<option>
Nota del Índice General de la Construcción
</option>
<option>
Nota del Índice General de la Construcción (PRIVADO)
</option>
<option>
Cálculo del Precio de un Rubro
</option>
<?php
} else {
if ($note->getNote() === "Nota del Índice General de la Construcción") {
?>
<option>
Hipótesis de Gestión Económica y Composición del Precio
</option>
<option selected>
Nota del Índice General de la Construcción
</option>
<option>
Nota del Índice General de la Construcción (PRIVADO)
</option>
<option>
Cálculo del Precio de un Rubro
</option>
<?php
} else {
if ($note->getNote() === "Nota del Índice General de la Construcción (PRIVADO)") {
?>
<option>
Hipótesis de Gestión Económica y Composición del Precio
</option>
<option>
Nota del Índice General de la Construcción
</option>
<option selected>
Nota del Índice General de la Construcción (PRIVADO)
</option>
<option>
Cálculo del Precio de un Rubro
</option>
<?php
} else {
if ($note->getNote() === "Cálculo del Precio de un Rubro") {
?>
<option>
Hipótesis de Gestión Económica y Composición del Precio
</option>
<option>
Nota del Índice General de la Construcción
</option>
<option>
Nota del Índice General de la Construcción (PRIVADO)
</option>
<option selected>
Cálculo del Precio de un Rubro
</option>
<?php
}
}
}
}
?>
</select>
</div>
</div>
<div class="col-md-6">
<div>
<label for="note_text">
Texto <small>(*)</small>
</label>
<textarea name="note_text" required><?php
echo $note->getNoteText();
?>
</textarea>
</div>
<div>
<input type="submit" value="Modificar" />
</div>
</div>
</div>
</fieldset>
</form>
<?php
}