当前位置: 首页>>代码示例>>PHP>>正文


PHP Note::getNoteText方法代码示例

本文整理汇总了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);
 }
开发者ID:KINOTO,项目名称:apymeco,代码行数:11,代码来源:NoteModel.php

示例2: render


//.........这里部分代码省略.........
                            <?php 
        if ($note->getNote() === "Hip&oacute;tesis de Gesti&oacute;n Econ&oacute;mica y Composici&oacute;n del Precio") {
            ?>
                            <option selected>
                                Hip&oacute;tesis de Gesti&oacute;n Econ&oacute;mica y Composici&oacute;n del Precio
                            </option>
                            <option>
                                Nota del &Iacute;ndice General de la Construcci&oacute;n
                            </option>
                            <option>
                                Nota del &Iacute;ndice General de la Construcci&oacute;n (PRIVADO)
                            </option>
                            <option>
                                C&aacute;lculo del Precio de un Rubro
                            </option>
                            <?php 
        } else {
            if ($note->getNote() === "Nota del &Iacute;ndice General de la Construcci&oacute;n") {
                ?>
                            <option>
                                Hip&oacute;tesis de Gesti&oacute;n Econ&oacute;mica y Composici&oacute;n del Precio
                            </option>
                            <option selected>
                                Nota del &Iacute;ndice General de la Construcci&oacute;n
                            </option>
                            <option>
                                Nota del &Iacute;ndice General de la Construcci&oacute;n (PRIVADO)
                            </option>
                            <option>
                                C&aacute;lculo del Precio de un Rubro
                            </option>
                            <?php 
            } else {
                if ($note->getNote() === "Nota del &Iacute;ndice General de la Construcci&oacute;n (PRIVADO)") {
                    ?>
                            <option>
                                Hip&oacute;tesis de Gesti&oacute;n Econ&oacute;mica y Composici&oacute;n del Precio
                            </option>
                            <option>
                                Nota del &Iacute;ndice General de la Construcci&oacute;n
                            </option>
                            <option selected>
                                Nota del &Iacute;ndice General de la Construcci&oacute;n (PRIVADO)
                            </option>
                            <option>
                                C&aacute;lculo del Precio de un Rubro
                            </option>
                            <?php 
                } else {
                    if ($note->getNote() === "C&aacute;lculo del Precio de un Rubro") {
                        ?>
                            <option>
                                Hip&oacute;tesis de Gesti&oacute;n Econ&oacute;mica y Composici&oacute;n del Precio
                            </option>
                            <option>
                                Nota del &Iacute;ndice General de la Construcci&oacute;n
                            </option>
                            <option>
                                Nota del &Iacute;ndice General de la Construcci&oacute;n (PRIVADO)
                            </option>
                            <option selected>
                                C&aacute;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 
    }
开发者ID:KINOTO,项目名称:apymeco,代码行数:101,代码来源:EditView.php


注:本文中的Note::getNoteText方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。