Allow syndication targets to be added/edited in admin interface
This commit is contained in:
parent
ea8395a651
commit
0ddec78d09
7 changed files with 251 additions and 0 deletions
45
resources/views/admin/syndication/create.blade.php
Normal file
45
resources/views/admin/syndication/create.blade.php
Normal file
|
@ -0,0 +1,45 @@
|
|||
@extends('master')
|
||||
|
||||
@section('title')New Syndication Target « Admin CP « @stop
|
||||
|
||||
@section('content')
|
||||
<h1>New Syndication Target</h1>
|
||||
<form action="/admin/syndication" method="post" accept-charset="utf-8" class="admin-form form">
|
||||
{{ csrf_field() }}
|
||||
<div>
|
||||
<label for="uid">Target UID:</label>
|
||||
<input type="text" name="uid" id="uid" placeholder="https://myfavoritesocialnetwork.example/aaronpk">
|
||||
</div>
|
||||
<div>
|
||||
<label for="name">Target Name:</label>
|
||||
<input type="text" name="name" id="name" placeholder="aaronpk on myfavoritesocialnetwork">
|
||||
</div>
|
||||
<div>
|
||||
<label for="service_name">Service Name:</label>
|
||||
<input type="text" name="service_name" id="service_name" placeholder="My Favorite Social Network">
|
||||
</div>
|
||||
<div>
|
||||
<label for="service_url">Service URL:</label>
|
||||
<input type="text" name="service_url" id="service_url" placeholder="https://myfavoritesocialnetwork.example/">
|
||||
</div>
|
||||
<div>
|
||||
<label for="service_photo">Service Logo:</label>
|
||||
<input type="text" name="service_photo" id="service_photo" placeholder="https://myfavoritesocialnetwork.example/img/icon.png">
|
||||
</div>
|
||||
<div>
|
||||
<label for="user_name">User Name:</label>
|
||||
<input type="text" name="user_name" id="user_name" placeholder="aaronpk">
|
||||
</div>
|
||||
<div>
|
||||
<label for="user_url">User URL:</label>
|
||||
<input type="text" name="user_url" id="user_url" placeholder="https://myfavoritesocialnetwork.example/aaronpk">
|
||||
</div>
|
||||
<div>
|
||||
<label for="user_photo">User Photo:</label>
|
||||
<input type="text" name="user_photo" id="user_photo" placeholder="https://myfavoritesocialnetwork.example/aaronpk/photo.jpg">
|
||||
</div>
|
||||
<div>
|
||||
<button type="submit" name="submit">Submit</button>
|
||||
</div>
|
||||
</form>
|
||||
@stop
|
52
resources/views/admin/syndication/edit.blade.php
Normal file
52
resources/views/admin/syndication/edit.blade.php
Normal file
|
@ -0,0 +1,52 @@
|
|||
@extends('master')
|
||||
|
||||
@section('title')Edit Syndication Target « Admin CP « @stop
|
||||
|
||||
@section('content')
|
||||
<h1>Edit syndication target</h1>
|
||||
<form action="/admin/syndication/{{ $syndication_target->id }}" method="post" accept-charset="utf-8" class="admin-form form">
|
||||
{{ csrf_field() }}
|
||||
{{ method_field('PUT') }}
|
||||
<div>
|
||||
<label for="uid">Target UID:</label>
|
||||
<input type="text" name="uid" id="uid" value="{{ old('target_uid', $syndication_target->uid) }}">
|
||||
</div>
|
||||
<div>
|
||||
<label for="name">Target Name:</label>
|
||||
<input type="text" name="name" id="name" value="{{ old('target_name', $syndication_target->name) }}">
|
||||
</div>
|
||||
<div>
|
||||
<label for="service_name">Service Name:</label>
|
||||
<input type="text" name="service_name" id="service_name" value="{{ old('service_name', $syndication_target->service_name) }}">
|
||||
</div>
|
||||
<div>
|
||||
<label for="service_url">Service URL:</label>
|
||||
<input type="text" name="service_url" id="service_url" value="{{ old('service_url', $syndication_target->service_url) }}">
|
||||
</div>
|
||||
<div>
|
||||
<label for="service_photo">Service Logo:</label>
|
||||
<input type="text" name="service_photo" id="service_photo" value="{{ old('service_photo', $syndication_target->service_photo) }}">
|
||||
</div>
|
||||
<div>
|
||||
<label for="user_name">User Name:</label>
|
||||
<input type="text" name="user_name" id="user_name" value="{{ old('user_name', $syndication_target->user_name) }}">
|
||||
</div>
|
||||
<div>
|
||||
<label for="user_url">User URL:</label>
|
||||
<input type="text" name="user_url" id="user_url" value="{{ old('user_url', $syndication_target->user_url) }}">
|
||||
</div>
|
||||
<div>
|
||||
<label for="user_photo">User Photo:</label>
|
||||
<input type="text" name="user_photo" id="user_photo" value="{{ old('user_photo', $syndication_target->user_photo) }}">
|
||||
</div>
|
||||
<div>
|
||||
<button type="submit" name="edit">Edit</button>
|
||||
</div>
|
||||
</form>
|
||||
<hr>
|
||||
<form action="/admin/syndication/{{ $syndication_target->id }}" method="post">
|
||||
{{ csrf_field() }}
|
||||
{{ method_field('DELETE') }}
|
||||
<button type="submit" name="delete">Delete syndication target</button>
|
||||
</form>
|
||||
@stop
|
22
resources/views/admin/syndication/index.blade.php
Normal file
22
resources/views/admin/syndication/index.blade.php
Normal file
|
@ -0,0 +1,22 @@
|
|||
@extends('master')
|
||||
|
||||
@section('title')List Syndication Targets « Admin CP « @stop
|
||||
|
||||
@section('content')
|
||||
<h1>Syndication Targets</h1>
|
||||
@if($targets->isEmpty())
|
||||
<p>No saved syndication targets.</p>
|
||||
@else
|
||||
<ul>
|
||||
@foreach($targets as $target)
|
||||
<li>
|
||||
{{ $target['uid'] }}
|
||||
<a href="/admin/syndication/{{ $target['id'] }}/edit">edit?</a>
|
||||
</li>
|
||||
@endforeach
|
||||
</ul>
|
||||
@endif
|
||||
<p>
|
||||
Create a <a href="/admin/syndication/create">new syndication target</a>?
|
||||
</p>
|
||||
@stop
|
|
@ -40,4 +40,10 @@
|
|||
You can either <a href="/admin/places/create">create</a> new places,
|
||||
or <a href="/admin/places/">edit</a> them.
|
||||
</p>
|
||||
|
||||
<h2>Syndication</h2>
|
||||
<p>
|
||||
You can either <a href="/admin/syndication/create">create</a> new syndication targets,
|
||||
or <a href="/admin/syndication">edit</a> them.
|
||||
</p>
|
||||
@stop
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue