예제 #1
0
파일: auto.class.php 프로젝트: fulldump/8
 public function getLabel()
 {
     if ($this->row['Label'] == 0) {
         return null;
     } else {
         return Label::ROW($this->row['Label']);
     }
 }
예제 #2
0
파일: set_label.php 프로젝트: fulldump/8
<?php

Label::ROW($_POST['id'])->setText($_POST['text']);
예제 #3
0
파일: auto.class.php 프로젝트: fulldump/8
 public function getTitle()
 {
     if ($this->row['Title'] == 0) {
         return null;
     } else {
         return Label::ROW($this->row['Title']);
     }
 }