Some minor fixes
This commit is contained in:
parent
ad10cb32ce
commit
ec4c7ae3d1
@ -66,14 +66,14 @@ class Import extends Command
|
||||
if ($this->option('tags'))
|
||||
{
|
||||
$tags = explode(',',$this->option('tags'));
|
||||
$t = Tag::whereIn('tag',$tags)->pluck('id');
|
||||
$t = Tag::whereIn('tag',$tags)->pluck('id')->toArray();
|
||||
}
|
||||
|
||||
// People
|
||||
if ($this->option('people'))
|
||||
{
|
||||
$tags = explode(',',$this->option('people'));
|
||||
$p = Person::whereIn('tag',$tags)->pluck('id');
|
||||
$p = Person::whereIn('tag',$tags)->pluck('id')->toArray();
|
||||
}
|
||||
|
||||
$c = 0;
|
||||
@ -106,7 +106,7 @@ class Import extends Command
|
||||
$po->filename = $file;
|
||||
}
|
||||
|
||||
$po->date_taken = strtotime($po->property('exif:DateTime'));
|
||||
$po->date_taken = strtotime($po->property('exif:DateTime') ? $po->property('exif:DateTime') : $po->property('exif:DateTimeOriginal'));
|
||||
$po->subsectime = $po->property('exif:SubSecTimeOriginal');
|
||||
|
||||
$po->signature = $po->property('signature');
|
||||
@ -168,8 +168,10 @@ class Import extends Command
|
||||
$this->info(sprintf('Image [%s] stored in DB: %s',$file,$po->id));
|
||||
|
||||
// Record our people and tags
|
||||
$po->People()->sync($p->toArray());
|
||||
$po->Tags()->sync($t->toArray());
|
||||
if ($p)
|
||||
$po->People()->sync($p);
|
||||
if ($t)
|
||||
$po->Tags()->sync($t);
|
||||
}
|
||||
|
||||
$bar->finish();
|
||||
|
@ -50,7 +50,7 @@ class Move extends Command
|
||||
}
|
||||
elseif ($this->option('id'))
|
||||
{
|
||||
$po = Photo::notRemove()->notDuplicate()->where('id',Photo::path($this->option('id')));
|
||||
$po = Photo::notRemove()->notDuplicate()->where('id',$this->option('id'));
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -31,6 +31,7 @@
|
||||
|
||||
<div class="text-center">{{ $photos->links() }}</div>
|
||||
<div class="panel-body">
|
||||
@if ($photos->count())
|
||||
<form action="{{ url('/deletes') }}" method="POST">
|
||||
<table class="table table-striped table-condensed table-hover">
|
||||
@foreach ($data as $k=>$v)
|
||||
@ -66,6 +67,9 @@ endswitch ?>
|
||||
<button class="btn btn-default">Confirm Delete</button>
|
||||
{{ csrf_field() }}
|
||||
</form>
|
||||
@else
|
||||
NONE!
|
||||
@endif
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user