Skip to content
This repository was archived by the owner on Aug 19, 2022. It is now read-only.

Commit 6a44762

Browse files
committed
First version
1 parent f2275b8 commit 6a44762

File tree

1 file changed

+42
-21
lines changed

1 file changed

+42
-21
lines changed

README-ES.md

Lines changed: 42 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -44,47 +44,68 @@ Obtener información del plugin:
4444
use Eliasis\Module\Module;
4545

4646
$Info = Module::WP_Plugin-Info()->instance('Info');
47-
47+
```
48+
```php
4849
$name = $Info->get('name', 'plugin-slug');
49-
50+
```
51+
```php
5052
$slug = $Info->get('slug', 'plugin-slug');
51-
53+
```
54+
```php
5255
$version = $Info->get('version', 'plugin-slug');
53-
56+
```
57+
```php
5458
$author = $Info->get('author', 'plugin-slug');
55-
59+
```
60+
```php
5661
$author_profile = $Info->get('author_profile', 'plugin-slug');
57-
62+
```
63+
```php
5864
$contributors = $Info->get('contributors', 'plugin-slug');
59-
65+
```
66+
```php
6067
$requires = $Info->get('requires', 'plugin-slug');
61-
68+
```
69+
```php
6270
$tested = $Info->get('tested', 'plugin-slug');
63-
71+
```
72+
```php
6473
$compatibility = $Info->get('compatibility', 'plugin-slug');
65-
74+
```
75+
```php
6676
$rating = $Info->get('rating', 'plugin-slug');
67-
77+
```
78+
```php
6879
$ratings = $Info->get('ratings', 'plugin-slug');
69-
80+
```
81+
```php
7082
$num_ratings = $Info->get('num_ratings', 'plugin-slug');
71-
83+
```
84+
```php
7285
$support_threads = $Info->get('support_threads', 'plugin-slug');
73-
86+
```
87+
```php
7488
$support_threads_resolved = $Info->get('support_threads_resolved', 'plugin-slug');
75-
89+
```
90+
```php
7691
$downloaded = $Info->get('downloaded', 'plugin-slug');
77-
92+
```
93+
```php
7894
$last_updated = $Info->get('last_updated', 'plugin-slug');
79-
95+
```
96+
```php
8097
$added = $Info->get('added', 'plugin-slug');
81-
98+
```
99+
```php
82100
$homepage = $Info->get('homepage', 'plugin-slug');
83-
101+
```
102+
```php
84103
$download_link = $Info->get('download_link', 'plugin-slug');
85-
104+
```
105+
```php
86106
$tags = $Info->get('tags', 'plugin-slug');
87-
107+
```
108+
```php
88109
$donate_link = $Info->get('donate_link', 'plugin-slug');
89110
```
90111

0 commit comments

Comments
 (0)