コード例 #1
0
ファイル: phototag.php プロジェクト: knigherrant/decopatio
 /**
  * Class Constructor
  *
  * @since   1.0
  * @param   JDatabase
  */
 public function __construct($db)
 {
     parent::__construct('#__social_photos_tag', 'id', $db);
 }
コード例 #2
0
ファイル: config.php プロジェクト: knigherrant/decopatio
 public function __construct(&$db)
 {
     parent::__construct('#__social_config', 'type', $db);
 }
コード例 #3
0
 /**
  * Class Constructor.
  *
  * @since	1.1
  * @access	public
  */
 public function __construct($db)
 {
     parent::__construct('#__social_search_filter', 'id', $db);
 }
コード例 #4
0
ファイル: streamitem.php プロジェクト: knigherrant/decopatio
 public function __construct($db)
 {
     parent::__construct('#__social_stream_item', 'id', $db);
 }
コード例 #5
0
 public function __construct($db)
 {
     parent::__construct('#__social_step_sessions', 'session_id', $db);
 }
コード例 #6
0
ファイル: eventmeta.php プロジェクト: knigherrant/decopatio
 public function __construct(&$db)
 {
     parent::__construct('#__social_events_meta', 'id', $db);
 }
コード例 #7
0
ファイル: calendar.php プロジェクト: knigherrant/decopatio
 /**
  * Class Constructor.
  *
  * @since	1.0
  * @access	public
  */
 public function __construct(&$db)
 {
     parent::__construct('#__social_apps_calendar', 'id', $db);
 }
コード例 #8
0
ファイル: photo.php プロジェクト: ppantilla/bbninja
 /**
  * Class Constructor
  *
  * @since   1.0
  * @param   JDatabase
  */
 public function __construct($db)
 {
     // Create a unique id only for each table instance
     // This is to help controller implement the right element.
     $this->_uuid = uniqid();
     //determide if load method should get from cache variable or not.
     if (is_null(self::$_cache)) {
         self::$_cache = false;
     }
     parent::__construct('#__social_photos', 'id', $db);
 }
コード例 #9
0
ファイル: bookmark.php プロジェクト: knigherrant/decopatio
 public function __construct($db)
 {
     parent::__construct('#__social_bookmarks', 'id', $db);
 }
コード例 #10
0
ファイル: migrators.php プロジェクト: knigherrant/decopatio
 public function __construct(&$db)
 {
     parent::__construct('#__social_migrators', 'id', $db);
 }
コード例 #11
0
 public function __construct($db)
 {
     parent::__construct('#__social_friends_invitations', 'id', $db);
 }
コード例 #12
0
 public function __construct(&$db)
 {
     parent::__construct('#__social_privacy_items', 'id', $db);
 }
コード例 #13
0
ファイル: indexer.php プロジェクト: knigherrant/decopatio
 public function __construct(&$db)
 {
     parent::__construct('#__social_indexer', 'id', $db);
 }
コード例 #14
0
ファイル: storagelog.php プロジェクト: knigherrant/decopatio
 /**
  * Class Constructor
  *
  * @since	1.0
  * @access	public
  * @param	string
  * @return
  */
 public function __construct(&$db)
 {
     parent::__construct('#__social_storage_log', 'id', $db);
 }
コード例 #15
0
ファイル: profile.php プロジェクト: knigherrant/decopatio
 public function __construct(&$db)
 {
     parent::__construct('#__social_profiles', 'id', $db);
 }
コード例 #16
0
 public function __construct($db)
 {
     parent::__construct('#__social_conversations_participants_history', 'id', $db);
 }
コード例 #17
0
 public function __construct(&$db)
 {
     parent::__construct('#__social_conversations_message', 'id', $db);
 }
コード例 #18
0
ファイル: fielddata.php プロジェクト: knigherrant/decopatio
 public function __construct(&$db)
 {
     parent::__construct('#__social_fields_data', 'id', $db);
 }
コード例 #19
0
ファイル: discussion.php プロジェクト: knigherrant/decopatio
 public function __construct(&$db)
 {
     parent::__construct('#__social_discussions', 'id', $db);
 }
コード例 #20
0
ファイル: alertmap.php プロジェクト: knigherrant/decopatio
 public function __construct(&$db)
 {
     parent::__construct('#__social_alert_map', 'id', $db);
 }
コード例 #21
0
ファイル: blockuser.php プロジェクト: knigherrant/decopatio
 public function __construct($db)
 {
     parent::__construct('#__social_block_users', 'id', $db);
 }
コード例 #22
0
ファイル: uploader.php プロジェクト: BetterBetterBetter/B3App
 /**
  * Class constructor.
  *
  * @since	1.0
  * @access	public
  */
 public function __construct($db)
 {
     parent::__construct('#__social_uploader', 'id', $db);
 }
コード例 #23
0
ファイル: subscription.php プロジェクト: ppantilla/bbninja
 public function __construct($db)
 {
     parent::__construct('#__social_subscriptions', 'id', $db);
 }
コード例 #24
0
ファイル: access.php プロジェクト: knigherrant/decopatio
 public function __construct(&$db)
 {
     parent::__construct('#__social_access', 'id', $db);
 }
コード例 #25
0
ファイル: linkimage.php プロジェクト: knigherrant/decopatio
 public function __construct($db)
 {
     parent::__construct('#__social_links_images', 'id', $db);
 }
コード例 #26
0
 public function __construct($db)
 {
     parent::__construct('#__social_conversations', 'id', $db);
 }
コード例 #27
0
 public function __construct(&$db)
 {
     parent::__construct('#__social_clusters_categories', 'id', $db);
 }
コード例 #28
0
ファイル: pointsmap.php プロジェクト: knigherrant/decopatio
 /**
  * Class construct
  *
  * @since	1.0
  * @param	JDatabase
  */
 public function __construct(&$db)
 {
     parent::__construct('#__social_points_maps', 'id', $db);
 }
コード例 #29
0
ファイル: tmp.php プロジェクト: knigherrant/decopatio
 /**
  * Constructor method for this class.
  *
  * @access	public
  * @param	JDatabase	$db		The database object.
  * @return	null
  */
 public function __construct($db)
 {
     parent::__construct('#__social_tmp', 'id', $db);
 }
コード例 #30
0
 /**
  * Class constructor
  *
  * @since	1.0
  * @access	public
  *
  * @author	Mark Lee <*****@*****.**>
  */
 public function __construct($db)
 {
     parent::__construct('#__social_default_covers', 'id', $db);
 }