コード例 #1
0
ファイル: Link.php プロジェクト: radicaldesigns/amp
 function _afterSave()
 {
     $reltype = $this->getData('reltype');
     $this->_removeRelatedLinks();
     $this->_saveRelatedLinks($reltype);
     parent::_afterSave();
 }
コード例 #2
0
ファイル: Group.php プロジェクト: radicaldesigns/amp
 function _afterSave()
 {
     $this->_renewPermissions();
     $this->_updateSections();
     AMP_permission_update();
     parent::_afterSave();
 }
コード例 #3
0
ファイル: Setup.php プロジェクト: radicaldesigns/amp
 function _afterSave()
 {
     $this->_updateTemplates();
     $this->_updatePHPlistConfig();
     $this->_updatePunbbConfig();
     $this->_save_custom_config();
     $this->_clearCached();
     parent::_afterSave();
 }
コード例 #4
0
ファイル: RouteSlug.php プロジェクト: radicaldesigns/amp
 function _afterSave()
 {
     $this->update_routes();
     parent::_afterSave();
 }
コード例 #5
0
ファイル: Schedule.php プロジェクト: radicaldesigns/amp
 function _afterSave()
 {
     $this->_updateFormRef('AMPSchedule');
     $this->_updateFormRef('AMPAppointment');
     parent::_afterSave();
 }
コード例 #6
0
ファイル: Article.inc.php プロジェクト: radicaldesigns/amp
 function _afterSave()
 {
     if ($this->_save_with_callbacks) {
         $this->_save_aliases();
         $this->_save_route_slug();
         $this->_save_sections_related();
         $this->_save_tags();
     }
     parent::_afterSave();
 }
コード例 #7
0
ファイル: Section.inc.php プロジェクト: radicaldesigns/amp
 function _afterSave()
 {
     $this->_save_custom_config();
     $this->_save_route_slug();
     parent::_afterSave();
 }
コード例 #8
0
ファイル: Subscription.php プロジェクト: radicaldesigns/amp
 function _afterSave()
 {
     $data = $this->getData();
     parent::_afterSave();
 }
コード例 #9
0
ファイル: User.php プロジェクト: radicaldesigns/amp
 function _afterSave()
 {
     AMP_permission_update();
     parent::_afterSave();
 }
コード例 #10
0
ファイル: Detail.php プロジェクト: radicaldesigns/amp
 function _afterSave()
 {
     $this->_renewPermissions();
     parent::_afterSave();
 }
コード例 #11
0
ファイル: Layout.php プロジェクト: radicaldesigns/amp
 function _afterSave()
 {
     $this->_saveLocations();
     parent::_afterSave();
 }