本文整理匯總了PHP中ArticleModel::request方法的典型用法代碼示例。如果您正苦於以下問題:PHP ArticleModel::request方法的具體用法?PHP ArticleModel::request怎麽用?PHP ArticleModel::request使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類ArticleModel
的用法示例。
在下文中一共展示了ArticleModel::request方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: save
static function save($request){
/*HACK ZONE*/
self::$request = $request;
self::textEntry("Title", "title");
self::dropDown("Category", "category_id", "CategoryModel", "title", "id");
self::dropDown("Section", "section_id", "SectionModel", "title", "id");
self::dropDown("Location", "location_id", "LocationModel", "name", "id");
self::textEntry("Summary", "summary");
self::longEntry("Intro", "intro");
self::longEntry("Rules", "rules");
self::longEntry("Specification", "specification");
self::textEntry("Domain", "domain");
self::textEntry("Entry Fee", "entry_fee");
self::textEntry("Max participants in a group", "participants");
self::textEntry("1st Prize", "prize_first");
self::textEntry("2nd Prize", "prize_second");
self::textEntry("3rd Prize", "prize_third");
self::textEntry("Prize Info", "prize_info");
self::textEntry("Co-ordinator", "coordinator");
self::textEntry("Event Head", "event_head");
self::textEntry("Date", "date_elim");
self::textEntry("Date", "date_final");
self::textEntry("Image 1", "image_1");
self::textEntry("Image 2", "image_2");
self::textEntry("Image 3", "image_3");
$set = join(", ", self::$set);
$sql = "UPDATE articles SET $set WHERE id='".$request["article"]."'";
$result = BaseModel::$database->query($sql);
return;
}/*HACK ZONE*/