Difference between revisions of "Freeside:3:Documentation:Developer/FS/tower sector"

From Freeside
Jump to: navigation, search
m (Edit via perl MediaWiki framework (1.13))
 
m (Edit via perl MediaWiki framework (1.13))
 
Line 18: Line 18:
 
</code>
 
</code>
 
==DESCRIPTION==
 
==DESCRIPTION==
An FS::tower_sector object represents an example. FS::tower_sector inherits from FS::Record. The following fields are currently supported:
+
An FS::tower_sector object represents an tower sector. FS::tower_sector inherits from FS::Record. The following fields are currently supported:
  
 
; sectornum
 
; sectornum
Line 31: Line 31:
 
==METHODS==
 
==METHODS==
 
; new HASHREF
 
; new HASHREF
:Creates a new example. To add the example to the database, see [[#insert|"insert"]].
+
:Creates a new sector. To add the sector to the database, see [[#insert|"insert"]].
  
 
:Note that this stores the hash reference, not a distinct copy of the hash it points to. You can ask the object for a copy with the ''hash'' method.
 
:Note that this stores the hash reference, not a distinct copy of the hash it points to. You can ask the object for a copy with the ''hash'' method.
Line 41: Line 41:
 
:Replaces the OLD_RECORD with this one in the database. If there is an error, returns the error, otherwise returns false.
 
:Replaces the OLD_RECORD with this one in the database. If there is an error, returns the error, otherwise returns false.
 
; check
 
; check
:Checks all fields to make sure this is a valid example. If there is an error, returns the error, otherwise returns false. Called by the insert and replace methods.
+
:Checks all fields to make sure this is a valid sector. If there is an error, returns the error, otherwise returns false. Called by the insert and replace methods.
 
; tower
 
; tower
 
:Returns the tower for this sector, as an FS::tower object (see [[Freeside:3:Documentation:Developer/FS/tower|FS::tower]]).
 
:Returns the tower for this sector, as an FS::tower object (see [[Freeside:3:Documentation:Developer/FS/tower|FS::tower]]).
 
; description
 
; description
 
:Returns a description for this sector including tower name.
 
:Returns a description for this sector including tower name.
 +
; svc_broadband
 +
:Returns the services on this tower sector.
  
 
==BUGS==
 
==BUGS==
 
==SEE ALSO==
 
==SEE ALSO==
 
[[Freeside:3:Documentation:Developer/FS/tower|FS::tower]], [[Freeside:3:Documentation:Developer/FS/Record|FS::Record]], schema.html from the base documentation.
 
[[Freeside:3:Documentation:Developer/FS/tower|FS::tower]], [[Freeside:3:Documentation:Developer/FS/Record|FS::Record]], schema.html from the base documentation.

Latest revision as of 14:40, 27 June 2014

NAME

FS::tower_sector - Object methods for tower_sector records

SYNOPSIS

 use FS::tower_sector;

 $record = new FS::tower_sector \%hash;
 $record = new FS::tower_sector { 'column' => 'value' };

 $error = $record->insert;

 $error = $new_record->replace($old_record);

 $error = $record->delete;

 $error = $record->check;

DESCRIPTION

An FS::tower_sector object represents an tower sector. FS::tower_sector inherits from FS::Record. The following fields are currently supported:

sectornum
primary key
towernum
towernum
sectorname
sectorname
ip_addr
ip_addr

METHODS

new HASHREF
Creates a new sector. To add the sector to the database, see "insert".
Note that this stores the hash reference, not a distinct copy of the hash it points to. You can ask the object for a copy with the hash method.
insert
Adds this record to the database. If there is an error, returns the error, otherwise returns false.
delete
Delete this record from the database.
replace OLD_RECORD
Replaces the OLD_RECORD with this one in the database. If there is an error, returns the error, otherwise returns false.
check
Checks all fields to make sure this is a valid sector. If there is an error, returns the error, otherwise returns false. Called by the insert and replace methods.
tower
Returns the tower for this sector, as an FS::tower object (see FS::tower).
description
Returns a description for this sector including tower name.
svc_broadband
Returns the services on this tower sector.

BUGS

SEE ALSO

FS::tower, FS::Record, schema.html from the base documentation.