コード例 #1
0
ファイル: Config.php プロジェクト: romaninsh/dokku_alt
 function init()
 {
     parent::init();
     $this->hasOne('dokku_alt/App');
     $this->addField('name');
     $this->addField('value');
     $this->addHook('beforeInsert,beforeDelete,beforeModify', $this);
 }
コード例 #2
0
ファイル: Access.php プロジェクト: romaninsh/dokku_alt
 function init()
 {
     parent::init();
     //$this->hasOne('dokku_alt/App');
     $this->addField('type');
     $this->addField('fingerprint');
     $this->addField('publickey')->type('text')->caption('Public Key');
     $this->addField('privatekey')->type('text')->hint('Optional')->caption('Private Key');
 }