| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171 |
- <?php
- ob_start();
- ?>
- <div class="min-h-screen bg-gray-50 py-6">
- <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
- <!-- Header -->
- <div class="md:flex md:items-center md:justify-between mb-8">
- <div class="flex-1 min-w-0">
- <h2 class="text-2xl font-bold leading-7 text-gray-900 sm:text-3xl sm:truncate">
- Author Management
- </h2>
- <p class="mt-1 text-sm text-gray-500">
- Manage authors and their social media profiles
- </p>
- </div>
- <div class="mt-4 flex md:mt-0 md:ml-4">
- <a href="/admin/authors/?action=create"
- class="ml-3 inline-flex items-center px-4 py-2 border border-transparent rounded-md shadow-sm text-sm font-medium text-white bg-blue-600 hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500 transition-colors">
- <svg class="w-5 h-5 mr-2" fill="currentColor" viewBox="0 0 20 20">
- <path fill-rule="evenodd" d="M10 3a1 1 0 011 1v5h5a1 1 0 110 2h-5v5a1 1 0 11-2 0v-5H4a1 1 0 110-2h5V4a1 1 0 011-1z" clip-rule="evenodd"/>
- </svg>
- Add New Author
- </a>
- </div>
- </div>
- <!-- Success/Error Messages -->
- <?php if (isset($success)): ?>
- <div class="mb-6 bg-green-50 border border-green-200 rounded-md p-4">
- <div class="flex">
- <div class="flex-shrink-0">
- <svg class="h-5 w-5 text-green-400" viewBox="0 0 20 20" fill="currentColor">
- <path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd"/>
- </svg>
- </div>
- <div class="ml-3">
- <p class="text-sm font-medium text-green-800"><?= htmlspecialchars($success) ?></p>
- </div>
- </div>
- </div>
- <?php endif; ?>
- <?php if (isset($error)): ?>
- <div class="mb-6 bg-red-50 border border-red-200 rounded-md p-4">
- <div class="flex">
- <div class="flex-shrink-0">
- <svg class="h-5 w-5 text-red-400" viewBox="0 0 20 20" fill="currentColor">
- <path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zM8.707 7.293a1 1 0 00-1.414 1.414L8.586 10l-1.293 1.293a1 1 0 101.414 1.414L10 11.414l1.293 1.293a1 1 0 001.414-1.414L11.414 10l1.293-1.293a1 1 0 00-1.414-1.414L10 8.586 8.707 7.293z" clip-rule="evenodd"/>
- </svg>
- </div>
- <div class="ml-3">
- <p class="text-sm font-medium text-red-800"><?= htmlspecialchars($error) ?></p>
- </div>
- </div>
- </div>
- <?php endif; ?>
- <!-- Authors Table -->
- <div class="bg-white shadow overflow-hidden sm:rounded-md">
- <div class="px-4 py-5 sm:px-6 border-b border-gray-200">
- <h3 class="text-lg leading-6 font-medium text-gray-900">All Authors</h3>
- <p class="mt-1 max-w-2xl text-sm text-gray-500">A list of all authors in the system.</p>
- </div>
-
- <?php if (empty($authors)): ?>
- <div class="text-center py-12">
- <svg class="mx-auto h-12 w-12 text-gray-400" stroke="currentColor" fill="none" viewBox="0 0 48 48">
- <path d="M28 8H12a4 4 0 00-4 4v20m32-12v8m0 0v8a4 4 0 01-4 4H12a4 4 0 01-4-4v-4m32-4l-3.172-3.172a4 4 0 00-5.656 0L28 28M8 32l9.172-9.172a4 4 0 015.656 0L28 28m0 0l4 4m4-24h8m-4-4v8m-12 4h.02" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
- </svg>
- <h3 class="mt-2 text-sm font-medium text-gray-900">No authors</h3>
- <p class="mt-1 text-sm text-gray-500">Get started by creating a new author.</p>
- <div class="mt-6">
- <a href="/admin/authors/?action=create" class="inline-flex items-center px-4 py-2 border border-transparent shadow-sm text-sm font-medium rounded-md text-white bg-blue-600 hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500">
- <svg class="w-5 h-5 mr-2" fill="currentColor" viewBox="0 0 20 20">
- <path fill-rule="evenodd" d="M10 3a1 1 0 011 1v5h5a1 1 0 110 2h-5v5a1 1 0 11-2 0v-5H4a1 1 0 110-2h5V4a1 1 0 011-1z" clip-rule="evenodd"/>
- </svg>
- Add Author
- </a>
- </div>
- </div>
- <?php else: ?>
- <div class="overflow-x-auto">
- <table class="min-w-full divide-y divide-gray-200">
- <thead class="bg-gray-50">
- <tr>
- <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">
- Author
- </th>
- <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">
- Description
- </th>
- <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">
- Social Links
- </th>
- <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">
- Created
- </th>
- <th scope="col" class="relative px-6 py-3">
- <span class="sr-only">Actions</span>
- </th>
- </tr>
- </thead>
- <tbody class="bg-white divide-y divide-gray-200">
- <?php foreach ($authors as $author): ?>
- <tr class="hover:bg-gray-50">
- <td class="px-6 py-4 whitespace-nowrap">
- <div class="flex items-center">
- <?php if (!empty($author['image'])): ?>
- <div class="flex-shrink-0 h-10 w-10">
- <img class="h-10 w-10 rounded-full object-cover" src="/<?= htmlspecialchars($author['image']) ?>" alt="<?= htmlspecialchars($author['name']) ?>">
- </div>
- <?php else: ?>
- <div class="flex-shrink-0 h-10 w-10 bg-gray-300 rounded-full flex items-center justify-center">
- <svg class="h-6 w-6 text-gray-500" fill="none" stroke="currentColor" viewBox="0 0 24 24">
- <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z"/>
- </svg>
- </div>
- <?php endif; ?>
- <div class="ml-4">
- <div class="text-sm font-medium text-gray-900"><?= htmlspecialchars($author['name']) ?></div>
- </div>
- </div>
- </td>
- <td class="px-6 py-4">
- <div class="text-sm text-gray-900 max-w-xs truncate">
- <?= htmlspecialchars($author['description'] ?? 'No description') ?>
- </div>
- </td>
- <td class="px-6 py-4 whitespace-nowrap">
- <div class="flex space-x-2">
- <?php if (!empty($author['social_links'])): ?>
- <?php foreach ($author['social_links'] as $link): ?>
- <a href="<?= htmlspecialchars($link['url']) ?>" target="_blank"
- class="text-blue-600 hover:text-blue-800 text-sm">
- <?= htmlspecialchars($link['platform']) ?>
- </a>
- <?php endforeach; ?>
- <?php else: ?>
- <span class="text-gray-400 text-sm">No links</span>
- <?php endif; ?>
- </div>
- </td>
- <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">
- <?= date('M j, Y', strtotime($author['created_at'])) ?>
- </td>
- <td class="px-6 py-4 whitespace-nowrap text-right text-sm font-medium">
- <div class="flex items-center justify-end space-x-2">
- <a href="/admin/authors/?action=edit&id=<?= $author['id'] ?>"
- class="text-blue-600 hover:text-blue-900 font-medium">Edit</a>
- <form method="POST" class="inline" onsubmit="return confirm('Are you sure you want to delete this author?');">
- <input type="hidden" name="action" value="delete">
- <input type="hidden" name="id" value="<?= $author['id'] ?>">
- <button type="submit" class="text-red-600 hover:text-red-900 font-medium ml-2">Delete</button>
- </form>
- </div>
- </td>
- </tr>
- <?php endforeach; ?>
- </tbody>
- </table>
- </div>
- <?php endif; ?>
- </div>
- </div>
- </div>
- <?php
- $content = ob_get_clean();
- include __DIR__ . '/../partials/layout.php';
- ?>
|