コード例 #1
0
ファイル: _Objects.php プロジェクト: vojtajina/sitellite
 function Signature($id = false)
 {
     parent::Generic('petition_signature', 'id');
     if (is_array($id)) {
         $newkey = $this->add($id);
         if (is_numeric($newkey)) {
             $this->setCurrent($this->get($newkey));
         } else {
             $this->setCurrent($this->get($id['id']));
         }
     } elseif (is_object($id)) {
         $this->setCurrent($id);
     } elseif ($id) {
         $this->setCurrent($this->get($id));
     }
     // Signature cascade
 }
コード例 #2
0
ファイル: Files.php プロジェクト: vojtajina/sitellite
 function Files()
 {
     parent::Generic('devfiles_file', 'id');
     $this->store = new FileStore('inc/app/devfiles/data');
     $this->store->autoInit = true;
 }
コード例 #3
0
ファイル: Project.php プロジェクト: vojtajina/sitellite
 function TimeTrackerProject()
 {
     parent::Generic('timetracker_project', 'id');
 }
コード例 #4
0
ファイル: Post.php プロジェクト: vojtajina/sitellite
 function SiteForum_Post()
 {
     parent::Generic('siteforum_post', 'id', 'topic_id');
     $this->usePermissions = true;
 }
コード例 #5
0
ファイル: Comment.php プロジェクト: vojtajina/sitellite
 function SitepollComment()
 {
     parent::Generic('sitepoll_comment', 'id', 'poll');
 }
コード例 #6
0
ファイル: DevNote.php プロジェクト: vojtajina/sitellite
 function DevNote()
 {
     parent::Generic('devnotes_message', 'id');
 }
コード例 #7
0
ファイル: Topic.php プロジェクト: vojtajina/sitellite
 function SiteForum_Topic()
 {
     parent::Generic('siteforum_topic', 'id');
     $this->usePermissions = true;
 }
コード例 #8
0
ファイル: Event.php プロジェクト: vojtajina/sitellite
 function SiteEvent_Event()
 {
     parent::Generic('siteevent_event', 'id');
     $this->usePermissions = true;
 }
コード例 #9
0
ファイル: Entry.php プロジェクト: vojtajina/sitellite
 function TimeTrackerEntry()
 {
     parent::Generic('timetracker_entry', 'id');
 }
コード例 #10
0
ファイル: Story.php プロジェクト: vojtajina/sitellite
 function NewsStory()
 {
     parent::Generic('sitellite_news', 'id');
     $this->usePermissions = true;
     $this->multilingual = true;
 }
コード例 #11
0
ファイル: Comment.php プロジェクト: vojtajina/sitellite
 function NewsComment()
 {
     parent::Generic('sitellite_news_comment', 'id', 'story_id');
 }
コード例 #12
0
ファイル: Poll.php プロジェクト: vojtajina/sitellite
 function SitePoll()
 {
     parent::Generic('sitepoll_poll', 'id');
     //$this->usePermissions = true;
     //$this->multilingual = true;
 }