本文整理汇总了PHP中app\models\File::className方法的典型用法代码示例。如果您正苦于以下问题:PHP File::className方法的具体用法?PHP File::className怎么用?PHP File::className使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类app\models\File
的用法示例。
在下文中一共展示了File::className方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getFile
/**
* @return \yii\db\ActiveQuery
*/
public function getFile()
{
return $this->hasOne(File::className(), ['id' => 'file_id']);
}
示例2: getFiles
/**
* @return \yii\db\ActiveQuery
*/
public function getFiles()
{
return $this->hasMany(File::className(), ['collection_id' => 'collection_id'])->orderBy('weight');
}
示例3: getFiles
/**
* @return \yii\db\ActiveQuery
*/
public function getFiles()
{
return $this->hasMany(File::className(), ['rec_id' => 'id']);
}
示例4: getPhoto
/**
* Места работы
* @return array
*/
public function getPhoto()
{
return $this->hasOne(File::className(), ['id' => 'photo_id']);
}
示例5: getImageOverviewCamera
/**
* @return \yii\db\ActiveQuery
*/
public function getImageOverviewCamera()
{
return $this->hasOne(File::className(), ['record_id' => 'id'])->andWhere(['record_file_type' => EvidenceFileType::TYPE_IMAGE_OVERVIEW_CAMERA]);
}
示例6: getFiles
/**
* @return \yii\db\ActiveQuery
*/
public function getFiles()
{
return $this->hasMany(File::className(), ['id' => 'file_id'])->viaTable('file_filegroup', ['group_id' => 'id']);
}
示例7: getFiles
/**
* @return \yii\db\ActiveQuery
*/
public function getFiles()
{
return $this->hasMany(\app\models\File::className(), ['sensorid' => 'id']);
}
示例8: getMimeType
}
/**
* @return string
*/
public function getMimeType()
{
return FileHelper::getMimeType($this->getPath(true));
}
/**
* @return boolean
*/
public function upload()
{
if ($this->validate()) {
if ($this->isNewRecord) {
$this->save();
}
FileHelper::createDirectory($this->getPath(true, true, false));
$this->uploadedFiles[0]->saveAs(FileHelper::normalizePath($this->getPath(true)));
return true;
} else {
return false;
}
}
}
Event::on(File::className(), File::EVENT_BEFORE_DELETE, function ($event) {
$path = $event->sender->getPath(true);
if (file_exists($path)) {
unlink($path);
}
});