Docs.php 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <?php
  2. namespace manager\models;
  3. use Yii;
  4. use yii\helpers\ArrayHelper;
  5. use yii\db\ActiveRecord;
  6. use yii\helpers\FileHelper;
  7. class Docs extends ActiveRecord
  8. {
  9. /**
  10. * @var string
  11. */
  12. public static $story_dir = '/images/docs';
  13. public $file = null;
  14. // public $cat = '';
  15. /**
  16. * {@inheritdoc}
  17. */
  18. public static function tableName()
  19. {
  20. return 'docs';
  21. }
  22. /**
  23. * {@inheritdoc}
  24. */
  25. public function rules()
  26. {
  27. return [
  28. [['title', 'uid'], 'required'],
  29. [['title', 'text', 'uid', 'cat'], 'string'],
  30. [['id'], 'integer'],
  31. ];
  32. }
  33. /**
  34. * {@inheritdoc}
  35. */
  36. public function attributeLabels()
  37. {
  38. return [
  39. 'title' => 'Наименование',
  40. 'text' => 'Описание',
  41. 'uid' => 'уникальный код',
  42. 'id' => 'ID',
  43. 'cat' => 'Папка'
  44. ];
  45. }
  46. /**
  47. * {@inheritdoc}
  48. */
  49. public function CatCreate( $cat )
  50. {
  51. $directory = FileHelper::normalizePath( Yii::getAlias('@webroot') . DIRECTORY_SEPARATOR . self::$story_dir . DIRECTORY_SEPARATOR. $cat );
  52. if( file_exists( $directory ) ){
  53. Yii::$app->session->setFlash('err', 'Папка существует: '.$cat);
  54. return false;
  55. }
  56. if( !FileHelper::createDirectory( $directory) ){
  57. Yii::$app->session->setFlash('err', 'Ошибка создания папки: '.$cat);
  58. return false;
  59. }
  60. Yii::$app->session->setFlash('success', 'Создать папку '.$cat);
  61. return true;
  62. }
  63. public function GetCat()
  64. {
  65. $cat = '/'.Yii::$app->request->get('cat', '');
  66. return FileHelper::normalizePath( Yii::getAlias('@webroot') . DIRECTORY_SEPARATOR . self::$story_dir.$cat );
  67. }
  68. public function GetUrl()
  69. {
  70. $cat = '/'.Yii::$app->request->get('cat', '');
  71. return FileHelper::normalizePath( DIRECTORY_SEPARATOR . self::$story_dir.$cat );
  72. }
  73. public function GetRootCat()
  74. {
  75. return FileHelper::normalizePath( Yii::getAlias('@webroot') . DIRECTORY_SEPARATOR . self::$story_dir );
  76. }
  77. }