blob: a275add5c9e94847ae2a6e609413e9fad86a60eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
<?php
/**
* NewCategory class file
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @link https://github.com/pradosoft/prado
* @copyright Copyright © 2006-2015 The PRADO Group
* @license https://github.com/pradosoft/prado/blob/master/COPYRIGHT
*/
/**
* NewCategory class
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @link https://github.com/pradosoft/prado
* @copyright Copyright © 2006-2015 The PRADO Group
* @license https://github.com/pradosoft/prado/blob/master/COPYRIGHT
*/
class NewCategory extends BlogPage
{
public function saveButtonClicked($sender,$param)
{
if($this->IsValid)
{
$categoryRecord=new CategoryRecord;
$categoryRecord->Name=$this->CategoryName->Text;
$categoryRecord->Description=$this->CategoryDescription->Text;
$this->DataAccess->insertCategory($categoryRecord);
$this->gotoPage('Posts.ListPost',array('cat'=>$categoryRecord->ID));
}
}
public function checkCategoryName($sender,$param)
{
$name=$this->CategoryName->Text;
$param->IsValid=$this->DataAccess->queryCategoryByName($name)===null;
}
}
|