khanat-opennel-code/code/ryzom/tools/server/www/webtt/app/models/file_identifier.php

27 lines
761 B
PHP
Raw Normal View History

<?php
class FileIdentifier extends AppModel {
var $name = 'FileIdentifier';
var $displayField = 'command';
2011-07-14 14:49:25 +00:00
var $order = 'FileIdentifier.id';
var $scaffoldForbiddenActions = array("index", "add", "admin_add", "edit", "admin_edit", "delete", "admin_delete");
//The Associations below have been created with all possible keys, those that are not needed can be removed
var $belongsTo = array(
'ImportedTranslationFile' => array(
'className' => 'ImportedTranslationFile',
'foreignKey' => 'imported_translation_file_id',
'conditions' => '',
'fields' => '',
2011-07-14 14:49:25 +00:00
// 'order' => ''
),
'Identifier' => array(
'className' => 'Identifier',
'foreignKey' => 'identifier_id',
'conditions' => '',
'fields' => '',
2011-07-14 14:49:25 +00:00
// 'order' => ''
)
);
}