Title: Bolão
Author: dgmike
Published: <strong>8 جولای 2008</strong>
Last modified: 1 آگوست 2008

---

جستجوی افزونه‌ها

این افزونه **با ۳ نگارش عمدهٔ اخیر وردپرس آزمایش نشده است**. ممکن است دیگر نگهداری
یا پشتیبانی نشود و هنگام استفاده با نگارش‌های تازه‌تر وردپرس مشکل سازگاری داشته 
باشد.

![](https://s.w.org/plugins/geopattern-icon/bolao.svg)

# Bolão

 توسط [dgmike](https://profiles.wordpress.org/dgmike/)

[دانلود](https://downloads.wordpress.org/plugin/bolao.2.3.zip)

 * [جزئیات](https://fa.wordpress.org/plugins/bolao/#description)
 * [نقد و بررسی‌ها](https://fa.wordpress.org/plugins/bolao/#reviews)
 *  [نصب](https://fa.wordpress.org/plugins/bolao/#installation)
 * [توسعه](https://fa.wordpress.org/plugins/bolao/#developers)

 [پشتیبانی](https://wordpress.org/support/plugin/bolao/)

## توضیحات

With this plugin is possible to make game between users of wordpress.

 1. Integrated with the system for users of WP (subscribers).
 2. The administrator creates a pull, where he defines a question and a series of answers:
 3. Who gonna win the race in Canada with F1?

 * Rubens Barrichelo
 * Felipe Massa
 * Nelson Piquet
 * Ayrton Senna

 1. The questions are closed by the administrator when the result comes out.
 2. Users who check the winner earning points X defined by default, which can be customized
    by question.
 3. Users accompanying the points earned on your profile.
 4. In future, these users can exchange points for gifts on the site.

Com este plugin é possivel fazer bolão entre os usuários do wordpress.

 1. Integrado com o sistema de usuários do WP (assinantes).
 2. O administrador cria um bolão como se fosse uma enquete, onde ele define uma pergunta
    e uma série de respostas:
 3. Quem var ganhar a corrida do Canadá de F1?

 * Rubens Barrichelo
 * Felipe Massa
 * Nelson Piquet
 * Ayrton Senna

 1. As perguntas são fechadas pelo administrador quando sai o resultado.
 2. Os usuários que marcarem o vencedor ganham X pontos definidos por padrão, que podem
    ser customizados por pergunta.
 3. Os usuários acompanham os pontos ganhos no seu perfil.
 4. No futuro, estes usuários poderão trocar pontos por brindes no site.

## عکس‌های صفحه

[⌊The user resume of pools, here he see the oppened and closed pools.⌉⌊The user 
resume of pools, here he see the oppened and closed pools.⌉[

The user resume of pools, here he see the oppened and closed pools.

[⌊Details of pool for your users, here he can vote it.⌉⌊Details of pool for your
users, here he can vote it.⌉[

Details of pool for your users, here he can vote it.

[⌊Stuff screen, the user can request a gift for him.⌉⌊Stuff screen, the user can
request a gift for him.⌉[

Stuff screen, the user can request a gift for him.

[⌊Admin resume.⌉⌊Admin resume.⌉[

Admin resume.

[⌊Admin details of pool. A pool can't be edited for security of users, so you can
only delete or close a pool.⌉⌊Admin details of pool. A pool can't be edited for 
security of users, so you can only delete or close a pool.⌉[

Admin details of pool. A pool can’t be edited for security of users, so you can 
only delete or close a pool.

[⌊Creating a new pool.⌉⌊Creating a new pool.⌉[

Creating a new pool.

[⌊List of stuffs.⌉⌊List of stuffs.⌉[

List of stuffs.

[⌊New stuff⌉⌊New stuff⌉[

New stuff

[⌊Details of requesteds stuffs, for your internal control.⌉⌊Details of requesteds
stuffs, for your internal control.⌉[

Details of requesteds stuffs, for your internal control.

[⌊Code generated by bolao_widget function⌉⌊Code generated by bolao_widget function⌉[

Code generated by `bolao_widget` function

## نصب

 1. Upload `bolao.php` to the `/wp-content/plugins/` directory
 2. Activate the plugin through the ‘Plugins’ menu in WordPress
 3. Configure yours pools and gifts in `Bolão` options
 4. Users can vote and request a gift on they’re Bolão options
 5. Chekout gifts for your personal control
 6. If you want to show your last pool on your template, use the `bolao_widget` function.

## سوالات متداول

#### Can I put my last pool on my theme?

Yes, just put this lines on yout template:

    ```
    <?php if (function_exists('bolao_widget')) bolao_widget(); ?> 
    ```

#### Can I customize my Bolão widget?

Of course. You can pass an array of options to your widget function. By default,
we have this options:

    ```
    array (   'title'            => 'Bolao',   'title_start'      => '<h2 class="bolao_title">',   'title_end'        => '</h2>',   'question_start'   => '<li class="bolao_question"><h3>',   'question_end'     => '</h3></li>',   'options_start'    => '<ul>',   'opt_start'        => '<li class="bolao_option {EVEN-ODD}">',   'opt_end'          => '</li>',   'options_end'      => '</ul>',   'submit_start'     => '<li class="bolao_submit">',   'submit_end'       => '</li>',   'print'            => true, ) 
    ```

So you can pass an array with any of these options, like this.

    ```
    bolao_widget(array (   'title'            => 'Make your Choice',   'question_start'   => '<h3>',   'question_end'     => '</h3>',   'options_start'    => '<div>',   'opt_start'        => '<li>',   'opt_end'          => '</li>',   'options_end'      => '</div>', )); 
    ```

And this generates this widget:

    ```
    <h2 class="bolao_title">Make your Choice</h2>   <form action="" method="get" class="bolao_form">   <input type="hidden" name="handle" value="handle" />   <input type="hidden" name="details " value="details " />    <div>       <h3>Whats the color of the white horse of Napolian?</h3>       <li>         <label for="bolao_option_4873447a33954">           <input type="radio" name="item" value="3" id="bolao_option_4873447a33954"  />           Black         </label>       </li>       <li>          <label for="bolao_option_4873447a33964">           <input type="radio" name="item" value="4" id="bolao_option_4873447a33964"  />           White         </label>       </li>       <li>         <label for="bolao_option_4873447a3396c">           <input type="radio" name="item" value="5" id="bolao_option_4873447a3396c"  />           Gray         </label>        </li>       <li>         <label for="bolao_option_4873447a33974">           <input type="radio" name="item" value="6" id="bolao_option_4873447a33974"  />           Purple         </label>       </li>       <li class="bolao_submit"><button type="submit" name="vote" value="Vote">Vote</button></li>   </div>  </form> 
    ```

## نقد و بررسی‌ها

نقد و بررسی‌ای برای این افزونه یافت نشد.

## توسعه دهندگان و همکاران

“Bolão” نرم افزار متن باز است. افراد زیر در این افزونه مشارکت کرده‌اند.

مشارکت کنندگان

 *   [ dgmike ](https://profiles.wordpress.org/dgmike/)

[ترجمه “Bolão” به زبان شما.](https://translate.wordpress.org/projects/wp-plugins/bolao)

### علاقه‌ مند به توسعه هستید؟

[کد را مرور کنید](https://plugins.trac.wordpress.org/browser/bolao/)، [مخزن SVN](https://plugins.svn.wordpress.org/bolao/)
را بررسی کنید، یا از طریق [RSS](https://plugins.trac.wordpress.org/log/bolao/?limit=100&mode=stop_on_copy&format=rss)
در [گزارش توسعه](https://plugins.trac.wordpress.org/log/bolao/) مشترک شوید.

## اطلاعات

 *  نگارش **2.3**
 *  آخرین به‌روزرسانی **18 سال پیش**
 *  نصب‌های فعال **10+**
 *  نگارش وردپرس ** 2.5 یا بالاتر **
 *  آزمایش‌شده تا **2.5**
 *  زبان
 * [English (US)](https://wordpress.org/plugins/bolao/)
 * برچسب
 * [answer](https://fa.wordpress.org/plugins/tags/answer/)[game](https://fa.wordpress.org/plugins/tags/game/)
   [gift](https://fa.wordpress.org/plugins/tags/gift/)[pool](https://fa.wordpress.org/plugins/tags/pool/)
   [questions](https://fa.wordpress.org/plugins/tags/questions/)
 *  [نمایش پیشرفته](https://fa.wordpress.org/plugins/bolao/advanced/)

## امتیازها

هنوز هیچ نقدی ارسال نشده است.

[Your review](https://wordpress.org/support/plugin/bolao/reviews/#new-post)

[مشاهده همه بررسی‌ها](https://wordpress.org/support/plugin/bolao/reviews/)

## مشارکت کنندگان

 *   [ dgmike ](https://profiles.wordpress.org/dgmike/)

## پشتیبانی

چیزی برای گفتن دارید؟ نیاز به کمک دارید؟

 [مشاهده انجمن پشتیبانی](https://wordpress.org/support/plugin/bolao/)

## کمک مالی

آیا تمایل دارید از پیشرفت این افزونه حمایت کنید؟

 [ کمک مالی به این افزونه ](http://dgmike.wordpress.com)