ホームページ >バックエンド開発 >PHPチュートリアル >IcePHPフレームワークの高速バックエンドにおけるUniversal CRUD機能フレームワーク (5) SCrudメインコントロールクラス
/**
* CRUD マスタークラス
* @author bluehire
*/
class SCrud {
const PATH_VIEW='crud' //ビューのパス名
/**
* 現在のリスト操作構成
* @var SCrudOperation
*/
public $operation;
/**
* データ アクセス オブジェクト
* @var STable
* /
public $model;
private $table; //メインテーブル名
private $config; //すべてのフィールドオブジェクトの配列
public $title;ビジネスタイトル
public $pageSize=20; //リストのページサイズ
public $pageSort='id'; //リストのソート方向
public $rowNo=true; /リストに行番号を表示するかどうか
/**
* リストのフィルタリング
* @var Closure
*/
public $gridFilter;
//以下の操作があるかどうか
public $operationView=true;
public $operationInsert=true;
public $operationUpdate =true;
public $operationDelete=true;
public $operationMultiDelete=true;
//現在のリクエストのコントローラーとアクション名。後でハイパーリンクを結合するために使用されます
private $controller;
private $action;
/* *
*
* @param 不明 $table メインテーブル名
* @param 不明 $controller コントローラー名
* @param 不明 $action アクション名
*/
public function __construct($table, $controller, $action) {
$this->table = $table;
$this->controller = $controller;
$this->action = $action ;
// さまざまな設定オブジェクトを生成します
$this->config = config ( 'crud/' . $table );
foreach ( $this->config as $c => $v ) {
if (strpos ( $c, '_' ) === 0) {
$n = substr ( $c, 1 );
$this->$n = $v;
} else {
$this- > フィールド [$c] = new SCrudField ( $this, $v );
}
}
//この関数のタイトル
$this->title=$this->title?:$table。 'Management' ;
//すべての操作セット
$this->operation = new SCrudOperationSet ( $this );
//データ アクセス モデル
$this->model = table($table);
}
/* *
* フィールドを取得します
*
* @param known $name
* @return SCrudField
*/
public function field($name) {
if (! isset ( $this->fields [$name] )) {
return null;
}
return $this->フィールド [$ name];
}
/**
* このテーブルの主キーフィールド名を取得します
* @return SCrudField
*/
public function getPrimaryField() {
// すべてのフィールドを表示
foreach ( $this->fields as $field ) {
// プライマリキーフィールドはクエリする必要があります
if ($field->primaryKey) {
return $field;
}
}
return false;
}
/**
* SCrudField の @return 配列で並べ替え可能なすべてのフィールドを取得します
*/
public function listSortable(){
return array_filter ( $this- >fields, function ($f) {
return $f->isSortable ();
} );
}
/**
* 検索可能なフィールドをすべて取得します
* @return multitype:
*/
public function listSearchable(){
return array_filter ( $this ->fields, function ($f) {
return $f->isSearchable ();
} );
}
/**
* すべての参加リストのフィールドを取得します
* @return multitype:
*/
public function listGridable() {
return array_filter ( $ this->fields, function ($f) {
return $f->isGridable ();
} );
}
/**
* 表示に参加しているすべてのフィールドを取得します
* @return multitype:
*/
public function listViewable( ){
return array_filter ( $this->fields, function ($f) {
return $f->isViewable ();
} ); (){
return array_filter ( $this->fields, function ($f) {
return $f->isInsertable ();
} );
}
/**
* 作成に関係するすべてのフィールドを取得します
* @return multitype:
*/
public function listUpdatable(){
return array_filter ( $this->fields, function ($f) {
return $f->isUpdatable ();
} );
}
/**
* 編集に参加しているすべてのフィールドを取得します
* @return multitype:
*/
public function listCreated(){
return array_filter ( $this->fields, function ($field) {
return $field->isCreated;
} );
}
/**
* すべての作成時間フィールドを取得します。通常は 1 つだけです
* @return multitype:
*/
public function listUpdated(){
return array_filter ( $this->fields, function ($field) {
return $field->isUpdated;
} );
}
/**
* すべての変更時刻フィールドを取得します。通常は 1 つだけです
* @return multitype:
*/
パブリック関数 URL ($method, $params = array()) {
return STemplate::append ( LUrl::ice () . '/', array_merge ( $params, array (
)'c' => $this->コントローラー,
'a' => $this->アクション,
'm' => $メソッド
) );
}
/**
* 共通の複数選択操作を追加します
*
* @return SCrudOperationMulti
*/
public functionoperationMulti($method) {
return $this->operation->add ( new SCrudOperationMulti ( $this, $method ) );
}
/**
* 共通の単一行操作を追加します
*
* @return SCrudOperationRow
*/
public functionoperationRow($method) {
return $this->operation->add ( new SCrudOperationRow ( $this, $method ) );
}
/**
* 共通のフルテーブルオペレーションを追加します
*
* @return SCrudOperationTable
*/
public functionoperationTable($method) ) {
return $this->operation->add ( new SCrudOperationTable ( $this, $method ) );
}
/**
* オペレーション クラスによって実装されるリクエストの処理
*
* @param SRequest $req
*/
public function process(SRequest $req) {
/ /処理の前に、まず検索条件のフィールド、リスト、作成、変更、表示、並べ替えを初期化します
foreach($this->fields as $field){
if(!$field->isAbandon){
$field - >process();
}
}
//オペレーションを設定します
if($this->operationInsert){
$this->operation->insert(new SCrudOperationTable($this,SCrudOperation::METHOD_INSERT) ) );
$this->operation->insert(new SCrudOperation($this,SCrudOperation::METHOD_DOINSERT));
}
if($this->operationMultiDelete){
$this->operation-> ; insert(new SCrudOperationMulti($this,SCrudOperation::METHOD_DELETEMULTI));
}
if($this->operationDelete){
$this->operation->insert(new SCrudOperationRow($this,SCrudOperation:: METHOD_DELETE ));
}
if($this->operationUpdate){
$this->operation->insert(new SCrudOperationRow($this,SCrudOperation::METHOD_UPDATE));
$this->operation- > ;insert(new SCrudOperation($this,SCrudOperation::METHOD_DOUPDATE));
}
if($this->operationView){
$this->operation->insert(new SCrudOperationRow($this,SCrudOperation: : METHOD_VIEW));
}
//処理のためオペレーションクラスに転送
$this->operation->process ( $req );
}
/**
* CRUD フラグメントを表示します
* @param 不明 $tpl テンプレート名
* @param 不明 $params
*/
パブリック関数表示($tpl, $params = array()) {
display ( self::PATH_VIEW . DIRECTORY_SEPARATOR . $tpl, array_merge ( $params, array (
'url_view' => $this->url ( SCrudOperation::METHOD_VIEW) ),
' url_index' => $this->url ( SCrudOperation::METHOD_INDEX ),
' url_search' => $this->url ( SCrudOperation::METHOD_SEARCH ),
'url_insert' => this-> URL ( SCrudOperation::METHOD_INSERT ),
'url_update' => $this->url( SCrudOperation::METHOD_UPDATE ),
'url_doupdate' => URL ( SCrudOperation::METHOD_DOUPDATE ) ),
' url_doinsert' => $this->url ( SCrudOperation::METHOD_DOINSERT ),
' url_delete' =>$this->url ( SCrudOperation::METHOD_DELETE ),
'url_delete_multi'=>$ this-> url(SCrudOperation::METHOD_DELETEMULTI)
) ) );
}
}
/**
* すべての CRUD サブクラスの基本クラスは、メイン CRUD オブジェクトを記録するメソッドを実装します
*
* @author bluehire
*
*/
抽象クラス SCrudSub {
// メイン CRUD オブジェクト
protected $crud;
上記IcePHP フレームワークに含まれています。 高速バックエンドの一般的な CRUD 機能フレームワークです。 (5) SCrud マスター コントロール クラスのコンテンツ。その他の関連コンテンツについては、PHP 中国語 Web サイト (www.php.cn) に注目してください。