1. Go to this page and download the library: Download wpify/model library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
wpify / model example snippets
use Wpify\Model\Manager;
$manager = new Manager();
use Wpify\Model\Post;
use Wpify\Model\Attributes;
class Book extends Post {
#[Attributes\Meta]
public string $isbn;
#[Attributes\Meta]
public string $author;
}
#[Attributes\SourceObject( 'ID' )]
public int $id;
#[Attributes\Meta( '_isbn' )]
public string $isbn;
#[Attributes\Meta( meta_key: '_author' )]
public string $author;
#[Attributes\Column( type: Attributes\Column::VARCHAR, params: 1000, unique: true )]
public string $custom_column;
use Wpify\Model\PostRepository;
class BookRepository extends PostRepository {
public function model() : string{
return Book::class;
}
public function post_types() : array{
array( 'book' );
}
}
class MyModelRepository extends CustomTableRepository {
public function model(): string {
return MyModel::class;
}
public function table_name(): string {
return 'my_model';
}
}
class MyModel extends Model {
#[Column( type: Column::INT, auto_increment: true, primary_key: true )]
public int $id = 0;
#[Column( type: Column::VARCHAR, params: 255 )]
public string $name = '';
}