Joomla Platform  13.1
Documentation des API du framework Joomla Platform
 Tout Classes Espaces de nommage Fichiers Fonctions Variables Pages
Référence de la classe JTableModule
+ Graphe d'héritage de JTableModule:
+ Graphe de collaboration de JTableModule:

Liste de tous les membres

Fonctions membres publiques

 __construct (JDatabaseDriver $db)
 check ()
 bind ($array, $ignore= '')
- Fonctions membres publiques inherited from JTable
 __construct ($table, $key, JDatabaseDriver $db)
 attachObserver (JObserverInterface $observer)
 getObserverOfClass ($observerClass)
 getFields ()
 appendPrimaryKeys ($query, $pk=null)
 getTableName ()
 getKeyName ($multiple=false)
 getDbo ()
 setDBO (JDatabaseDriver $db)
 setRules ($input)
 getRules ()
 reset ()
 load ($keys=null, $reset=true)
 store ($updateNulls=false)
 save ($src, $orderingFilter= '', $ignore= '')
 delete ($pk=null)
 checkOut ($userId, $pk=null)
 checkIn ($pk=null)
 hasPrimaryKey ()
 hit ($pk=null)
 isCheckedOut ($with=0, $against=null)
 getNextOrder ($where= '')
 getPrimaryKey (array $keys=array())
 reorder ($where= '')
 move ($delta, $where= '')
 publish ($pks=null, $state=1, $userId=0)
- Fonctions membres publiques inherited from JObject
 __construct ($properties=null)
 __toString ()
 def ($property, $default=null)
 get ($property, $default=null)
 getProperties ($public=true)
 getError ($i=null, $toString=true)
 getErrors ()
 set ($property, $value=null)
 setProperties ($properties)
 setError ($error)

Fonctions membres protégées

 _getAssetName ()
 _getAssetTitle ()
 _getAssetParentId (JTable $table=null, $id=null)
- Fonctions membres protégées inherited from JTable
 _lock ()
 _unlock ()

Additional Inherited Members

- Fonctions membres publiques statiques inherited from JTable
static getInstance ($type, $prefix= 'JTable', $config=array())
static addIncludePath ($path=null)
- Attributs protégés inherited from JTable
 $_tbl = ''
 $_tbl_key = ''
 $_tbl_keys = array()
 $_db
 $_trackAssets = false
 $_rules
 $_locked = false
 $_autoincrement = true
 $_observers
- Attributs protégés inherited from JObject
 $_errors = array()

Description détaillée

Définition à la ligne 19 du fichier module.php.


Documentation des constructeurs et destructeur

JTableModule::__construct ( JDatabaseDriver  $db)

Constructor.

Paramètres:
JDatabaseDriver$dbDatabase driver object.
Depuis:
11.1

Définition à la ligne 28 du fichier module.php.

Références JFactory\getConfig().

{
parent::__construct('#__modules', 'id', $db);
$this->access = (int) JFactory::getConfig()->get('access');
}

+ Voici le graphe d'appel pour cette fonction :


Documentation des fonctions membres

JTableModule::_getAssetName ( )
protected

Method to compute the default name of the asset. The default name is in the form table_name.id where id is the value of the primary key of the table.

Renvoie:
string
Depuis:
11.1

Réimplémentée à partir de JTable.

Définition à la ligne 44 du fichier module.php.

{
return 'com_modules.module.' . (int) $this->$k;
}
JTableModule::_getAssetParentId ( JTable  $table = null,
  $id = null 
)
protected

Method to get the parent asset id for the record

Paramètres:
JTable$tableA JTable object (optional) for the asset parent
integer$idThe id (optional) of the content.
Renvoie:
integer
Depuis:
11.1

Réimplémentée à partir de JTable.

Définition à la ligne 73 du fichier module.php.

{
$assetId = null;
// This is a module that needs to parent with the extension.
if ($assetId === null)
{
// Build the query to get the asset id of the parent component.
$query = $this->_db->getQuery(true)
->select($this->_db->quoteName('id'))
->from($this->_db->quoteName('#__assets'))
->where($this->_db->quoteName('name') . ' = ' . $this->_db->quote('com_modules'));
// Get the asset id from the database.
$this->_db->setQuery($query);
if ($result = $this->_db->loadResult())
{
$assetId = (int) $result;
}
}
// Return the asset id.
if ($assetId)
{
return $assetId;
}
else
{
return parent::_getAssetParentId($table, $id);
}
}
JTableModule::_getAssetTitle ( )
protected

Method to return the title to use for the asset table.

Renvoie:
string
Depuis:
11.1

Réimplémentée à partir de JTable.

Définition à la ligne 58 du fichier module.php.

{
return $this->title;
}
JTableModule::bind (   $array,
  $ignore = '' 
)

Overloaded bind function.

Paramètres:
array$arrayNamed array.
mixed$ignoreAn optional array or space separated list of properties to ignore while binding.
Renvoie:
mixed Null if operation was satisfactory, otherwise returns an error
Voir également:
JTable::bind()
Depuis:
11.1

Réimplémentée à partir de JTable.

Définition à la ligne 147 du fichier module.php.

Références JRegistry\loadArray().

{
if (isset($array['params']) && is_array($array['params']))
{
$registry = new JRegistry;
$registry->loadArray($array['params']);
$array['params'] = (string) $registry;
}
// Bind the rules.
if (isset($array['rules']) && is_array($array['rules']))
{
$rules = new JAccessRules($array['rules']);
$this->setRules($rules);
}
return parent::bind($array, $ignore);
}

+ Voici le graphe d'appel pour cette fonction :

JTableModule::check ( )

Overloaded check function.

Renvoie:
boolean True if the instance is sane and able to be stored in the database.
Voir également:
JTable::check()
Depuis:
11.1

Réimplémentée à partir de JTable.

Définition à la ligne 114 du fichier module.php.

Références JText\_().

{
// Check for valid name
if (trim($this->title) == '')
{
$this->setError(JText::_('JLIB_DATABASE_ERROR_MUSTCONTAIN_A_TITLE_MODULE'));
return false;
}
// Check the publish down date is not earlier than publish up.
if ((int) $this->publish_down > 0 && $this->publish_down < $this->publish_up)
{
// Swap the dates.
$temp = $this->publish_up;
$this->publish_up = $this->publish_down;
$this->publish_down = $temp;
}
return true;
}

+ Voici le graphe d'appel pour cette fonction :


La documentation de cette classe a été générée à partir du fichier suivant :