class radioactivity_incident_storage in Radioactivity 7
Hierarchy
Expanded class hierarchy of radioactivity_incident_storage
File
- storage/
radioactivity_incident_storage.php, line 3
View source
class radioactivity_incident_storage {
protected $field_id;
protected $table_name;
protected $field_name;
protected $energy_column_name;
protected $timestamp_column_name;
/**
* Constructor
* @param unknown_type $field_id
*/
public function __construct($field_id) {
$field_info = field_info_field_by_id($field_id);
$this->field_id = $field_id;
$this->half_life = $field_info['settings']['half_life'];
$this->cut_off = $field_info['settings']['cut_off'];
$this->incident_energy = $field_info['settings']['incident_energy'];
$this->field_name = $field_info['field_name'];
$this->table_name = "field_data_" . $this->field_name;
$this->energy_column_name = $this->field_name . '_' . RADIOACTIVITY_FIELD_ENERGY;
$this->timestamp_column_name = $this->field_name . '_' . RADIOACTIVITY_FIELD_TIMESTAMP;
}
function add_incident($entities_id, $energy = null) {
}
function process_incidents() {
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
radioactivity_incident_storage:: |
protected | property | ||
radioactivity_incident_storage:: |
protected | property | ||
radioactivity_incident_storage:: |
protected | property | ||
radioactivity_incident_storage:: |
protected | property | ||
radioactivity_incident_storage:: |
protected | property | ||
radioactivity_incident_storage:: |
function | 2 | ||
radioactivity_incident_storage:: |
function | 1 | ||
radioactivity_incident_storage:: |
public | function | Constructor | 2 |