當前位置: 首頁>>代碼示例>>PHP>>正文


PHP File::className方法代碼示例

本文整理匯總了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']);
 }
開發者ID:shkrad,項目名稱:my_music_storage,代碼行數:7,代碼來源:Cover.php

示例2: getFiles

 /**
  * @return \yii\db\ActiveQuery
  */
 public function getFiles()
 {
     return $this->hasMany(File::className(), ['collection_id' => 'collection_id'])->orderBy('weight');
 }
開發者ID:andreyvaslv,項目名稱:crb,代碼行數:7,代碼來源:Collection.php

示例3: getFiles

 /**
  * @return \yii\db\ActiveQuery
  */
 public function getFiles()
 {
     return $this->hasMany(File::className(), ['rec_id' => 'id']);
 }
開發者ID:slavam,項目名稱:placement,代碼行數:7,代碼來源:Person.php

示例4: getPhoto

 /**
  * Места работы
  * @return array
  */
 public function getPhoto()
 {
     return $this->hasOne(File::className(), ['id' => 'photo_id']);
 }
開發者ID:marvin255,項目名稱:cv,代碼行數:8,代碼來源:Cv.php

示例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]);
 }
開發者ID:vfokov,項目名稱:tims2,代碼行數:7,代碼來源:Record.php

示例6: getFiles

 /**
  * @return \yii\db\ActiveQuery
  */
 public function getFiles()
 {
     return $this->hasMany(File::className(), ['id' => 'file_id'])->viaTable('file_filegroup', ['group_id' => 'id']);
 }
開發者ID:rsvancara,項目名稱:filedownloader,代碼行數:7,代碼來源:FileGroup.php

示例7: getFiles

 /**
  * @return \yii\db\ActiveQuery
  */
 public function getFiles()
 {
     return $this->hasMany(\app\models\File::className(), ['sensorid' => 'id']);
 }
開發者ID:ICHydro,項目名稱:anaconda,代碼行數:7,代碼來源:Sensor.php

示例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);
    }
});
開發者ID:shkrad,項目名稱:my_music_storage,代碼行數:31,代碼來源:File.php


注:本文中的app\models\File::className方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。