Current File : /home/aventura/www/site/wp-content/plugins/victheme_core/vtcore/socialshare/twitter.php
<?php
/**
 * Class for building Twitter Share icon 
 * button.
 * 
 * User must provide the queries context
 * especially one with url as its key that
 * defines the actual share url to be given
 * to twitter.
 *       
 * @author jason.xie@victheme.com
 *
 */
class VTCore_SocialShare_Twitter
extends VTCore_SocialShare_Base {

  protected $context = array(
    'type' => 'a',
    'text' => '',
    'queries' => array(),
    'querykey' => 'url',
    'attributes' => array(
      'href' => 'https://twitter.com/intent/tweet',
    ),
    
    'icon_attributes' => array(
      'type' => 'div',
      'icon' => 'twitter',
      'shape' => 'round',
      'background' => '',
      'color' => '',
      'position' => 'left',
      'margin' => '0 10px 0 0',    
    ),
  );

}