コード例 #1
0
ファイル: plugins.php プロジェクト: eokyere/elgg
 protected function initialise_attributes()
 {
     parent::initialise_attributes();
     $this->attributes['subtype'] = "plugin";
 }
コード例 #2
0
ファイル: classes.php プロジェクト: eokyere/elgg
 protected function initialise_attributes()
 {
     parent::initialise_attributes();
     $this->attributes['subtype'] = self::SUBTYPE;
     $this->attributes['access_id'] = ACCESS_PUBLIC;
     $this->attributes['owner_guid'] = 0;
     $this->attributes['container_guid'] = 0;
 }
コード例 #3
0
 protected function initialise_attributes()
 {
     global $CONFIG;
     parent::initialise_attributes();
     $this->attributes['subtype'] = self::SUBTYPE;
     $this->attributes['access_id'] = ACCESS_PUBLIC;
     $this->attributes['owner_guid'] = $CONFIG->site_guid;
     $this->attributes['container_guid'] = $CONFIG->site_guid;
 }
コード例 #4
0
 public function initialise_attributes()
 {
     parent::initialise_attributes();
     $this->attributes['subtype'] = 'sitepages_page';
 }